Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
small1 committed Jul 1, 2019
2 parents 151c228 + 1074e98 commit 28499f4
Show file tree
Hide file tree
Showing 33 changed files with 90 additions and 33 deletions.
5 changes: 4 additions & 1 deletion apps/accessibility/l10n/el.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ OC.L10N.register(
"Web Content Accessibility Guidelines" : "Οδηγίες προσβασιμότητας περιεχομένου ιστού",
"our issue tracker" : "ο ανιχνευτής ζητημάτων μας",
"our design team" : "η ομάδα σχεδιασμού μας",
"Enable" : "Ενεργοποίηση"
"Enable" : "Ενεργοποίηση",
"Themes" : "Θέματα",
"Fonts" : "Γραμματοσειρές",
"enabled" : "ενεργοποιημένο"
},
"nplurals=2; plural=(n != 1);");
5 changes: 4 additions & 1 deletion apps/accessibility/l10n/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"Web Content Accessibility Guidelines" : "Οδηγίες προσβασιμότητας περιεχομένου ιστού",
"our issue tracker" : "ο ανιχνευτής ζητημάτων μας",
"our design team" : "η ομάδα σχεδιασμού μας",
"Enable" : "Ενεργοποίηση"
"Enable" : "Ενεργοποίηση",
"Themes" : "Θέματα",
"Fonts" : "Γραμματοσειρές",
"enabled" : "ενεργοποιημένο"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
2 changes: 1 addition & 1 deletion apps/files/lib/Controller/ViewController.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function index($dir = '', $view = '', $fileid = null, $fileNotFound = fal

$nav->assign('navigationItems', $navItems);

$nav->assign('usage', \OC_Helper::humanFileSize($storageInfo['used']));
$nav->assign('usage', \OC_Helper::humanFileSize(ceil($storageInfo['used'] / 102400) * 102400));
if ($storageInfo['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED) {
$totalSpace = $this->l10n->t('Unlimited');
} else {
Expand Down
37 changes: 17 additions & 20 deletions apps/files/templates/appnavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,23 @@
}
?>

<li id="quota"
class="pinned <?php p($pinned === 0 ? 'first-pinned ' : '') ?><?php
if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
?>has-tooltip" title="<?php p($_['usage_relative'] . '%, ');
p($l->t('%s of %s used', [$_['usage'], $_['total_space']]));
} ?>">
<a href="#" class="icon-quota svg">
<p id="quotatext"><?php
if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
p($l->t('%1$s%% of %2$s used', [round($_['usage_relative'], 1), $_['total_space']]));
} else {
p($l->t('%s used', [$_['usage']]));
} ?></p>
<div class="quota-container">
<progress value="<?php p($_['usage_relative']); ?>"
max="100"
<?php if ($_['usage_relative'] > 80): ?> class="warn" <?php endif; ?>></progress>
</div>
</a>
</li>
<?php if($_['quota'] === \OCP\Files\FileInfo::SPACE_UNLIMITED): ?>
<li id="quota" class="pinned <?php p($pinned === 0 ? 'first-pinned ' : '') ?>">
<a href="#" class="icon-quota svg">
<p><?php p($l->t('%s used', [$_['usage']])); ?></p>
</a>
</li>
<?php else: ?>
<li id="quota" class="has-tooltip pinned <?php p($pinned === 0 ? 'first-pinned ' : '') ?>"
title="<?php p($l->t('%s%% of %s used', [$_['usage_relative'], $_['total_space']])); ?>">
<a href="#" class="icon-quota svg">
<p id="quotatext"><?php p($l->t('%1$s of %2$s used', [$_['usage'], $_['total_space']])); ?></p>
<div class="quota-container">
<progress value="<?php p($_['usage_relative']); ?>" max="100" class="<?= ($_['usage_relative'] > 80) ? 'warn' : '' ?>"></progress>
</div>
</a>
</li>
<?php endif; ?>
</ul>
<div id="app-settings">
<div id="app-settings-header">
Expand Down
2 changes: 1 addition & 1 deletion apps/oauth2/lib/Settings/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ public function getSection(): string {
}

