Merge pull request #1770 from nextcloud/rakekniven-patch-1

l10n: Changed grammar and triple dots to ellipsis
This commit is contained in:
Dominique Fuchs 2020-02-06 08:17:38 +01:00 коммит произвёл GitHub
Родитель 4b8b84f2dd da66b3956e
Коммит 6d23ce82d7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -201,7 +201,7 @@
<string/> <string/>
</property> </property>
<property name="text"> <property name="text">
<string>Storage space: ...</string> <string>Storage space: </string>
</property> </property>
<property name="textFormat"> <property name="textFormat">
<enum>Qt::PlainText</enum> <enum>Qt::PlainText</enum>

Просмотреть файл

@ -48,7 +48,7 @@
<item> <item>
<widget class="QPushButton" name="pushButtonBrowseCertificate"> <widget class="QPushButton" name="pushButtonBrowseCertificate">
<property name="text"> <property name="text">
<string>Browse...</string> <string>Browse</string>
</property> </property>
</widget> </widget>
</item> </item>

Просмотреть файл

@ -41,7 +41,7 @@
<item> <item>
<widget class="QPushButton" name="localFolderChooseBtn"> <widget class="QPushButton" name="localFolderChooseBtn">
<property name="text"> <property name="text">
<string>&amp;Choose...</string> <string>&amp;Choose</string>
</property> </property>
</widget> </widget>
</item> </item>

Просмотреть файл

@ -56,7 +56,7 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="placeholderText"> <property name="placeholderText">
<string>Share with users or groups ...</string> <string>Share with users or groups </string>
</property> </property>
</widget> </widget>
</item> </item>

Просмотреть файл

@ -179,11 +179,11 @@ void OwncloudSetupPage::slotUrlChanged(const QString &url)
if (!url.startsWith(QLatin1String("https://"))) { if (!url.startsWith(QLatin1String("https://"))) {
_ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/resources/lock-http.png"))); _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/resources/lock-http.png")));
_ui.urlLabel->setToolTip(tr("This url is NOT secure as it is not encrypted.\n" _ui.urlLabel->setToolTip(tr("This URL is NOT secure as it is not encrypted.\n"
"It is not advisable to use it.")); "It is not advisable to use it."));
} else { } else {
_ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/resources/lock-https.png"))); _ui.urlLabel->setPixmap(QPixmap(Theme::hidpiFileName(":/client/resources/lock-https.png")));
_ui.urlLabel->setToolTip(tr("This url is secure. You can use it.")); _ui.urlLabel->setToolTip(tr("This URL is secure. You can use it."));
} }
} }