I18n

I18n structure

All translations will be available, for the time being, in English and Italian.

The folders are resources/lang/en and resources/lang/it.

Translations are further divided by "scope" in multiple files: global.php, cruds.php validation.php, etc...

return [
    'delete_message_text' => 'Questo messaggio è stato eliminato.',
    'write_message' => 'Scrivi un messaggio...',
    'files' => 'File',
    'emoji_groups' => [
        'skin_tone' => 'Colore pelle',
        'smileys_people' => 'Faccine e Persone',
        'animals_nature' => 'Animali e Natura',
        'food_drink' => 'Cibo e Bevande',
        'activities' => 'Attività',
        'travel_places' => 'Viaggi e Luoghi',
        'objects' => 'Oggetti',
        'symbols' => 'Simboli',
        'flags' => 'Bandiere',
    ],
    'copy_success' => 'Link copiato con successo!',
    'choose_color' => 'Scegli colore',
    'show_others' => 'Mostra altri',
    'delete_last_admin_error' => '{user} è l\'ultimo Admin presente, perciò non può essere eliminato',
    'duplicate_success' => 'Elemento duplicato con successo',
    'duplicate' => 'Duplica',
    'profile_update_success' => 'Profilo aggiornato',
    'security' => 'Sicurezza',
    'last_week' => 'Ultima settimana',
    'last_month' => 'Ultimo mese',
    'last_year' => 'Ultimo anno',
    'upload' => 'Carica',
    'details' => 'Dettagli',
    'write_comment' => 'Commenta...',
    'view_reports' => 'Guarda reports',
    'export_csv' => 'Esporta CSV',
    'select' => 'Seleziona',
    'overview' => 'Panoramica',
];

The backend uses the classic Laravel syntax, check the documentation for more info.

{{ __('global.copy_success') }}

The frontend uses vue-i18n, check the documentation for more info:

t('global.copy_success')

Last updated