Translations!

This commit is contained in:
James Brooks 2014-12-27 17:54:58 +00:00
parent 5f93290a0f
commit 7175f51e7a
4 changed files with 156 additions and 0 deletions

View File

@ -25,6 +25,15 @@ See the [INSTALL.md](/INSTALL.md) document for more information. If you'd like t
If you're deploying into production you'll want to create an environmental variable as `ENV=production`. In the instance where the variable isn't defined, Cachet will think that it's `local`.
# Translations
A special thank you to our translators, who have provided us with the chance to share Cachet with the world.
- **Andreas Karlsson** - Swedish
- **Marcin Kurczewski** - Polish
- **Pedro Maia** - Portuguese
- **Salvatore Gentile** - Italian
# License
[MIT](http://jbrooksuk.mit-license.org)

49
app/lang/it/cachet.php Executable file
View File

@ -0,0 +1,49 @@
<?php
return [
// Components
'component' => [
'status' => [
1 => 'Operativo',
2 => 'Problemi relativi alle Prestazioni',
3 => 'Interruzione Parziale',
4 => 'Interruzione Principale',
],
],
// Incidents
'incident' => [
'status' => [
1 => 'Indagando',
2 => 'Problemi relativi alle Prestazioni',
3 => 'Interruzione Parziale',
4 => 'Interruzione Principale',
],
],
// Service Status
'service' => [
'good' => 'Tutti i sistemi sono funzionanti.',
'bad' => 'Alcuni sistemi stanno riscontrando dei problemi.',
],
// Other
'powered_by' => ':app Pagina di Stato creata utilizzando <a href="https://cachethq.github.io">Cachet</a>.',
'logout' => 'Esci',
'logged_in' => 'Sei connesso.',
'setup' => 'Installa Cachet',
'no_incidents' => 'Non sono stati segnalati incidenti.',
'dashboard' => [
'dashboard' => 'Dashboard',
'components' => 'Componenti',
'component-add' => 'Aggiungi Componente',
'incidents' => 'Incidenti',
'incident-add' => 'Aggiungi Incidente',
'incident-create-template' => 'Crea Modello',
'metrics' => 'Metriche',
'metrics-add' => 'Aggiungi Punto di Metrica',
'status_page' => 'Pagina di Stato',
'settings' => 'Impostazioni',
'notifications' => 'Notifiche',
'toggle_navigation' => 'Mostra/Nascondi Navigazione',
'search' => 'Cerca...',
'user' => 'Utente',
],
];

49
app/lang/pl/cachet.php Executable file
View File

@ -0,0 +1,49 @@
<?php
return [
// Components
'component' => [
'status' => [
1 => 'Sprawny',
2 => 'Problemy z wydajnością',
3 => 'Częściowa awaria',
4 => 'Poważna awaria',
],
],
// Incidents
'incident' => [
'status' => [
1 => 'Badanie',
2 => 'Problemy z wydajnością',
3 => 'Częściowa awaria',
4 => 'Poważna awaria',
],
],
// Service Status
'service' => [
'good' => 'Wszystkie systemy sprawne.',
'bad' => 'Wykryto problemy w części systemów.',
],
// Other
'powered_by' => ':app monitor działa na silniku <a href="https://cachethq.github.io">Cachet</a>.',
'logout' => 'Wyloguj',
'logged_in' => 'Jesteś zalogowany.',
'setup' => 'Skonfiguruj Cachet',
'no_incidents' => 'Brak zgłoszonych problemów.',
'dashboard' => [
'dashboard' => 'Pulpit',
'components' => 'Komponenty',
'component-add' => 'Dodaj komponent',
'incidents' => 'Problemy',
'incident-add' => 'Zgłoś problem',
'incident-create-template' => 'Stwórz szablon',
'metrics' => 'Metryki',
'metrics-add' => 'Dodaj metrykę',
'status_page' => 'Strona statusowa',
'settings' => 'Ustawienia',
'notifications' => 'Powiadomienia',
'toggle_navigation' => 'Schowaj/pokaż nawigację',
'search' => 'Szukaj...',
'user' => 'Użytkownik',
],
];

49
app/lang/sv-SE/cachet.php Executable file
View File

@ -0,0 +1,49 @@
<?php
return [
// Components
'component' => [
'status' => [
1 => 'Fungerar',
2 => 'Prestandaproblem',
3 => 'Delvisa avbrott',
4 => 'Större avbrott',
],
],
// Incidents
'incident' => [
'status' => [
1 => 'Undersöker',
2 => 'Prestandaproblem',
3 => 'Delvisa avbrott',
4 => 'Större avbrott',
],
],
// Service Status
'service' => [
'good' => 'Alla system fungerar.',
'bad' => 'Vissa system har problem.',
],
// Other
'powered_by' => ':app Statussida körs via <a href="https://cachethq.github.io">Cachet</a>.',
'logout' => 'Logga ut',
'logged_in' => 'Du är inloggad.',
'setup' => 'Ställ in Cachet',
'no_incidents' => 'Inga händelser har rapporterats.',
'dashboard' => [
'dashboard' => 'Översiktspanel',
'components' => 'Komponenter',
'component-add' => 'Lägg till komponent',
'incidents' => 'Händelser',
'incident-add' => 'Lägg till händelse',
'incident-create-template' => 'Skapa mall',
'metrics' => 'Mått',
'metrics-add' => 'Lägg till mätpunkt',
'status_page' => 'Statussida',
'settings' => 'Inställningar',
'notifications' => 'Aviseringar',
'toggle_navigation' => 'Växla navigering',
'search' => 'Sök...',
'user' => 'Konto',
],
];