From 490704220365421ea0ea9d76ab3768a94b8ccd47 Mon Sep 17 00:00:00 2001 From: Julien Malik Date: Sun, 22 Mar 2015 23:59:36 +0100 Subject: [PATCH] typo : transfert / transfer --- lib/lang/fr.php | 6 +++--- lib/lang/template.php | 6 +++--- script.php | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/lang/fr.php b/lib/lang/fr.php index 2642e57..b7e1a3a 100644 --- a/lib/lang/fr.php +++ b/lib/lang/fr.php @@ -164,14 +164,14 @@ $tr = array ( 'This will return "Ok" if succeeded, "Error" otherwhise.' => 'Retourne "OK" en cas de succès, "Error" dans le cas contraire.', 'Get a generated script' => 'Récupérer un script généré', 'This will return brut text content of the code.' => 'Renvoie le code sous forme the texte brut.', - 'Initalize an asynchronous transfert' => 'Initialiser un transfert asynchrone', + 'Initalize an asynchronous transfer' => 'Initialiser un transfert asynchrone', 'The goal is to permit to transfer big file, chunk by chunk.' => 'Le but est de permettre de transférer de gros fichiers, morceaux par morceaux.', 'Chunks of data must be sent in order.' => 'Chaque morceau doit être envoyé dans l\'ordre.', 'First line is the asynchronous transfer reference and the second line the code to use in the next operation.' => 'La première ligne correspond à la référence de transfert asynchrone, la seconde au code à utiliser dans la prochaine requette.', - 'Push data during asynchronous transfert' => 'Envoyer des données pendant un transfert asynchrone', + 'Push data during asynchronous transfer' => 'Envoyer des données pendant un transfert asynchrone', 'Returns the next code to use.' => 'Renvoie le prochain code à utiliser.', - 'Finalize asynchronous transfert' => 'Finaliser un transfert asynchrone', + 'Finalize asynchronous transfer' => 'Finaliser un transfert asynchrone', 'This will return "Ok" or "Error" string.' => 'Retourn la chaine "Ok" ou "Error".', ); ?> diff --git a/lib/lang/template.php b/lib/lang/template.php index 419ef53..990be64 100644 --- a/lib/lang/template.php +++ b/lib/lang/template.php @@ -144,14 +144,14 @@ $tr = array ( 'This will return "Ok" if succeeded, "Error" otherwhise.' => '', 'Get a generated script' => '', 'This will return brut text content of the code.' => '', - 'Initalize an asynchronous transfert' => '', + 'Initalize an asynchronous transfer' => '', 'The goal is to permit to transfer big file, chunk by chunk.' => '', 'Chunks of data must be sent in order.' => '', 'First line is the asynchronous transfer reference and the second line the code to use in the next operation.' => '', - 'Push data during asynchronous transfert' => '', + 'Push data during asynchronous transfer' => '', 'Returns the next code to use.' => '', - 'Finalize asynchronous transfert' => '', + 'Finalize asynchronous transfer' => '', 'This will return "Ok" or "Error" string.' => '', ); ?> diff --git a/script.php b/script.php index fb41cb8..99c5ec0 100644 --- a/script.php +++ b/script.php @@ -157,7 +157,7 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) echo "$name: " . $web_root . "script.php?lang=$lang "; echo '

'; - echo '

' . t('Initalize an asynchronous transfert') . ':

'; + echo '

' . t('Initalize an asynchronous transfer') . ':

'; echo '

'; echo t('The goal is to permit to transfer big file, chunk by chunk.') . ' '; echo t('Chunks of data must be sent in order.'); @@ -176,7 +176,7 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) echo '

' . t('This will return brut text content.') . ' ' . t('First line is the asynchronous transfer reference and the second line the code to use in the next operation.') . '

'; - echo '

' . t('Push data during asynchronous transfert') . ':

'; + echo '

' . t('Push data during asynchronous transfer') . ':

'; echo '

'; echo t('Send a GET query to') . ': ' . $web_root . 'script.php?push_async
'; echo '
'; @@ -188,7 +188,7 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) echo '

' . t('This will return brut text content.') . ' ' . t('Returns the next code to use.') . '

'; - echo '

' . t('Finalize asynchronous transfert') . ':

'; + echo '

' . t('Finalize asynchronous transfer') . ':

'; echo '

'; echo t('Send a GET query to') . ': ' . $web_root . 'script.php?end_async
'; echo '
'; -- 2.34.1