public function getPriority(): int {
return 0;
return 100;
}
}
2 changes: 1 addition & 1 deletion apps/oauth2/tests/Settings/AdminTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ public function testGetSection() {
}

public function testGetPriority() {
$this->assertSame(0, $this->admin->getPriority());
$this->assertSame(100, $this->admin->getPriority());
}
}
2 changes: 1 addition & 1 deletion apps/sharebymail/lib/ShareByMailProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ protected function sendPasswordToOwner(IShare $share, $password) {
);
}

$bodyPart = $this->l->t('You just shared »%1$s« with %2$s. The share was already send to the recipient. Due to the security policies defined by the administrator of %3$s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient.', [$filename, $shareWith, $this->defaults->getName()]);
$bodyPart = $this->l->t('You just shared »%1$s« with %2$s. The share was already sent to the recipient. Due to the security policies defined by the administrator of %3$s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient.', [$filename, $shareWith, $this->defaults->getName()]);

$message = $this->mailer->createMessage();
$emailTemplate = $this->mailer->createEMailTemplate('sharebymail.OwnerPasswordNotification', [
Expand Down
2 changes: 1 addition & 1 deletion apps/theming/css/theming.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ $invert: luma($color-primary) > 0.6;
}
a,
label,
p,
footer p,
#alternative-logins legend,
.lost-password-container #lost-password {
color: $color-primary-text;
Expand Down
1 change: 1 addition & 0 deletions core/l10n/de.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Kontakte suchen…",
"No contacts found" : "Keine Kontakte gefunden",
"Show all contacts …" : "Zeige alle Kontakte…",
"Install the Contacts app" : "Kontake-App installieren",
"Loading your contacts …" : "Lade Deine Kontakte…",
"Looking for {term} …" : "Suche nach {term}…",
"No" : "Nein",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/de_DE.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Kontakte suchen…",
"No contacts found" : "Keine Kontakte gefunden",
"Show all contacts …" : "Zeige alle Kontakte…",
"Install the Contacts app" : "Kontake-App installieren",
"Loading your contacts …" : "Lade Ihre Kontakte…",
"Looking for {term} …" : "Suche nach {term}…",
"No" : "Nein",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/eu.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ OC.L10N.register(
"Share link" : "Partekatu esteka",
"Could not unshare" : "Ezin izan da despartekatu",
"Shared with you and the group {group} by {owner}" : "{owner}-k zu eta {group} taldearekin partekatuta",
"Shared with you and {circle} by {owner}" : " {owner}-(e)k zurekin eta {circle}-(r)ekin partekatua",
"Shared with you by {owner}" : "{owner}-k zurekin partekatuta",
"Choose a password for the mail share" : "Hautatu pasahitz bat posta partekatzeko",
"group" : "taldea",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"Share link" : "Partekatu esteka",
"Could not unshare" : "Ezin izan da despartekatu",
"Shared with you and the group {group} by {owner}" : "{owner}-k zu eta {group} taldearekin partekatuta",
"Shared with you and {circle} by {owner}" : " {owner}-(e)k zurekin eta {circle}-(r)ekin partekatua",
"Shared with you by {owner}" : "{owner}-k zurekin partekatuta",
"Choose a password for the mail share" : "Hautatu pasahitz bat posta partekatzeko",
"group" : "taldea",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/fr.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Rechercher un contact...",
"No contacts found" : "Aucun contact trouvé",
"Show all contacts …" : "Montrer tous les contacts...",
"Install the Contacts app" : "Installer l'appli Contacts",
"Loading your contacts …" : "Chargement de vos contacts...",
"Looking for {term} …" : "Recherche de {term} ...",
"No" : "Non",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/gl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/gl.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Buscar contactos …",
"No contacts found" : "Non se atoparon contactos",
"Show all contacts …" : "Amosar todos os contactos…",
"Install the Contacts app" : "Instalar o apli de Contactos",
"Loading your contacts …" : "Cargando os seus contactos …",
"Looking for {term} …" : "Buscando {term} …",
"No" : "Non",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/it.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Cerca contatti...",
"No contacts found" : "Nessun contatto trovato",
"Show all contacts …" : "Mostra tutti i contatti...",
"Install the Contacts app" : "Installa l'applicazione Contatti",
"Loading your contacts …" : "Caricamento dei tuoi contatti...",
"Looking for {term} …" : "Ricerca di {term} in corso...",
"No" : "No",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/pt_BR.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/pt_BR.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Procurar contatos...",
"No contacts found" : "Nenhum contato encontrado",
"Show all contacts …" : "Exibir todos os contatos...",
"Install the Contacts app" : "Instalar o aplicativo Contatos",
"Loading your contacts …" : "Carregando seus contatos...",
"Looking for {term} …" : "Procurando por {term}…",
"No" : "Não",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/ru.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Искать контакты…",
"No contacts found" : "Контактов не найдено",
"Show all contacts …" : "Показать все контакты…",
"Install the Contacts app" : "Установить приложение Contacts",
"Loading your contacts …" : "Загрузка контактов…",
"Looking for {term} …" : "Поиск {term}…",
"No" : "Нет",
Expand Down
1 change: 1 addition & 0 deletions core/l10n/tr.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions core/l10n/tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@
"Search contacts …" : "Kişi arama...",
"No contacts found" : "Herhangi bir kişi bulunamadı",
"Show all contacts …" : "Tüm kişileri görüntüle...",
"Install the Contacts app" : "Kişiler uygulamasını kur",
"Loading your contacts …" : "Kişileriniz yükleniyor...",
"Looking for {term} …" : "{term} ifadesi aranıyor...",
"No" : "Hayır",
Expand Down
2 changes: 2 additions & 0 deletions core/shipped.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"files",
"files_external",
"files_pdfviewer",
"files_rightclick",
"files_sharing",
"files_texteditor",
"files_trashbin",
Expand All @@ -33,6 +34,7 @@
"support",
"survey_client",
"systemtags",
"text",
"theming",
"twofactor_backupcodes",
"updatenotification",
Expand Down
2 changes: 1 addition & 1 deletion settings/l10n/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ OC.L10N.register(
"The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens",
"New password" : "Neues Passwort",
"Add user in group" : "Nutzer zur Gruppe hinzufügen",
"Set user as admin for" : "Nutzer als Administrator setzen für",
"Set user as admin for" : "Benutzer als Administrator setzen für",
"Select user quota" : "Speicherkontigent wählen",
"No language set" : "Keine Sprache eingestellt.",
"Never" : "Niemals",
Expand Down
2 changes: 1 addition & 1 deletion settings/l10n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@
"The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens",
"New password" : "Neues Passwort",
"Add user in group" : "Nutzer zur Gruppe hinzufügen",
"Set user as admin for" : "Nutzer als Administrator setzen für",
"Set user as admin for" : "Benutzer als Administrator setzen für",
"Select user quota" : "Speicherkontigent wählen",
"No language set" : "Keine Sprache eingestellt.",
"Never" : "Niemals",
Expand Down
2 changes: 1 addition & 1 deletion settings/l10n/de_DE.js
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ OC.L10N.register(
"The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens",
"New password" : "Neues Passwort",
"Add user in group" : "Nutzer zur Gruppe hinzufügen",
"Set user as admin for" : "Nutzer als Administrator setzen für",
"Set user as admin for" : "Benutzer als Administrator setzen für",
"Select user quota" : "Speicherkontigent wählen",
"No language set" : "Keine Sprache eingestellt.",
"Never" : "Niemals",
Expand Down
2 changes: 1 addition & 1 deletion settings/l10n/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@
"The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens",
"New password" : "Neues Passwort",
"Add user in group" : "Nutzer zur Gruppe hinzufügen",
"Set user as admin for" : "Nutzer als Administrator setzen für",
"Set user as admin for" : "Benutzer als Administrator setzen für",
"Select user quota" : "Speicherkontigent wählen",
"No language set" : "Keine Sprache eingestellt.",
"Never" : "Niemals",
Expand Down
19 changes: 18 additions & 1 deletion settings/l10n/hu.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ OC.L10N.register(
"Go to %s" : "Menj ide: %s",
"Install Client" : "Kliens telepítés",
"Logged in user must be a subadmin" : "Nem rendszergazda felhasználóként kell bejelentkezzen",
"Create" : "Létrehozás",
"Change" : "Módosít",
"Delete" : "Törlés",
"Share" : "Megosztás",
"Unlimited" : "Korlátlan",
"Verifying" : "Ellenőrzés",
"Verifying …" : "Ellenőrzés...",
"Verify" : "Ellenőrzés",
"Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérlek várj, míg a migráció befejeződik.",
Expand Down Expand Up @@ -146,6 +150,7 @@ OC.L10N.register(
"Done" : "Kész",
"Copied!" : "Másolva!",
"Copy" : "Másol",
"Supported" : "Támogatott",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.",
"Official" : "Hivatalos",
"by" : "által",
Expand Down Expand Up @@ -349,6 +354,18 @@ OC.L10N.register(
"Help translate" : "Segítsen a fordításban",
"Locale" : "Területi beállítás",
"Current password" : "Jelenlegi jelszó",
"Change password" : "Jelszó megváltoztatása"
"Change password" : "Jelszó megváltoztatása",
"Disconnect" : "Szétkapcsolás",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS kliens",
"Android Client" : "Android kliens",
"Not supported!" : "Nem támogatott.",
"Press ⌘-C to copy." : "A másoláshoz nyomj ⌘-C-t.",
"Press Ctrl-C to copy." : "A másoláshoz nyomj Ctrl-C-t.",
"Error while loading browser sessions and device tokens" : "Hiba a böngésző munkamenet és az eszköz tokenek betöltése közben.",
"Default quota :" : "Alapértelmezett kvóta :",
"Follow us on Google+" : "Kövess Google+ -on",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Jelenleg használt: <strong>%s</strong>, ebből: <strong>%s</strong> (<strong>%s %%</strong>)"
},
"nplurals=2; plural=(n != 1);");
19 changes: 18 additions & 1 deletion settings/l10n/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,12 @@
"Go to %s" : "Menj ide: %s",
"Install Client" : "Kliens telepítés",
"Logged in user must be a subadmin" : "Nem rendszergazda felhasználóként kell bejelentkezzen",
"Create" : "Létrehozás",
"Change" : "Módosít",
"Delete" : "Törlés",
"Share" : "Megosztás",
"Unlimited" : "Korlátlan",
"Verifying" : "Ellenőrzés",
"Verifying …" : "Ellenőrzés...",
"Verify" : "Ellenőrzés",
"Migration in progress. Please wait until the migration is finished" : "Migráció folyamatban. Kérlek várj, míg a migráció befejeződik.",
Expand Down Expand Up @@ -144,6 +148,7 @@
"Done" : "Kész",
"Copied!" : "Másolva!",
"Copy" : "Másol",
"Supported" : "Támogatott",
"Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.",
"Official" : "Hivatalos",
"by" : "által",
Expand Down Expand Up @@ -347,6 +352,18 @@
"Help translate" : "Segítsen a fordításban",
"Locale" : "Területi beállítás",
"Current password" : "Jelenlegi jelszó",
"Change password" : "Jelszó megváltoztatása"
"Change password" : "Jelszó megváltoztatása",
"Disconnect" : "Szétkapcsolás",
"iPhone iOS" : "iPhone iOS",
"iPad iOS" : "iPad iOS",
"iOS Client" : "iOS kliens",
"Android Client" : "Android kliens",
"Not supported!" : "Nem támogatott.",
"Press ⌘-C to copy." : "A másoláshoz nyomj ⌘-C-t.",
"Press Ctrl-C to copy." : "A másoláshoz nyomj Ctrl-C-t.",
"Error while loading browser sessions and device tokens" : "Hiba a böngésző munkamenet és az eszköz tokenek betöltése közben.",
"Default quota :" : "Alapértelmezett kvóta :",
"Follow us on Google+" : "Kövess Google+ -on",
"You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Jelenleg használt: <strong>%s</strong>, ebből: <strong>%s</strong> (<strong>%s %%</strong>)"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

0 comments on commit 28499f4

Please sign in to comment.