Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit 336da04

Browse files
committed
i18n update
1 parent a045ce3 commit 336da04

File tree

174 files changed

+2258
-950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+2258
-950
lines changed

core/src/core/classes/class.AJXP_Utils.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,8 +1138,9 @@ public static function updateAllI18nLibraries($createLanguage = "")
11381138
self::updateI18nFiles($path, false, $createLanguage);
11391139
self::updateI18nFiles($path . "/conf", true, $createLanguage);
11401140
} else {
1141-
self::updateI18nFiles($path, true, $createLanguage);
11421141
self::updateI18nFiles($path . "/conf", true, $createLanguage);
1142+
if($nameSpace == "user_home") continue;
1143+
self::updateI18nFiles($path, true, $createLanguage);
11431144
}
11441145
}
11451146
}

core/src/plugins/access.fs/i18n/conf/de.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@
4343
"Use php POSIX extension to read files permissions. Only works on *nix systems." => "Verwenden Sie php-POSIX Erweiterungen um Dateiberechtigungen zu lesen. Funktioniert nur auf *nix-Systemen",
4444
"X-Accel-Redirect Active" => "X-Accel-Redirect aktiviert",
4545
"Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping" => "Überträgt alle Download-Operationen über den X-Accel-Redirect Header an nginx. Warnung: Sie müssen Ihre nginx-Konfiguration erweitern, etwa X-Accel-Mapping",
46-
);
46+
"Zip downloading files on the fly" => "Zip downloading files on the fly",
47+
"Directly write the zip file to an output stream which is connected to the user's browser." => "Directly write the zip file to an output stream which is connected to the user's browser.",
48+
);

core/src/plugins/access.fs/i18n/conf/fr.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@
4343
"Use php POSIX extension to read files permissions. Only works on *nix systems." => "Utiliser l'extension PHP POSIX pour lire les permissions de fichiers. Uniquement pour les systèmes *nix.",
4444
"X-Accel-Redirect Active" => "Activer X-Accel-Redirect",
4545
"Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping" => "Déléguer l'ensemble des opérations de téléchargement à nginx en utilisant l'entête X-SendFile. Attention, il faut ajouter une configuration à nginx, par exemple X-Accel-Mapping",
46-
);
46+
"Zip downloading files on the fly" => "Télécharger les zips à la construction",
47+
"Directly write the zip file to an output stream which is connected to the user's browser." => "Ecrire directement l'archive Zip dans le flux de sortie, sans passer par un fichier temporaire.",
48+
);

core/src/plugins/access.fs/i18n/conf/it.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@
4343
"Use php POSIX extension to read files permissions. Only works on *nix systems." => "Usa l'estensione POSIX per PHP per leggere i permessi sui file. Funziona solo sui sistemi *nix.",
4444
"X-Accel-Redirect Active" => "X-Accel-Redirect Attivo",
4545
"Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping" => "Delega tutte le operazioni di download a nginx, usando l'header X-Accel-Redirect. Attenzione: devi aggiungere manualmente qualche configurazione a nginx, come l'X-Accel Mapping.",
46-
);
46+
"Zip downloading files on the fly" => "Zip downloading files on the fly",
47+
"Directly write the zip file to an output stream which is connected to the user's browser." => "Directly write the zip file to an output stream which is connected to the user's browser.",
48+
);

core/src/plugins/access.fs/i18n/conf/pt.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@
4343
"Use php POSIX extension to read files permissions. Only works on *nix systems." => "Use php POSIX extension to read files permissions. Only works on *nix systems.",
4444
"X-Accel-Redirect Active" => "X-Accel-Redirect Active",
4545
"Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping" => "Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping",
46-
);
46+
"Zip downloading files on the fly" => "Zip downloading files on the fly",
47+
"Directly write the zip file to an output stream which is connected to the user's browser." => "Directly write the zip file to an output stream which is connected to the user's browser.",
48+
);

