diff --git a/README.md b/README.md index c16e5124..88d3b0a7 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,8 @@ Depending on your distribution, you will need to run the following command: **Italian Translation** (46%) / [Giuseppe Gigliotti](https://github.com/ReverbOD) [[#20](https://github.com/Fabio286/antares/pull/20)] **Arabic Translation** (45%) / [Mohd-PH](https://github.com/Mohd-PH) [[#29](https://github.com/Fabio286/antares/pull/29)] -**Spanish Translation** (46%) / [hongkfui](https://github.com/hongkfui) [[#32](https://github.com/Fabio286/antares/pull/32)] +**Spanish Translation** (46%) / [hongkfui](https://github.com/hongkfui) [[#32](https://github.com/Fabio286/antares/pull/32)] +**French Translation** (100%) / [MrAnyx](https://github.com/MrAnyx) [[#32](https://github.com/Fabio286/antares/pull/44)] ## Reviews diff --git a/src/renderer/i18n/ar-SA.js b/src/renderer/i18n/ar-SA.js index 50f36dba..867159d4 100644 --- a/src/renderer/i18n/ar-SA.js +++ b/src/renderer/i18n/ar-SA.js @@ -69,19 +69,5 @@ module.exports = { uploadFile: 'رفع ملف', addNewRow: 'إضافة صف جديد', numberOfInserts: 'عدد الإدراجات' - }, - // Date and Time - short: { - year: 'numeric', - month: 'short', - day: 'numeric' - }, - long: { - year: 'numeric', - month: 'short', - day: 'numeric', - weekday: 'short', - hour: 'numeric', - minute: 'numeric' } }; diff --git a/src/renderer/i18n/en-US.js b/src/renderer/i18n/en-US.js index ecaeb350..99b3a103 100644 --- a/src/renderer/i18n/en-US.js +++ b/src/renderer/i18n/en-US.js @@ -348,19 +348,5 @@ module.exports = { model: 'Model', fuel: 'Fuel', vin: 'Vin' - }, - // Date and Time - short: { - year: 'numeric', - month: 'short', - day: 'numeric' - }, - long: { - year: 'numeric', - month: 'short', - day: 'numeric', - weekday: 'short', - hour: 'numeric', - minute: 'numeric' } }; diff --git a/src/renderer/i18n/es-ES.js b/src/renderer/i18n/es-ES.js index a222e2f6..9cb42a89 100644 --- a/src/renderer/i18n/es-ES.js +++ b/src/renderer/i18n/es-ES.js @@ -72,19 +72,5 @@ module.exports = { numberOfInserts: 'Numero de inserciones', openNewTab: 'Abrir nueva pestaña', affectedRows: 'Filas afectadas' - }, - // Date and Time - short: { - year: 'numeric', - month: 'short', - day: 'numeric' - }, - long: { - year: 'numeric', - month: 'short', - day: 'numeric', - weekday: 'short', - hour: 'numeric', - minute: 'numeric' } }; diff --git a/src/renderer/i18n/fr-FR.js b/src/renderer/i18n/fr-FR.js index e498b63e..d4da70ff 100644 --- a/src/renderer/i18n/fr-FR.js +++ b/src/renderer/i18n/fr-FR.js @@ -348,19 +348,5 @@ module.exports = { model: 'Modèle', fuel: 'Carburant', vin: 'Vin' - }, - // Date and Time - short: { - year: 'numérique', - month: 'court', - day: 'numérique' - }, - long: { - year: 'numérique', - month: 'court', - day: 'numérique', - weekday: 'court', - hour: 'numérique', - minute: 'numérique' } }; diff --git a/src/renderer/i18n/index.js b/src/renderer/i18n/index.js index 78f7e7d9..dc048a67 100644 --- a/src/renderer/i18n/index.js +++ b/src/renderer/i18n/index.js @@ -9,7 +9,7 @@ const i18n = new VueI18n({ 'it-IT': require('./it-IT'), 'ar-SA': require('./ar-SA'), 'es-ES': require('./es-ES'), - 'fr-FR': require('./fr-FR'), + 'fr-FR': require('./fr-FR') } }); export default i18n; diff --git a/src/renderer/i18n/it-IT.js b/src/renderer/i18n/it-IT.js index 1ba017e9..debd148b 100644 --- a/src/renderer/i18n/it-IT.js +++ b/src/renderer/i18n/it-IT.js @@ -72,19 +72,5 @@ module.exports = { numberOfInserts: 'Numero di insert', openNewTab: 'Apri nuova scheda', affectedRows: 'Righe interessate' - }, - // Date and Time - short: { - year: 'numeric', - month: 'short', - day: 'numeric' - }, - long: { - year: 'numeric', - month: 'short', - day: 'numeric', - weekday: 'short', - hour: 'numeric', - minute: 'numeric' } }; diff --git a/src/renderer/i18n/supported-locales.js b/src/renderer/i18n/supported-locales.js index dbfc01a1..286b25c3 100644 --- a/src/renderer/i18n/supported-locales.js +++ b/src/renderer/i18n/supported-locales.js @@ -3,5 +3,5 @@ export default { 'it-IT': 'Italiano', 'ar-SA': 'العربية', 'es-ES': 'Español', - 'fr-FR': 'Français', + 'fr-FR': 'Français' };