activated spanish, french and italian

This commit is contained in:
Kevin Papst
2018-08-18 23:25:38 +02:00
committed by Kevin Papst
parent 3241c73e7c
commit 142369d651
5 changed files with 15 additions and 7 deletions

View File

@@ -18,7 +18,10 @@ Right now its in an early development phase, its usable but some advanced featur
But we already support to [import your timesheets](migration_v1.md) from Kimai v1.
It is developed with modern frameworks like [Symfony v4](https://github.com/symfony/symfony), [Doctrine](https://github.com/doctrine/),
[AdminLTE](https://github.com/kevinpapst/AdminLTEBundle/) and [many](composer.json) [more](package.json)...
[AdminLTE](https://github.com/kevinpapst/AdminLTEBundle/) and [many](composer.json) [more](package.json).
Kimai is a multi-language application and already translated to English. German, Italian, Frensh, Spanish and Russian.
If you want to support us in translating Kimai, please [read this documentation](var/docs/translations.md).
### Requirements
@@ -34,8 +37,8 @@ It is developed with modern frameworks like [Symfony v4](https://github.com/symf
Looking for more information about using Kimai? Check out our more detailed [documentation](var/docs/).
You can see our development roadmap for the future in the [Milestones](milestones/) sections,
current work is organized in the [Project](projects/) planning boards.
You can see our development roadmap for the future in the [Milestones](milestones/) sections.
Our roadmap is open for changes and input from the community, please [sent us](issues/) your ideas and questions.
## Installation

View File

@@ -47,6 +47,12 @@ kimai:
date_short: 'd.m.Y'
en:
date_short: 'Y-m-d'
it:
date_short: 'd.m.Y'
fr:
date_short: 'd.m.Y'
es:
date_short: 'd.m.Y'
ru:
date_short: 'd.m.Y'

View File

@@ -2,7 +2,7 @@
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters:
locale: en
app_locales: en|de|ru|it
app_locales: en|de|it|fr|es|ru
services:
# default configuration for services in *this* file

View File

@@ -737,7 +737,7 @@
</trans-unit>
<trans-unit id="invoice.signature_customer">
<source>invoice.signature_customer</source>
<target>Pour certification : date / nom du client / signature<</target>
<target>Pour certification : date / nom du client / signature</target>
</trans-unit>
<trans-unit id="label.order_number">
<source>label.order_number</source>

View File

@@ -14,7 +14,7 @@ The files in `translations/` as a quick overview:
- `sidebar` holds all the translations of the right sidebar
- `validators` only hold translations related to violations/validation of submitted form data (or API calls)
## Add a new language
## Adding a new language
As example I choose a new hypothetical language with the locale `xx`.
@@ -40,4 +40,3 @@ parameters:
locale: en
app_locales: en|de|ru|it|xx
```