core/src/plugins/access.fs/i18n/conf/ru.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@
4343
"Use php POSIX extension to read files permissions. Only works on *nix systems." => "Использовать расширение POSIX для php для чтения прав доступа к файлам. Только для *nix систем.",
4444
"X-Accel-Redirect Active" => "X-Accel-Redirect Активен",
4545
"Delegates all download operations to nginx using the X-Accel-Redirect header. Warning, you have to add some configuration in nginx, like X-Accel-Mapping" => "Делегировать все операции скачивания для nginx с использованием заголовка X-Accel-Redirect. Необходима настройка nginx, например X-Accel-Mapping",
46-
);
46+
"Zip downloading files on the fly" => "Zip downloading files on the fly",
47+
"Directly write the zip file to an output stream which is connected to the user's browser." => "Directly write the zip file to an output stream which is connected to the user's browser.",
48+
);
Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
<?php
22
$mess = array(
3-
"1" => "Einladung",
4-
"1p" => "Einladungen",
5-
"2" => "Freigegebene Datei",
6-
"2p" => "Freigegebene Dateien",
7-
"3" => "Ungültige Freigabe",
8-
"3p" => "Ungültige Freigaben",
9-
"4" => "ausstehend",
10-
"5" => "Fehler",
11-
"6" => "Für Sie freigegebene Dateien",
12-
"7" => "Für Sie freigegebene Dateien und Ordner anderer Benutzer.",
13-
"8" => "Schnellsuche",
14-
"9" => "Dateiname",
15-
"10" => "Typ",
16-
"11" => "Leeren",
17-
"12" => "Freigegebene Dateien",
18-
"13" => "Für Sie freigegebene Dateien",
19-
"14" => "In eine Arbeitsumgebung kopieren",
20-
"15" => "Die Datei in eine der eigenen Arbeitsumgebungen kopieren",
21-
);
3+
"1" => "Einladung",
4+
"1p" => "Einladungen",
5+
"2" => "Freigegebene Datei",
6+
"2p" => "Freigegebene Dateien",
7+
"3" => "Ungültige Freigabe",
8+
"3p" => "Ungültige Freigaben",
9+
"4" => "ausstehend",
10+
"5" => "Fehler",
11+
"6" => "Für Sie freigegebene Dateien",
12+
"7" => "Für Sie freigegebene Dateien und Ordner anderer Benutzer.",
13+
"8" => "Schnellsuche",
14+
"9" => "Dateiname",
15+
"10" => "Typ",
16+
"11" => "Leeren",
17+
"12" => "Freigegebene Dateien",
18+
"13" => "Für Sie freigegebene Dateien",
19+
"14" => "In eine Arbeitsumgebung kopieren",
20+
"15" => "Die Datei in eine der eigenen Arbeitsumgebungen kopieren",
21+
"16" => "Total",
22+
"17" => "New",
23+
);

core/src/plugins/access.s3/i18n/conf/de.php

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,20 @@
3131
"Root container in the S3 storage" => "S3-Bucket",
3232
"Storage URL" => "Speicher-URL",
3333
"Replace default AWS access points (built from region). Set a full URL, including protocol" => "Standard-Zugriffs-URL, die anhand der Region ermittelt wird, ersetzen. Komplette URL incl. Protokoll eintragen.",
34-
);
34+
"Signature Version" => "Signature Version",
35+
"API Signature Version. Leave empty if you are not sure, EU Frankfurt and AP Seoul should use v4 only." => "API Signature Version. Leave empty if you are not sure, EU Frankfurt and AP Seoul should use v4 only.",
36+
"API Version" => "API Version",
37+
"The API Version of AS3 is a date (like 2006-03-01). If not sure, put latest " => "The API Version of AS3 is a date (like 2006-03-01). If not sure, put latest ",
38+
"Proxy" => "Proxy",
39+
"If you are using a proxy, for example: 127.0.0.1:80 or username:[email protected]:8080" => "If you are using a proxy, for example: 127.0.0.1:80 or username:[email protected]:8080",
40+
"Disable Virtual Host Syntax" => "Disable Virtual Host Syntax",
41+
"S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead" => "S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead",
42+
"Is ViPR" => "Is ViPR",
43+
"If the backend storage is an EMC ViPR storage" => "If the backend storage is an EMC ViPR storage",
44+
"SDK Version" => "SDK Version",
45+
"The AWS SDK version" => "The AWS SDK version",
46+
"Authentication" => "Authentication",
47+
"Location" => "Location",
48+
"API" => "API",
49+
"Custom Storage" => "Custom Storage",
50+
);

