From 9694c7d668bbb82da3e1866d298c3e731fc09365 Mon Sep 17 00:00:00 2001 From: Magrid Date: Mon, 22 Apr 2024 22:26:24 +0200 Subject: [PATCH 1/5] Start italian translation --- src/locales/it/translation.json | 141 ++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 src/locales/it/translation.json diff --git a/src/locales/it/translation.json b/src/locales/it/translation.json new file mode 100644 index 00000000..f44700eb --- /dev/null +++ b/src/locales/it/translation.json @@ -0,0 +1,141 @@ +{ + "home": { + "featured": "Consigliati", + "recently_added": "Aggiunti di Recente", + "trending": "Popolari", + "surprise_me": "Sorprendimi", + "no_results": "Nessun Risultato" + }, + "sidebar": { + "catalogue": "Catalogo", + "downloads": "Downloads", + "settings": "Impostazioni", + "my_library": "Libreria", + "downloading_metadata": "{{title}} (Downloading metadata…)", + "checking_files": "{{title}} ({{percentage}} - Checking files…)", + "paused": "{{title}} (Paused)", + "downloading": "{{title}} ({{percentage}} - Downloading…)", + "filter": "Filter library", + "follow_us": "Follow us", + "home": "Home" + }, + "header": { + "search": "Search", + "home": "Home", + "catalogue": "Catalogue", + "downloads": "Downloads", + "search_results": "Search results", + "settings": "Settings" + }, + "bottom_panel": { + "no_downloads_in_progress": "No downloads in progress", + "downloading_metadata": "Downloading {{title}} metadata…", + "checking_files": "Checking {{title}} files… ({{percentage}} complete)", + "downloading": "Downloading {{title}}… ({{percentage}} complete) - Conclusion {{eta}} - {{speed}}" + }, + "catalogue": { + "next_page": "Next page", + "previous_page": "Previous page" + }, + "game_details": { + "open_download_options": "Open download options", + "download_options_zero": "No download option", + "download_options_one": "{{count}} download option", + "download_options_other": "{{count}} download options", + "updated_at": "Updated {{updated_at}}", + "install": "Install", + "resume": "Resume", + "pause": "Pause", + "cancel": "Cancel", + "remove": "Remove", + "remove_from_list": "Remove", + "space_left_on_disk": "{{space}} left on disk", + "eta": "Conclusion {{eta}}", + "downloading_metadata": "Downloading metadata…", + "checking_files": "Checking files…", + "filter": "Filter repacks", + "requirements": "System requirements", + "minimum": "Minimum", + "recommended": "Recommended", + "no_minimum_requirements": "{{title}} doesn't provide minimum requirements information", + "no_recommended_requirements": "{{title}} doesn't provide recommended requirements information", + "paused_progress": "{{progress}} (Paused)", + "release_date": "Released in {{date}}", + "publisher": "Published by {{publisher}}", + "copy_link_to_clipboard": "Copy link", + "copied_link_to_clipboard": "Link copied", + "hours": "hours", + "minutes": "minutes", + "accuracy": "{{accuracy}}% accuracy", + "add_to_library": "Add to library", + "remove_from_library": "Remove from library", + "no_downloads": "No downloads available", + "play_time": "Played for {{amount}}", + "last_time_played": "Last played {{period}}", + "not_played_yet": "You haven't played {{title}} yet", + "next_suggestion": "Next suggestion", + "play": "Play", + "deleting": "Deleting installer…", + "close": "Close", + "playing_now": "Playing now" + }, + "activation": { + "title": "Activate Hydra", + "installation_id": "Installation ID:", + "enter_activation_code": "Enter your activation code", + "message": "If you don't know where to ask for this, then you shouldn't have this.", + "activate": "Activate", + "loading": "Loading…" + }, + "downloads": { + "resume": "Resume", + "pause": "Pause", + "eta": "Conclusion {{eta}}", + "paused": "Paused", + "verifying": "Verifying…", + "completed_at": "Completed in {{date}}", + "completed": "Completed", + "cancelled": "Cancelled", + "download_again": "Download again", + "cancel": "Cancel", + "filter": "Filter downloaded games", + "remove": "Remove", + "downloading_metadata": "Downloading metadata…", + "checking_files": "Checking files…", + "starting_download": "Starting download…", + "deleting": "Deleting installer…", + "delete": "Remove installer", + "remove_from_list": "Remove", + "delete_modal_title": "Are you sure?", + "delete_modal_description": "This will remove all the installation files from your computer", + "install": "Install" + }, + "settings": { + "downloads_path": "Downloads path", + "change": "Update", + "notifications": "Notifications", + "enable_download_notifications": "When a download is complete", + "enable_repack_list_notifications": "When a new repack is added", + "telemetry": "Telemetry", + "telemetry_description": "Enable anonymous usage statistics" + }, + "notifications": { + "download_complete": "Download complete", + "game_ready_to_install": "{{title}} is ready to install", + "repack_list_updated": "Repack list updated", + "repack_count_one": "{{count}} repack added", + "repack_count_other": "{{count}} repacks added" + }, + "system_tray": { + "open": "Open Hydra", + "quit": "Quit" + }, + "game_card": { + "no_downloads": "No downloads available" + }, + "binary_not_found_modal": { + "title": "Programs not installed", + "description": "Wine or Lutris executables were not found on your system", + "instructions": "Check the correct way to install any of them on your Linux distro so that the game can run normally" + } +} From 00bc8c5db2f0936c1b762ee2d3462b063762a092 Mon Sep 17 00:00:00 2001 From: Magrid Date: Mon, 22 Apr 2024 22:29:24 +0200 Subject: [PATCH 2/5] Update index.ts --- src/locales/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/locales/index.ts b/src/locales/index.ts index 98a93c78..d9b40518 100644 --- a/src/locales/index.ts +++ b/src/locales/index.ts @@ -2,3 +2,4 @@ export { default as en } from "./en/translation.json"; export { default as pt } from "./pt/translation.json"; export { default as es } from "./es/translation.json"; export { default as fr } from "./fr/translation.json"; +export { default as it } from "./it/translation.json"; From 072629fdef2a55ad1cd5621ed8a9ce8a6461e0e9 Mon Sep 17 00:00:00 2001 From: Magrid Date: Mon, 22 Apr 2024 22:55:39 +0200 Subject: [PATCH 3/5] Update translation.json --- src/locales/it/translation.json | 148 ++++++++++++++++---------------- 1 file changed, 74 insertions(+), 74 deletions(-) diff --git a/src/locales/it/translation.json b/src/locales/it/translation.json index f44700eb..e2024483 100644 --- a/src/locales/it/translation.json +++ b/src/locales/it/translation.json @@ -11,130 +11,130 @@ "downloads": "Downloads", "settings": "Impostazioni", "my_library": "Libreria", - "downloading_metadata": "{{title}} (Downloading metadata…)", - "checking_files": "{{title}} ({{percentage}} - Checking files…)", - "paused": "{{title}} (Paused)", - "downloading": "{{title}} ({{percentage}} - Downloading…)", - "filter": "Filter library", - "follow_us": "Follow us", + "downloading_metadata": "{{title}} (Scarico i metadata…)", + "checking_files": "{{title}} ({{percentage}} - Controllo dei file…)", + "paused": "{{title}} (In Pausa)", + "downloading": "{{title}} ({{percentage}} - Scaricamento…)", + "filter": "Filtra la libreria", + "follow_us": "Seguici", "home": "Home" }, "header": { - "search": "Search", + "search": "Cerca", "home": "Home", - "catalogue": "Catalogue", - "downloads": "Downloads", - "search_results": "Search results", - "settings": "Settings" + "catalogue": "Catalogo", + "downloads": "Download", + "search_results": "Risultati di ricerca", + "settings": "Impostazioni" }, "bottom_panel": { - "no_downloads_in_progress": "No downloads in progress", - "downloading_metadata": "Downloading {{title}} metadata…", - "checking_files": "Checking {{title}} files… ({{percentage}} complete)", - "downloading": "Downloading {{title}}… ({{percentage}} complete) - Conclusion {{eta}} - {{speed}}" + "no_downloads_in_progress": "Nessun download in corso", + "downloading_metadata": "Scarico i metadata di {{title}}…", + "checking_files": "Controllo i file di {{title}}… (completato al {{percentage}})", + "downloading": "Scarico {{title}}… (completato al {{percentage}}) - Tempo rimanente {{eta}} - {{speed}}" }, "catalogue": { - "next_page": "Next page", - "previous_page": "Previous page" + "next_page": "Pagina Successiva", + "previous_page": "Pagina Precedente" }, "game_details": { - "open_download_options": "Open download options", - "download_options_zero": "No download option", - "download_options_one": "{{count}} download option", - "download_options_other": "{{count}} download options", - "updated_at": "Updated {{updated_at}}", - "install": "Install", - "resume": "Resume", - "pause": "Pause", + "open_download_options": "Apri le opzioni di download", + "download_options_zero": "Nessuna opzione di download", + "download_options_one": "{{count}} opzione di download", + "download_options_other": "{{count}} opzioni di download", + "updated_at": "Aggiornato il {{updated_at}}", + "install": "Installa", + "resume": "Riprendi", + "pause": "Pausa", "cancel": "Cancel", - "remove": "Remove", - "remove_from_list": "Remove", - "space_left_on_disk": "{{space}} left on disk", + "remove": "Removi", + "remove_from_list": "Removi", + "space_left_on_disk": "{{space}} rimanenti sul disco", "eta": "Conclusion {{eta}}", - "downloading_metadata": "Downloading metadata…", - "checking_files": "Checking files…", - "filter": "Filter repacks", - "requirements": "System requirements", - "minimum": "Minimum", - "recommended": "Recommended", + "downloading_metadata": "Scarico i metadata…", + "checking_files": "Controllo i file…", + "filter": "Filtra repacks", + "requirements": "Requisiti di sistema", + "minimum": "Minimi", + "recommended": "Raccomandati", "no_minimum_requirements": "{{title}} doesn't provide minimum requirements information", "no_recommended_requirements": "{{title}} doesn't provide recommended requirements information", - "paused_progress": "{{progress}} (Paused)", - "release_date": "Released in {{date}}", - "publisher": "Published by {{publisher}}", - "copy_link_to_clipboard": "Copy link", - "copied_link_to_clipboard": "Link copied", - "hours": "hours", - "minutes": "minutes", - "accuracy": "{{accuracy}}% accuracy", - "add_to_library": "Add to library", - "remove_from_library": "Remove from library", - "no_downloads": "No downloads available", - "play_time": "Played for {{amount}}", - "last_time_played": "Last played {{period}}", - "not_played_yet": "You haven't played {{title}} yet", - "next_suggestion": "Next suggestion", - "play": "Play", + "paused_progress": "{{progress}} (In Pausa)", + "release_date": "Uscito il {{date}}", + "publisher": "Pubblicato da {{publisher}}", + "copy_link_to_clipboard": "Copia link", + "copied_link_to_clipboard": "Link copiato", + "hours": "ore", + "minutes": "minuti", + "accuracy": "{{accuracy}}% accuratezza", + "add_to_library": "Aggiungi alla libreria", + "remove_from_library": "Rimuovi dalla libreria", + "no_downloads": "Nessun download disponibile", + "play_time": "Giocato per {{amount}}", + "last_time_played": "Giocato l'ultima volta {{period}}", + "not_played_yet": "Non hai ancora giocato a {{title}}", + "next_suggestion": "Prossimo Suggerimento", + "play": "Gioca", "deleting": "Deleting installer…", - "close": "Close", + "close": "Chiudi", "playing_now": "Playing now" }, "activation": { - "title": "Activate Hydra", + "title": "Attiva Hydra", "installation_id": "Installation ID:", "enter_activation_code": "Enter your activation code", "message": "If you don't know where to ask for this, then you shouldn't have this.", - "activate": "Activate", - "loading": "Loading…" + "activate": "Attiva", + "loading": "Caricamento…" }, "downloads": { - "resume": "Resume", - "pause": "Pause", + "resume": "Riprendi", + "pause": "Pausa", "eta": "Conclusion {{eta}}", - "paused": "Paused", - "verifying": "Verifying…", + "paused": "In Pausa", + "verifying": "Verifica…", "completed_at": "Completed in {{date}}", - "completed": "Completed", + "completed": "Completato", "cancelled": "Cancelled", - "download_again": "Download again", + "download_again": "Scarica di nuovo", "cancel": "Cancel", "filter": "Filter downloaded games", - "remove": "Remove", + "remove": "Rimuovi", "downloading_metadata": "Downloading metadata…", "checking_files": "Checking files…", "starting_download": "Starting download…", "deleting": "Deleting installer…", - "delete": "Remove installer", - "remove_from_list": "Remove", - "delete_modal_title": "Are you sure?", + "delete": "Removi l'installer", + "remove_from_list": "Removi", + "delete_modal_title": "Sei sicuro?", "delete_modal_description": "This will remove all the installation files from your computer", - "install": "Install" + "install": "Installa" }, "settings": { "downloads_path": "Downloads path", - "change": "Update", - "notifications": "Notifications", + "change": "Aggiorna", + "notifications": "Notifiche", "enable_download_notifications": "When a download is complete", "enable_repack_list_notifications": "When a new repack is added", "telemetry": "Telemetry", "telemetry_description": "Enable anonymous usage statistics" }, "notifications": { - "download_complete": "Download complete", + "download_complete": "Download completato", "game_ready_to_install": "{{title}} is ready to install", "repack_list_updated": "Repack list updated", - "repack_count_one": "{{count}} repack added", - "repack_count_other": "{{count}} repacks added" + "repack_count_one": "{{count}} repack aggiunto", + "repack_count_other": "{{count}} repacks aggiunti" }, "system_tray": { - "open": "Open Hydra", - "quit": "Quit" + "open": "Apri Hydra", + "quit": "Esci" }, "game_card": { - "no_downloads": "No downloads available" + "no_downloads": "Nessun download disponibile" }, "binary_not_found_modal": { - "title": "Programs not installed", + "title": "Programma non installato", "description": "Wine or Lutris executables were not found on your system", "instructions": "Check the correct way to install any of them on your Linux distro so that the game can run normally" } From ad179c9e12f959a6f7ce6275513ceab951af9a02 Mon Sep 17 00:00:00 2001 From: Magrid Date: Mon, 22 Apr 2024 22:59:14 +0200 Subject: [PATCH 4/5] Finish translation --- src/locales/it/translation.json | 130 ++++++++++++++++---------------- 1 file changed, 65 insertions(+), 65 deletions(-) diff --git a/src/locales/it/translation.json b/src/locales/it/translation.json index e2024483..52758a93 100644 --- a/src/locales/it/translation.json +++ b/src/locales/it/translation.json @@ -1,21 +1,21 @@ { "home": { - "featured": "Consigliati", - "recently_added": "Aggiunti di Recente", - "trending": "Popolari", + "featured": "In primo piano", + "recently_added": "Aggiunti di recente", + "trending": "Di tendenza", "surprise_me": "Sorprendimi", - "no_results": "Nessun Risultato" + "no_results": "Nessun risultato trovato" }, "sidebar": { "catalogue": "Catalogo", - "downloads": "Downloads", + "downloads": "Download", "settings": "Impostazioni", - "my_library": "Libreria", - "downloading_metadata": "{{title}} (Scarico i metadata…)", - "checking_files": "{{title}} ({{percentage}} - Controllo dei file…)", - "paused": "{{title}} (In Pausa)", - "downloading": "{{title}} ({{percentage}} - Scaricamento…)", - "filter": "Filtra la libreria", + "my_library": "La mia libreria", + "downloading_metadata": "{{title}} (Scaricamento metadati…)", + "checking_files": "{{title}} ({{percentage}} - Verifica file…)", + "paused": "{{title}} (In pausa)", + "downloading": "{{title}} ({{percentage}} - Download…)", + "filter": "Filtra libreria", "follow_us": "Seguici", "home": "Home" }, @@ -24,107 +24,107 @@ "home": "Home", "catalogue": "Catalogo", "downloads": "Download", - "search_results": "Risultati di ricerca", + "search_results": "Risultati della ricerca", "settings": "Impostazioni" }, "bottom_panel": { "no_downloads_in_progress": "Nessun download in corso", - "downloading_metadata": "Scarico i metadata di {{title}}…", - "checking_files": "Controllo i file di {{title}}… (completato al {{percentage}})", - "downloading": "Scarico {{title}}… (completato al {{percentage}}) - Tempo rimanente {{eta}} - {{speed}}" + "downloading_metadata": "Scaricamento metadati di {{title}}…", + "checking_files": "Verifica file di {{title}}… ({{percentage}} completato)", + "downloading": "Download di {{title}}… ({{percentage}} completato) - Conclusione {{eta}} - {{speed}}" }, "catalogue": { - "next_page": "Pagina Successiva", - "previous_page": "Pagina Precedente" + "next_page": "Pagina successiva", + "previous_page": "Pagina precedente" }, "game_details": { - "open_download_options": "Apri le opzioni di download", + "open_download_options": "Apri opzioni di download", "download_options_zero": "Nessuna opzione di download", "download_options_one": "{{count}} opzione di download", "download_options_other": "{{count}} opzioni di download", "updated_at": "Aggiornato il {{updated_at}}", "install": "Installa", "resume": "Riprendi", - "pause": "Pausa", - "cancel": "Cancel", - "remove": "Removi", - "remove_from_list": "Removi", - "space_left_on_disk": "{{space}} rimanenti sul disco", - "eta": "Conclusion {{eta}}", - "downloading_metadata": "Scarico i metadata…", - "checking_files": "Controllo i file…", - "filter": "Filtra repacks", + "pause": "Metti in pausa", + "cancel": "Annulla", + "remove": "Rimuovi", + "remove_from_list": "Rimuovi", + "space_left_on_disk": "{{spazio}} rimasto sul disco", + "eta": "Conclusione {{eta}}", + "downloading_metadata": "Scaricamento metadati…", + "checking_files": "Verifica file…", + "filter": "Filtra repack", "requirements": "Requisiti di sistema", "minimum": "Minimi", - "recommended": "Raccomandati", - "no_minimum_requirements": "{{title}} doesn't provide minimum requirements information", - "no_recommended_requirements": "{{title}} doesn't provide recommended requirements information", - "paused_progress": "{{progress}} (In Pausa)", - "release_date": "Uscito il {{date}}", + "recommended": "Consigliati", + "no_minimum_requirements": "{{title}} non fornisce informazioni sui requisiti minimi", + "no_recommended_requirements": "{{title}} non fornisce informazioni sui requisiti consigliati", + "paused_progress": "{{progress}} (In pausa)", + "release_date": "Rilasciato il {{date}}", "publisher": "Pubblicato da {{publisher}}", "copy_link_to_clipboard": "Copia link", "copied_link_to_clipboard": "Link copiato", "hours": "ore", "minutes": "minuti", - "accuracy": "{{accuracy}}% accuratezza", + "accuracy": "{{accuratezza}}% di accuratezza", "add_to_library": "Aggiungi alla libreria", "remove_from_library": "Rimuovi dalla libreria", "no_downloads": "Nessun download disponibile", "play_time": "Giocato per {{amount}}", - "last_time_played": "Giocato l'ultima volta {{period}}", + "last_time_played": "Ultimo gioco giocato {{period}}", "not_played_yet": "Non hai ancora giocato a {{title}}", - "next_suggestion": "Prossimo Suggerimento", + "next_suggestion": "Prossimo suggerimento", "play": "Gioca", - "deleting": "Deleting installer…", + "deleting": "Eliminazione dell'installer…", "close": "Chiudi", - "playing_now": "Playing now" + "playing_now": "Stai giocando adesso" }, "activation": { "title": "Attiva Hydra", - "installation_id": "Installation ID:", - "enter_activation_code": "Enter your activation code", - "message": "If you don't know where to ask for this, then you shouldn't have this.", + "installation_id": "ID installazione:", + "enter_activation_code": "Inserisci il tuo codice di attivazione", + "message": "Se non sai dove chiederlo, allora non dovresti averlo.", "activate": "Attiva", "loading": "Caricamento…" }, "downloads": { "resume": "Riprendi", - "pause": "Pausa", - "eta": "Conclusion {{eta}}", - "paused": "In Pausa", + "pause": "Metti in pausa", + "eta": "Conclusione {{eta}}", + "paused": "In pausa", "verifying": "Verifica…", - "completed_at": "Completed in {{date}}", + "completed_at": "Completato in {{date}}", "completed": "Completato", - "cancelled": "Cancelled", + "cancelled": "Annullato", "download_again": "Scarica di nuovo", - "cancel": "Cancel", - "filter": "Filter downloaded games", + "cancel": "Annulla", + "filter": "Filtra giochi scaricati", "remove": "Rimuovi", - "downloading_metadata": "Downloading metadata…", - "checking_files": "Checking files…", - "starting_download": "Starting download…", - "deleting": "Deleting installer…", - "delete": "Removi l'installer", - "remove_from_list": "Removi", + "downloading_metadata": "Scaricamento metadati…", + "checking_files": "Verifica file…", + "starting_download": "Avvio download…", + "deleting": "Eliminazione dell'installer…", + "delete": "Rimuovi installer", + "remove_from_list": "Rimuovi", "delete_modal_title": "Sei sicuro?", - "delete_modal_description": "This will remove all the installation files from your computer", + "delete_modal_description": "Questo rimuoverà tutti i file di installazione dal tuo computer", "install": "Installa" }, "settings": { - "downloads_path": "Downloads path", + "downloads_path": "Percorso dei download", "change": "Aggiorna", "notifications": "Notifiche", - "enable_download_notifications": "When a download is complete", - "enable_repack_list_notifications": "When a new repack is added", - "telemetry": "Telemetry", - "telemetry_description": "Enable anonymous usage statistics" + "enable_download_notifications": "Quando un download è completo", + "enable_repack_list_notifications": "Quando viene aggiunto un nuovo repack", + "telemetry": "Telemetria", + "telemetry_description": "Abilita statistiche di utilizzo anonime" }, "notifications": { "download_complete": "Download completato", - "game_ready_to_install": "{{title}} is ready to install", - "repack_list_updated": "Repack list updated", + "game_ready_to_install": "{{title}} è pronto per l'installazione", + "repack_list_updated": "Elenco repack aggiornato", "repack_count_one": "{{count}} repack aggiunto", - "repack_count_other": "{{count}} repacks aggiunti" + "repack_count_other": "{{count}} repack aggiunti" }, "system_tray": { "open": "Apri Hydra", @@ -134,8 +134,8 @@ "no_downloads": "Nessun download disponibile" }, "binary_not_found_modal": { - "title": "Programma non installato", - "description": "Wine or Lutris executables were not found on your system", - "instructions": "Check the correct way to install any of them on your Linux distro so that the game can run normally" + "title": "Programmi non installati", + "description": "Gli eseguibili di Wine o Lutris non sono stati trovati sul tuo sistema", + "instructions": "Verifica il modo corretto di installare uno di essi sulla tua distribuzione Linux in modo che il gioco possa funzionare normalmente" } } From 1101c2010bb0ac0f896c61c500413abd4f13b1ef Mon Sep 17 00:00:00 2001 From: Magrid Date: Tue, 23 Apr 2024 20:49:43 +0200 Subject: [PATCH 5/5] Update translation.json fix an error --- src/locales/it/translation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locales/it/translation.json b/src/locales/it/translation.json index 52758a93..01b34c1e 100644 --- a/src/locales/it/translation.json +++ b/src/locales/it/translation.json @@ -49,7 +49,7 @@ "cancel": "Annulla", "remove": "Rimuovi", "remove_from_list": "Rimuovi", - "space_left_on_disk": "{{spazio}} rimasto sul disco", + "space_left_on_disk": "{{space}} rimasto sul disco", "eta": "Conclusione {{eta}}", "downloading_metadata": "Scaricamento metadati…", "checking_files": "Verifica file…",