Skip to content

Commit

Permalink
add traduction
Browse files Browse the repository at this point in the history
  • Loading branch information
vampi62 committed Aug 31, 2024
1 parent e228c44 commit 885b665
Show file tree
Hide file tree
Showing 8 changed files with 221 additions and 233 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: translate

on:
workflow_dispatch:
push:
branches:
- beta

jobs:
auto-translate:
runs-on: ubuntu-latest
steps:
- uses: Mips2648/plugins-translations@main
with:
deepl_api_key: ${{ secrets.DEEPL_API_KEY }}
include_empty_translation: false
target_languages: "en_US,es_ES,de_DE,it_IT,pt_PT"
1 change: 0 additions & 1 deletion 3rdparty/readme

This file was deleted.

32 changes: 16 additions & 16 deletions core/ajax/snapmaker.ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,56 +23,56 @@
ajax::init(array('upload', 'download'));

if (!isConnect()) {
throw new Exception(__('401 - Accès non autorisé', __FILE__));
throw new Exception(__('{{401 - Accès non autorisé}}', __FILE__));
}
if (init('action') == 'upload') {
$uploaddir = __DIR__ . '/../../data/' . init('id');
if (!file_exists($uploaddir)) {
mkdir($uploaddir);
}
if (!file_exists($uploaddir)) {
throw new Exception(__('Répertoire de téléversement non trouvé :', __FILE__) . ' ' . $uploaddir);
throw new Exception(__('{{Répertoire de téléversement non trouvé :}}', __FILE__) . ' ' . $uploaddir);
}
if (!isset($_FILES['file'])) {
throw new Exception(__('Aucun fichier trouvé. Vérifiez le paramètre PHP (post size limit)', __FILE__));
throw new Exception(__('{{Aucun fichier trouvé. Vérifiez le paramètre PHP (post size limit)}}', __FILE__));
}
$extension = strtolower(strrchr($_FILES['file']['name'], '.'));
if (!in_array($extension, array('.gcode','.nc','.cnc'))) {
throw new Exception(__('Extension du fichier non valide (autorisé .gcode, .nc, .cnc) :', __FILE__) . ' ' . $extension);
throw new Exception(__('{{Extension du fichier non valide (autorisé .gcode, .nc, .cnc) :}}', __FILE__) . ' ' . $extension);
}
if (filesize($_FILES['file']['tmp_name']) > 500000000) {
throw new Exception(__('Le fichier est trop gros (maximum 500Mo)', __FILE__));
throw new Exception(__('{{Le fichier est trop gros (maximum 500Mo)}}', __FILE__));
}
if (!move_uploaded_file($_FILES['file']['tmp_name'], $uploaddir . '/' . $_FILES['file']['name'])) {
throw new Exception(__('Impossible de déplacer le fichier temporaire', __FILE__));
throw new Exception(__('{{Impossible de déplacer le fichier temporaire}}', __FILE__));
}
if (!file_exists($uploaddir . '/' . $_FILES['file']['name'])) {
throw new Exception(__('Impossible de téléverser le fichier (limite du serveur web ?)', __FILE__));
throw new Exception(__('{{Impossible de téléverser le fichier (limite du serveur web ?)}}', __FILE__));
}
ajax::success();
}
if (init('action') == 'delete') {
$uploaddir = __DIR__ . '/../../data/' . init('id');
if (!file_exists($uploaddir)) {
throw new \Exception(__('Impossible de trouver le répertoire de l\'équipement', __FILE__).init('id'));
throw new \Exception(__('{{Impossible de trouver le répertoire de l\'équipement}}', __FILE__).init('id'));
}
$file = $uploaddir . '/' . init('file');
if (!file_exists($file)) {
throw new \Exception(__('Impossible de trouver le fichier', __FILE__).init('file'));
throw new \Exception(__('{{Impossible de trouver le fichier}}', __FILE__).init('file'));
}
if (!unlink($file)) {
throw new \Exception(__('Impossible de supprimer le fichier', __FILE__).init('file'));
throw new \Exception(__('{{Impossible de supprimer le fichier}}', __FILE__).init('file'));
}
ajax::success();
}
if (init('action') == 'download') {
$uploaddir = __DIR__ . '/../../data/' . init('id');
if (!file_exists($uploaddir)) {
throw new \Exception(__('Impossible de trouver le répertoire de l\'équipement', __FILE__).init('id'));
throw new \Exception(__('{{Impossible de trouver le répertoire de l\'équipement}}', __FILE__).init('id'));
}
$file = $uploaddir . '/' . init('file');
if (!file_exists($file)) {
throw new \Exception(__('Impossible de trouver le fichier', __FILE__).init('file'));
throw new \Exception(__('{{Impossible de trouver le fichier}}', __FILE__).init('file'));
}

/*
Expand All @@ -92,15 +92,15 @@
if (init('action') == 'reprise') {
$uploaddir = __DIR__ . '/../../data/' . init('id');
if (!file_exists($uploaddir)) {
throw new \Exception(__('Impossible de trouver le répertoire de l\'équipement', __FILE__).init('id'));
throw new \Exception(__('{{Impossible de trouver le répertoire de l\'équipement}}', __FILE__).init('id'));
}
$file = $uploaddir . '/' . init('file');
if (!file_exists($file)) {
throw new \Exception(__('Impossible de trouver le fichier', __FILE__).init('file'));
throw new \Exception(__('{{Impossible de trouver le fichier}}', __FILE__).init('file'));
}
# si le fichier n'est pas un .gcode
if (strtolower(strrchr($file, '.')) != '.gcode') {
throw new \Exception(__('Le fichier n\'est pas un .gcode', __FILE__).init('file'));
throw new \Exception(__('{{Le fichier n\'est pas un .gcode}}', __FILE__).init('file'));
}
$numeroLigne = intval(init('line'));
$pourcentage = 1-(intval(init('percent')) / 100);
Expand Down Expand Up @@ -194,7 +194,7 @@
file_put_contents($newfile, implode("", $contenuCopie));
ajax::success();
}
throw new Exception(__('Aucune méthode correspondante à', __FILE__) . ' : ' . init('action'));
throw new Exception(__('{{Aucune méthode correspondante à}}', __FILE__) . ' : ' . init('action'));
/* * *********Catch exeption*************** */
}
catch (Exception $e) {
Expand Down
Loading

0 comments on commit 885b665

Please sign in to comment.