core/src/plugins/access.s3/i18n/conf/en.php

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,20 @@
3131
"Root container in the S3 storage" => "S3 bucket",
3232
"Storage URL" => "Storage URL",
3333
"Replace default AWS access points (built from region). Set a full URL, including protocol" => "Replace default AWS access points (built from region). Set a full URL, including protocol",
34-
);
34+
"Signature Version" => "Signature Version",
35+
"API Signature Version. Leave empty if you are not sure, EU Frankfurt and AP Seoul should use v4 only." => "API Signature Version. Leave empty if you are not sure, EU Frankfurt and AP Seoul should use v4 only.",
36+
"API Version" => "API Version",
37+
"The API Version of AS3 is a date (like 2006-03-01). If not sure, put latest " => "The API Version of AS3 is a date (like 2006-03-01). If not sure, put latest ",
38+
"Proxy" => "Proxy",
39+
"If you are using a proxy, for example: 127.0.0.1:80 or username:[email protected]:8080" => "If you are using a proxy, for example: 127.0.0.1:80 or username:[email protected]:8080",
40+
"Disable Virtual Host Syntax" => "Disable Virtual Host Syntax",
41+
"S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead" => "S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead",
42+
"Is ViPR" => "Is ViPR",
43+
"If the backend storage is an EMC ViPR storage" => "If the backend storage is an EMC ViPR storage",
44+
"SDK Version" => "SDK Version",
45+
"The AWS SDK version" => "The AWS SDK version",
46+
"Authentication" => "Authentication",
47+
"Location" => "Location",
48+
"API" => "API",
49+
"Custom Storage" => "Custom Storage",
50+
);

core/src/plugins/access.s3/i18n/conf/fr.php

Lines changed: 30 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,33 @@
1919
* The latest code can be found at <http://pyd.io/>.
2020
*/
2121
$mess=array(
22-
"S3 (Amazon Web Service)" => "S3 (Amazon Web Service)",
23-
"Access an AWS server. Requires AWS-SDK for PHP" => "Accéder à un serveur AWS. Nécessite AWS-SDK for PHP ",
24-
"Key" => "Clé",
25-
"S3 Api Key" => "Clé d'API S3",
26-
"Secret Key" => "Clé secrète",
27-
"S3 secret key" => "Clé secrète S3",
28-
"Region" => "Région",
29-
"S3 storage region" => "Région du stockage S3",
30-
"Container" => "Container",
31-
"Root container in the S3 storage" => "Container S3 sans lequel sont stockées les données"
32-
);
22+
"S3 (Amazon Web Service)" => "S3 (Amazon Web Service)",
23+
"Access an AWS server. Requires AWS-SDK for PHP" => "Accéder à un serveur AWS. Nécessite AWS-SDK for PHP ",
24+
"Key" => "Clé",
25+
"S3 Api Key" => "Clé d'API S3",
26+
"Secret Key" => "Clé secrète",
27+
"S3 secret key" => "Clé secrète S3",
28+
"Region" => "Région",
29+
"S3 storage region" => "Région du stockage S3",
30+
"Container" => "Container",
31+
"Root container in the S3 storage" => "Container S3 sans lequel sont stockées les données",
32+
"Access an AWS server. Requires AWS-SDK v2 for PHP" => "Accéder à AWS. Nécessite AWS-SDK pour PHP ",
33+
"Storage URL" => "URL du stockage",
34+
"Replace default AWS access points (built from region). Set a full URL, including protocol" => "Remplacer les points d'accès par défaut de AWS (qui dépendent de la région), afin de pointer vers un stockage compatible s3 mais hébergé ailleurs.",
35+
"Signature Version" => "Version de la signature",
36+
"API Signature Version. Leave empty if you are not sure, EU Frankfurt and AP Seoul should use v4 only." => "Version de la signature d'API. Laisser vide si vous n'êtes pas sûr, EU Frankfurt et AP Seoul ne peuvent utiliser que la v4.",
37+
"API Version" => "Version d'api",
38+
"The API Version of AS3 is a date (like 2006-03-01). If not sure, put latest " => "L'API Version de S3 est une date (comme 2006-03-01). Dans le doute, laisser latest",
39+
"Proxy" => "Proxy",
40+
"If you are using a proxy, for example: 127.0.0.1:80 or username:[email protected]:8080" => "Si vous utilisez un proxy, par example: 127.0.0.1:80 ou username:[email protected]:8080",
41+
"Disable Virtual Host Syntax" => "Désactiver la syntax VirtualHost",
42+
"S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead" => "S3 backends can be queried using protocol://bucket.host/. Some backend do not support this, use this option to force using protocol://host/bucket instead",
43+
"Is ViPR" => "Is ViPR",
44+
"If the backend storage is an EMC ViPR storage" => "If the backend storage is an EMC ViPR storage",
45+
"SDK Version" => "SDK Version",
46+
"The AWS SDK version" => "The AWS SDK version",
47+
"Authentication" => "Authentification",
48+
"Location" => "Emplacement",
49+
"API" => "API",
50+
"Custom Storage" => "Stockage Personnalisé",
51+
);

0 commit comments

Comments
 (0)