Skip to content

Commit 3a15a85

Browse files
authored
Merge pull request joni2back#334 from YourITAssistant/master
Changed listing_filed with listing_failed and added Italian translation
2 parents efb0050 + 7ba1214 commit 3a15a85

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

bridges/php-local/LocalBridge/FileManagerApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function postHandler($query, $request, $files)
4747
$list = $this->listAction($request['path']);
4848

4949
if (!is_array($list)) {
50-
$response = $this->simpleErrorResponse($t->listing_filed);
50+
$response = $this->simpleErrorResponse($t->listing_failed);
5151
} else {
5252
$response = new Response();
5353
$response->setData([

bridges/php-local/lang/de.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"function_not_implemented": "Funktion nicht implementiert",
33
"file_not_found": "Datei nicht gefunden",
4-
"listing_filed": "Auflistung fehlgeschlagen",
4+
"listing_failed": "Auflistung fehlgeschlagen",
55
"moving_failed": "Verschiebung fehlgeschlagen",
66
"renaming_failed": "Umbenennung fehlgeschlagen",
77
"copying_failed": "Kopieren fehlgeschlagen",
@@ -15,4 +15,4 @@
1515
"archive_opening_failed": "Öffnen des Archivs fehlgeschlagen, es ist entweder korrupt oder nicht unterstützt.",
1616
"extraction_failed": "Auspacken fehlgeschlagen",
1717
"upload_failed": "Hochladen fehlgeschlagen"
18-
}
18+
}

bridges/php-local/lang/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"function_not_implemented": "Function not implemented",
33
"file_not_found": "File not found",
4-
"listing_filed": "Listing failed",
4+
"listing_failed": "Listing failed",
55
"moving_failed": "Moving failed",
66
"renaming_failed": "Renaming failed",
77
"copying_failed": "Copying failed",
@@ -15,4 +15,4 @@
1515
"archive_opening_failed": "Could not open the archive, it is either corrupted or unsupported",
1616
"extraction_failed": "Extraction failed",
1717
"upload_failed": "Upload failed"
18-
}
18+
}

bridges/php-local/lang/fr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"function_not_implemented": "Fonction non implémentée",
33
"file_not_found": "Fichier non trouvé",
4-
"listing_filed": "Le listing a échoué",
4+
"listing_failed": "Le listing a échoué",
55
"moving_failed": "Le déplacement a échoué",
66
"renaming_failed": "Le renommage a échoué",
77
"copying_failed": "La copie a échouée",

bridges/php-local/lang/it.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"function_not_implemented": "Funzione non implementata",
3+
"file_not_found": "File non trovato",
4+
"listing_failed": "Elenco fallito",
5+
"moving_failed": "Spostamento fallito",
6+
"renaming_failed": "Rinomina fallita",
7+
"copying_failed": "Copia fallita",
8+
"removing_failed": "Rimozione fallita",
9+
"removing_failed_directory_not_empty": "Rimozione fallita, la cartella che stai tentando di rimuovere non è vuota",
10+
"saving_failed": "Salvataggio fallito",
11+
"folder_already_exists": "La cartella esiste già",
12+
"folder_creation_failed": "Creazione della cartella fallita",
13+
"permissions_change_failed": "Modifica dei permessi non riuscita",
14+
"compression_failed": "Compressione fallita",
15+
"archive_opening_failed": "Impossibile aprire l'archivio, è danneggiato o non supportato",
16+
"extraction_failed": "Estrazione fallita",
17+
"upload_failed": "Caricamento fallito"
18+
}

bridges/php-local/lang/ko.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"function_not_implemented": "구현되지 않은 기능입니다",
33
"file_not_found": "파일을 찾을 수 없습니다",
4-
"listing_filed": "목록 작성 실패",
4+
"listing_failed": "목록 작성 실패",
55
"moving_failed": "이동 실패",
66
"renaming_failed": "이름 변경 실패",
77
"copying_failed": "복사 실패",

bridges/php-local/lang/sk.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"function_not_implemented": "Funkcia nie je implementovaná",
33
"file_not_found": "Súbor nenájdený",
4-
"listing_filed": "Výpis súborov zlyhal",
4+
"listing_failed": "Výpis súborov zlyhal",
55
"moving_failed": "Presunutie zlyhalo",
66
"renaming_failed": "Premenovanie zlyhalo",
77
"copying_failed": "Kopírovanie zlyhalo",
@@ -15,4 +15,4 @@
1515
"archive_opening_failed": "Nepodarilo sa otvoriť archív je buď poškodený alebo nepodporovaného formátu",
1616
"extraction_failed": "Extrahovanie zlyhalo",
1717
"upload_failed": "Nahrávanie zlyhalo"
18-
}
18+
}

0 commit comments

Comments
 (0)