summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Console/LocaleComparator.php82
-rw-r--r--app/Locale/da_DK/translations.php119
-rw-r--r--app/Locale/de_DE/translations.php119
-rw-r--r--app/Locale/es_ES/translations.php119
-rw-r--r--app/Locale/fi_FI/translations.php119
-rw-r--r--app/Locale/fr_FR/translations.php127
-rw-r--r--app/Locale/hu_HU/translations.php119
-rw-r--r--app/Locale/it_IT/translations.php119
-rw-r--r--app/Locale/ja_JP/translations.php119
-rw-r--r--app/Locale/nl_NL/translations.php119
-rw-r--r--app/Locale/pl_PL/translations.php119
-rw-r--r--app/Locale/pt_BR/translations.php119
-rw-r--r--app/Locale/ru_RU/translations.php119
-rw-r--r--app/Locale/sr_Latn_RS/translations.php119
-rw-r--r--app/Locale/sv_SE/translations.php119
-rw-r--r--app/Locale/th_TH/translations.php119
-rw-r--r--app/Locale/tr_TR/translations.php119
-rw-r--r--app/Locale/zh_CN/translations.php119
18 files changed, 1276 insertions, 837 deletions
diff --git a/app/Console/LocaleComparator.php b/app/Console/LocaleComparator.php
new file mode 100644
index 00000000..6eec42dc
--- /dev/null
+++ b/app/Console/LocaleComparator.php
@@ -0,0 +1,82 @@
+<?php
+
+namespace Console;
+
+use RecursiveIteratorIterator;
+use RecursiveDirectoryIterator;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+class LocaleComparator extends Base
+{
+ const REF_LOCALE = 'fr_FR';
+
+ protected function configure()
+ {
+ $this
+ ->setName('locale:compare')
+ ->setDescription('Compare application translations with the '.self::REF_LOCALE.' locale');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output)
+ {
+ $strings = array();
+ $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator('app'));
+ $it->rewind();
+
+ while ($it->valid()) {
+
+ if (! $it->isDot() && substr($it->key(), -4) === '.php') {
+ $strings = array_merge($strings, $this->search($it->key()));
+ }
+
+ $it->next();
+ }
+
+ $this->compare(array_unique($strings));
+ }
+
+ public function show(array $strings)
+ {
+ foreach ($strings as $string) {
+ echo " '".str_replace("'", "\'", $string)."' => '',".PHP_EOL;
+ }
+ }
+
+ public function compare(array $strings)
+ {
+ $reference_file = 'app/Locale/'.self::REF_LOCALE.'/translations.php';
+ $reference = include $reference_file;
+
+ echo str_repeat('#', 70).PHP_EOL;
+ echo 'MISSING STRINGS'.PHP_EOL;
+ echo str_repeat('#', 70).PHP_EOL;
+ $this->show(array_diff($strings, array_keys($reference)));
+
+ echo str_repeat('#', 70).PHP_EOL;
+ echo 'USELESS STRINGS'.PHP_EOL;
+ echo str_repeat('#', 70).PHP_EOL;
+ $this->show(array_diff(array_keys($reference), $strings));
+ }
+
+ public function search($filename)
+ {
+ $content = file_get_contents($filename);
+ $strings = array();
+
+ if (preg_match_all('/\b[et]\((\'\K.*?\') *[\)\,]/', $content, $matches) && isset($matches[1])) {
+ $strings = $matches[1];
+ }
+
+ if (preg_match_all('/\bdt\((\'\K.*?\') *[\)\,]/', $content, $matches) && isset($matches[1])) {
+ $strings = array_merge($strings, $matches[1]);
+ }
+
+ array_walk($strings, function(&$value) {
+ $value = trim($value, "'");
+ $value = str_replace("\'", "'", $value);
+ });
+
+ return $strings;
+ }
+}
diff --git a/app/Locale/da_DK/translations.php b/app/Locale/da_DK/translations.php
index 4adfdae4..bb3c7c81 100644
--- a/app/Locale/da_DK/translations.php
+++ b/app/Locale/da_DK/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Ingen bruger',
'Forbidden' => 'Forbudt',
'Access Forbidden' => 'Adgang nægtet',
- 'Only administrators can access to this page.' => 'Kun administratorer har adgang til denne side.',
'Edit user' => 'Rediger bruger',
'Logout' => 'Log ud',
'Bad username or password' => 'Forkert brugernavn eller adgangskode',
- 'users' => 'Brugere',
- 'projects' => 'Projekter',
'Edit project' => 'Rediger projekt',
'Name' => 'Navn',
- 'Activated' => 'Aktiveret',
'Projects' => 'Projekter',
'No project' => 'Intet projekt',
'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Handlinger',
'Inactive' => 'Inaktiv',
'Active' => 'Aktiv',
- 'Column %d' => 'Kolonne %d',
'Add this column' => 'Tilføj denne kolonne',
'%d tasks on the board' => '%d Opgaver på boardet',
'%d tasks in total' => '%d Opgaver i alt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nyt projekt',
'Do you really want to remove this project: "%s"?' => 'Vil du virkelig fjerne dette projekt: "%s"?',
'Remove project' => 'Fjern projekt',
- 'Boards' => 'Boards',
'Edit the board for "%s"' => 'Rediger boardet for "%s"',
'All projects' => 'Alle Projekter',
'Change columns' => 'Ændre kolonner',
'Add a new column' => 'Tilføj en ny kolonne',
'Title' => 'Titel',
- 'Add Column' => 'Tilføj kolonne',
- 'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Ingen ansvarlig',
'Assigned to %s' => 'Ansvarlig: %s',
'Remove a column' => 'Fjern en kolonne',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Sprog',
'Webhook token:' => 'Webhook token:',
'API token:' => 'API Token:',
- 'More information' => 'Mere Information',
'Database size:' => 'Databasestørrelse:',
'Download the database' => 'Download databasen',
'Optimize the database' => 'Optimer databasen',
'(VACUUM command)' => '(VACUUM kommando)',
'(Gzip compressed Sqlite file)' => '(Gzip-komprimeret Sqlite fil)',
- 'User settings' => 'Brugerindstillinger',
- 'My default project:' => 'Mit standard projekt:',
'Close a task' => 'Luk en opgave',
- 'Do you really want to close this task: "%s"?' => 'Vil du virkelig lukke denne opgave: "%s"?',
'Edit a task' => 'Rediger en opgave',
'Column' => 'Kolonne',
'Color' => 'Farve',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Adgangskode er krævet',
'This value must be an integer' => 'Denne værdig skal være et tal',
'The username must be unique' => 'Brugernavn skal være unikt',
- 'The username must be alphanumeric' => 'Brugernavnet skal være alfanumerisk',
'The user id is required' => 'Bruger id er krævet',
'Passwords don\'t match' => 'Adgangskoderne stemmer ikke overens',
'The confirmation is required' => 'Verifikation er nødvendigt',
- 'The column is required' => 'Kolonnen er krævet',
'The project is required' => 'Projektet er krævet',
- 'The color is required' => 'Farven er krævet',
'The id is required' => 'Id\'et er krævet',
'The project id is required' => 'Projektets id er krævet',
'The project name is required' => 'Projektets navn er krævet',
'This project must be unique' => 'Projektets navn skal være unikt',
'The title is required' => 'Titel er krævet',
- 'The language is required' => 'Sproget er krævet',
'There is no active project, the first step is to create a new project.' => 'Der er ingen aktive projekter. Første step er at oprette et nyt projekt.',
'Settings saved successfully.' => 'Indstillinger gemt.',
'Unable to save your settings.' => 'Indstillinger kunne ikke gemmes.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Dato for oprettelse',
'Date completed' => 'Dato for fuldført',
'Id' => 'ID',
- 'No task' => 'Ingen opgave',
'Completed tasks' => 'Fuldførte opgaver',
- 'List of projects' => 'Liste over projekter',
'Completed tasks for "%s"' => 'Fuldførte opgaver for "%s"',
'%d closed tasks' => '%d lukket opgavet',
'No task for this project' => 'Ingen opgaver i dette projekt',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Denne information kunne ikke findes i databasen!',
'Page not found' => 'Siden er ikke fundet',
'Complexity' => 'Kompleksitet',
- 'limit' => 'Begrænsning',
'Task limit' => 'Opgave begrænsning',
// 'Task count' => '',
- 'This value must be greater than %d' => 'Denne værdi skal være større end %d',
'Edit project access list' => 'Rediger adgangstilladelser for projektet',
- 'Edit users access' => 'Rediger brugertilladelser',
'Allow this user' => 'Tillad denne bruger',
- 'Only those users have access to this project:' => 'Kunne disse brugere har adgang til dette projekt:',
'Don\'t forget that administrators have access to everything.' => 'Glem ikke at administratorer har adgang til alt.',
'Revoke' => 'Fjern',
'List of authorized users' => 'Liste over autoriserede brugere',
'User' => 'Bruger',
'Nobody have access to this project.' => 'Ingen har adgang til dette projekt.',
- 'You are not allowed to access to this project.' => 'Du har ikke tilladelse til at få adgang til dette projekt.',
'Comments' => 'Kommentarer',
- 'Post comment' => 'Skriv en kommentar',
'Write your text in Markdown' => 'Skriv din tekst i markdown',
'Leave a comment' => 'Efterlad en kommentar',
'Comment is required' => 'Kommentar er krævet',
'Leave a description' => 'Efterlad en beskrivelse...',
'Comment added successfully.' => 'Kommentaren er tilføjet.',
'Unable to create your comment.' => 'Din kommentar kunne ikke oprettes.',
- 'The description is required' => 'Beskrivelsen er krævet',
'Edit this task' => 'Rediger denne opgave',
'Due Date' => 'Forfaldsdato',
'Invalid date' => 'Ugyldig dato',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Gem denne handling',
'Do you really want to remove this action: "%s"?' => 'Vil du virkelig slette denne handling: "%s"?',
'Remove an automatic action' => 'Fjern en automatisk handling',
- 'Close the task' => 'Luk opgaven',
'Assign the task to a specific user' => 'Tildel opgaven til en bestem bruger',
'Assign the task to the person who does the action' => 'Tildel opgaven til den person, der udfører handlingen',
'Duplicate the task to another project' => 'Kopier opgaven til et andet projekt',
'Move a task to another column' => 'Flyt opgaven til en anden kolonne',
- 'Move a task to another position in the same column' => 'Flyt opgaven til en anden position, i den samme kolonne',
'Task modification' => 'Opgave forandring',
'Task creation' => 'Opgave oprettelse',
- 'Open a closed task' => 'Åbne en lukket opgave',
'Closing a task' => 'Lukke en opgave',
'Assign a color to a specific user' => 'Tildel en farve til en bestemt bruger',
'Column title' => 'Kolonne titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopier til et andet projekt',
'Duplicate' => 'Kopier',
'link' => 'link',
- 'Update this comment' => 'Opdater denne kommentar',
'Comment updated successfully.' => 'Kommentar opdateret.',
'Unable to update your comment.' => 'Din kommentar kunne ikke opdateres.',
'Remove a comment' => 'Fjern en kommentar',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Kommentaren kunne ikke fjernes.',
'Do you really want to remove this comment?' => 'Vil du virkelig fjerne denne kommentar?',
'Only administrators or the creator of the comment can access to this page.' => 'Kun administratore eller brugeren, som har oprettet kommentaren har adgang til denne side.',
- 'Details' => 'Detaljer',
'Current password for the user "%s"' => 'Aktuelle adgangskode for brugeren "%s"',
'The current password is required' => 'Den aktuelle adgangskode er krævet',
'Wrong password' => 'Forkert adgangskode',
- 'Reset all tokens' => 'Nulstil alle tokens',
- 'All tokens have been regenerated.' => 'Alle tokens er blevet regenereret.',
'Unknown' => 'Ukendt',
'Last logins' => 'Sidste login',
'Login date' => 'Login dato',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Fjern forbindelsen til min Google-konto',
'Login with my Google Account' => 'Login med min Google-konto',
'Project not found.' => 'Projekt ikke fundet.',
- 'Task #%d' => 'Opgave %d',
'Task removed successfully.' => 'Opgaven er fjernet.',
'Unable to remove this task.' => 'Opgaven kunne ikke fjernes.',
'Remove a task' => 'Fjern en opgave',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Kategorien kunne ikke fjernes.',
'Category modification for the project "%s"' => 'Forandring af kategori for projektet "%s"',
'Category Name' => 'Kategorinavn',
- 'Categories for the project "%s"' => 'Kategorier i projektet "%s"',
'Add a new category' => 'Tilfæj en ny kategori',
'Do you really want to remove this category: "%s"?' => 'Vil du virkelig fjerne denne kategori: "%s"?',
'Filter by category' => 'Filter efter kategori',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Ændringsdato',
'Completion date' => 'Afslutningsdato',
'Clone' => 'Kopier',
- 'Clone Project' => 'Kopier projekt',
'Project cloned successfully.' => 'Projektet er kopieret.',
'Unable to clone this project.' => 'Projektet kunne ikke kopieres',
'Email notifications' => 'Email notifikationer',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Ny vedhæftning tilføjet "%s"',
'Comment updated' => 'Kommentar opdateret',
'New comment posted by %s' => 'Ny kommentar af %s',
- 'List of due tasks for the project "%s"' => 'Udestående opgaver for projektet "%s"',
// 'New attachment' => '',
// 'New comment' => '',
// 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '',
// 'Task closed' => '',
// 'Task opened' => '',
- '[%s][Due tasks]' => '[%s][Udestående opgaver]',
- '[Kanboard] Notification' => '[Kanboard] Notifikation',
'I want to receive notifications only for those projects:' => 'Jeg vil kun have notifikationer for disse projekter:',
'view the task on Kanboard' => 'se opgaven på Kanboard',
'Public access' => 'Offentlig adgang',
- 'Category management' => 'Kategorier',
'User management' => 'Brugerstyring',
'Active tasks' => 'Aktive opgaver',
'Disable public access' => 'Deaktiver offentlig adgang',
'Enable public access' => 'Aktivér offentlig adgang',
- 'Active projects' => 'Aktive Projekter',
- 'Inactive projects' => 'Inaktive projekter',
'Public access disabled' => 'Offentlig adgang deaktiveret',
'Do you really want to disable this project: "%s"?' => 'Vil du virkelig deaktivere dette projekt: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Vil du virkelig kopiere dette projekt: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Vil du virkelig aktiverer dette projekt: "%s"?',
'Project activation' => 'Projekt aktivering',
'Move the task to another project' => 'Flyt opgaven til et andet projekt',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Opgaven ansvarlig ændring',
'%s change the assignee of the task #%d to %s' => '%s skrift ansvarlig for opgaven #%d til %s',
'%s changed the assignee of the task %s to %s' => '%s skift ansvarlig for opgaven %s til %s',
- // 'Column Change' => '',
- // 'Position Change' => '',
- // 'Assignee Change' => '',
'New password for the user "%s"' => 'Ny adgangskode for brugeren "%s"',
'Choose an event' => 'Vælg et event',
'Github commit received' => 'Github commit modtaget',
@@ -553,12 +508,10 @@ return array(
// 'Everybody have access to this project.' => '',
// 'Webhooks' => '',
// 'API' => '',
- // 'Integration' => '',
// 'Github webhooks' => '',
// 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '',
- // 'Configure' => '',
// 'Project management' => '',
// 'My projects' => '',
// 'Columns' => '',
@@ -576,7 +529,6 @@ return array(
// 'User repartition for "%s"' => '',
// 'Clone this project' => '',
// 'Column removed successfully.' => '',
- // 'Edit Project' => '',
// 'Github Issue' => '',
// 'Not enough data to show the graph.' => '',
// 'Previous' => '',
@@ -657,7 +609,6 @@ return array(
// 'All swimlanes' => '',
// 'All colors' => '',
// 'All status' => '',
- // 'Add a comment logging moving the task between columns' => '',
// 'Moved to column %s' => '',
// 'Change description' => '',
// 'User dashboard' => '',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/de_DE/translations.php b/app/Locale/de_DE/translations.php
index e221f1e2..7d28b219 100644
--- a/app/Locale/de_DE/translations.php
+++ b/app/Locale/de_DE/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Kein Benutzer',
'Forbidden' => 'Verboten',
'Access Forbidden' => 'Zugriff verboten',
- 'Only administrators can access to this page.' => 'Nur Administratoren haben Zugriff zu dieser Seite.',
'Edit user' => 'Benutzer bearbeiten',
'Logout' => 'Abmelden',
'Bad username or password' => 'Falscher Benutzername oder Passwort',
- 'users' => 'Benutzer',
- 'projects' => 'Projekte',
'Edit project' => 'Projekt bearbeiten',
'Name' => 'Name',
- 'Activated' => 'Aktiviert',
'Projects' => 'Projekte',
'No project' => 'Keine Projekte',
'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Aktionen',
'Inactive' => 'Inaktiv',
'Active' => 'Aktiv',
- 'Column %d' => 'Spalte %d',
'Add this column' => 'Diese Spalte hinzufügen',
'%d tasks on the board' => '%d Aufgaben auf dieser Pinnwand',
'%d tasks in total' => '%d Aufgaben insgesamt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Neues Projekt',
'Do you really want to remove this project: "%s"?' => 'Soll dieses Projekt wirklich gelöscht werden: "%s"?',
'Remove project' => 'Projekt löschen',
- 'Boards' => 'Pinnwände',
'Edit the board for "%s"' => 'Pinnwand für "%s" bearbeiten',
'All projects' => 'Alle Projekte',
'Change columns' => 'Spalten ändern',
'Add a new column' => 'Neue Spalte hinzufügen',
'Title' => 'Titel',
- 'Add Column' => 'Neue Spalte',
- 'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nicht zugeordnet',
'Assigned to %s' => 'Zuständig: %s',
'Remove a column' => 'Spalte löschen',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Sprache',
'Webhook token:' => 'Webhook Token:',
'API token:' => 'API Token:',
- 'More information' => 'Mehr Informationen',
'Database size:' => 'Datenbankgröße:',
'Download the database' => 'Datenbank herunterladen',
'Optimize the database' => 'Datenbank optimieren',
'(VACUUM command)' => '(VACUUM Befehl)',
'(Gzip compressed Sqlite file)' => '(Gzip-komprimierte Sqlite Datei)',
- 'User settings' => 'Benutzereinstellungen',
- 'My default project:' => 'Standardprojekt:',
'Close a task' => 'Aufgabe abschließen',
- 'Do you really want to close this task: "%s"?' => 'Soll diese Aufgabe wirklich geschlossen werden: "%s"?',
'Edit a task' => 'Aufgabe bearbeiten',
'Column' => 'Spalte',
'Color' => 'Farbe',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Das Passwort wird benötigt',
'This value must be an integer' => 'Dieser Wert muss eine ganze Zahl sein',
'The username must be unique' => 'Der Benutzername muss eindeutig sein',
- 'The username must be alphanumeric' => 'Der Benutzername muss alphanumerisch sein',
'The user id is required' => 'Die Benutzer ID ist anzugeben',
'Passwords don\'t match' => 'Passwörter nicht gleich',
'The confirmation is required' => 'Die Bestätigung ist erforderlich',
- 'The column is required' => 'Die Spalte ist anzugeben',
'The project is required' => 'Das Projekt ist anzugeben',
- 'The color is required' => 'Die Farbe ist anzugeben',
'The id is required' => 'Die ID ist anzugeben',
'The project id is required' => 'Die Projekt ID ist anzugeben',
'The project name is required' => 'Der Projektname ist anzugeben',
'This project must be unique' => 'Der Projektname muss eindeutig sein',
'The title is required' => 'Der Titel ist anzugeben',
- 'The language is required' => 'Die Sprache ist anzugeben',
'There is no active project, the first step is to create a new project.' => 'Es gibt kein aktives Projekt. Zunächst muss ein Projekt erstellt werden.',
'Settings saved successfully.' => 'Einstellungen erfolgreich gespeichert.',
'Unable to save your settings.' => 'Speichern der Einstellungen nicht möglich.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Erstellt am',
'Date completed' => 'Abgeschlossen am',
'Id' => 'ID',
- 'No task' => 'Keine Aufgabe',
'Completed tasks' => 'Abgeschlossene Aufgaben',
- 'List of projects' => 'Liste der Projekte',
'Completed tasks for "%s"' => 'Abgeschlossene Aufgaben für "%s"',
'%d closed tasks' => '%d abgeschlossene Aufgaben',
'No task for this project' => 'Keine Aufgaben in diesem Projekt',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Diese Information wurde in der Datenbank nicht gefunden!',
'Page not found' => 'Seite nicht gefunden',
'Complexity' => 'Komplexität',
- 'limit' => 'Limit',
'Task limit' => 'Maximale Anzahl von Aufgaben',
'Task count' => 'Aufgabenanzahl',
- 'This value must be greater than %d' => 'Dieser Wert muss größer sein als %d',
'Edit project access list' => 'Zugriffsberechtigungen des Projektes bearbeiten',
- 'Edit users access' => 'Benutzerzugriff ändern',
'Allow this user' => 'Diesen Benutzer autorisieren',
- 'Only those users have access to this project:' => 'Nur diese Benutzer haben Zugriff zum Projekt:',
'Don\'t forget that administrators have access to everything.' => 'Nicht vergessen: Administratoren haben überall Zugriff.',
'Revoke' => 'Entfernen',
'List of authorized users' => 'Liste der autorisierten Benutzer',
'User' => 'Benutzer',
'Nobody have access to this project.' => 'Niemand hat Zugriff auf dieses Projekt.',
- 'You are not allowed to access to this project.' => 'Unzureichende Zugriffsrechte zu diesem Projekt.',
'Comments' => 'Kommentare',
- 'Post comment' => 'Kommentieren',
'Write your text in Markdown' => 'Schreibe deinen Text in Markdown-Syntax',
'Leave a comment' => 'Kommentar eingeben',
'Comment is required' => 'Ein Kommentar wird benötigt',
'Leave a description' => 'Beschreibung eingeben',
'Comment added successfully.' => 'Kommentar erfolgreich hinzugefügt.',
'Unable to create your comment.' => 'Hinzufügen eines Kommentars nicht möglich.',
- 'The description is required' => 'Eine Beschreibung wird benötigt',
'Edit this task' => 'Aufgabe bearbeiten',
'Due Date' => 'Fällig am',
'Invalid date' => 'Ungültiges Datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Aktion speichern',
'Do you really want to remove this action: "%s"?' => 'Soll diese Aktion wirklich gelöscht werden: "%s"?',
'Remove an automatic action' => 'Löschen einer automatischen Aktion',
- 'Close the task' => 'Aufgabe abschließen',
'Assign the task to a specific user' => 'Aufgabe einem Benutzer zuordnen',
'Assign the task to the person who does the action' => 'Aufgabe dem Benutzer zuordnen, der die Aktion ausgeführt hat',
'Duplicate the task to another project' => 'Aufgabe in ein anderes Projekt kopieren',
'Move a task to another column' => 'Aufgabe in andere Spalte verschieben',
- 'Move a task to another position in the same column' => 'Aufgabe an andere Position in der gleichen Spalte verschieben',
'Task modification' => 'Aufgabe ändern',
'Task creation' => 'Aufgabe erstellen',
- 'Open a closed task' => 'Abgeschlossene Aufgabe wieder eröffnen',
'Closing a task' => 'Aufgabe abschließen',
'Assign a color to a specific user' => 'Einem Benutzer eine Farbe zuordnen',
'Column title' => 'Spaltentitel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'In ein anderes Projekt duplizieren',
'Duplicate' => 'Duplizieren',
'link' => 'Link',
- 'Update this comment' => 'Kommentar aktualisieren',
'Comment updated successfully.' => 'Kommentar erfolgreich aktualisiert.',
'Unable to update your comment.' => 'Aktualisierung des Kommentars nicht möglich.',
'Remove a comment' => 'Kommentar löschen',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Löschen des Kommentars nicht möglich.',
'Do you really want to remove this comment?' => 'Soll dieser Kommentar wirklich gelöscht werden?',
'Only administrators or the creator of the comment can access to this page.' => 'Nur Administratoren und der Ersteller des Kommentars haben Zugriff auf diese Seite.',
- 'Details' => 'Details',
'Current password for the user "%s"' => 'Aktuelles Passwort des Benutzers "%s"',
'The current password is required' => 'Das aktuelle Passwort wird benötigt',
'Wrong password' => 'Falsches Passwort',
- 'Reset all tokens' => 'Alle Tokens zurücksetzen',
- 'All tokens have been regenerated.' => 'Alle Tokens wurden zurückgesetzt.',
'Unknown' => 'Unbekannt',
'Last logins' => 'Letzte Anmeldungen',
'Login date' => 'Anmeldedatum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Verbindung mit meinem Google Account trennen',
'Login with my Google Account' => 'Anmelden mit meinem Google Account',
'Project not found.' => 'Das Projekt wurde nicht gefunden.',
- 'Task #%d' => 'Aufgabe Nr. %d',
'Task removed successfully.' => 'Aufgabe erfolgreich gelöscht.',
'Unable to remove this task.' => 'Löschen der Aufgabe nicht möglich.',
'Remove a task' => 'Aufgabe löschen',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Löschen der Kategorie nicht möglich.',
'Category modification for the project "%s"' => 'Kategorie für das Projekt "%s" bearbeiten',
'Category Name' => 'Kategoriename',
- 'Categories for the project "%s"' => 'Kategorien des Projektes "%s"',
'Add a new category' => 'Neue Kategorie',
'Do you really want to remove this category: "%s"?' => 'Soll diese Kategorie wirklich gelöscht werden: "%s"?',
'Filter by category' => 'Kategorie filtern',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Änderungsdatum',
'Completion date' => 'Abschlussdatum',
'Clone' => 'duplizieren',
- 'Clone Project' => 'Projekt duplizieren',
'Project cloned successfully.' => 'Projekt wurde dupliziert.',
'Unable to clone this project.' => 'Duplizieren dieses Projekts schlug fehl.',
'Email notifications' => 'E-Mail Benachrichtigungen',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Neuer Anhang "%s" wurde hinzugefügt.',
'Comment updated' => 'Kommentar wurde aktualisiert',
'New comment posted by %s' => 'Neuer Kommentar verfasst durch %s',
- 'List of due tasks for the project "%s"' => 'Liste der fälligen Aufgaben für das Projekt "%s"',
'New attachment' => 'Neuer Anhang',
'New comment' => 'Neuer Kommentar',
'New subtask' => 'Neue Teilaufgabe',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Aufgabe aktualisiert',
'Task closed' => 'Aufgabe geschlossen',
'Task opened' => 'Aufgabe geöffnet',
- '[%s][Due tasks]' => '[%s][Fällige Aufgaben]',
- '[Kanboard] Notification' => '[Kanboard] Benachrichtigung',
'I want to receive notifications only for those projects:' => 'Ich möchte nur für diese Projekte Benachrichtigungen erhalten:',
'view the task on Kanboard' => 'diese Aufgabe auf dem Kanboard zeigen',
'Public access' => 'Öffentlicher Zugriff',
- 'Category management' => 'Kategorien verwalten',
'User management' => 'Benutzer verwalten',
'Active tasks' => 'Aktive Aufgaben',
'Disable public access' => 'Öffentlichen Zugriff deaktivieren',
'Enable public access' => 'Öffentlichen Zugriff aktivieren',
- 'Active projects' => 'Aktive Projekte',
- 'Inactive projects' => 'Inaktive Projekte',
'Public access disabled' => 'Öffentlicher Zugriff deaktiviert',
'Do you really want to disable this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich deaktivieren: "%s"',
- 'Do you really want to duplicate this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich duplizieren: "%s"',
'Do you really want to enable this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich aktivieren: "%s"',
'Project activation' => 'Projektaktivierung',
'Move the task to another project' => 'Aufgabe in ein anderes Projekt verschieben',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Zuständigkeit geändert',
'%s change the assignee of the task #%d to %s' => '%s hat die Zusständigkeit der Aufgabe #%d geändert um %s',
'%s changed the assignee of the task %s to %s' => '%s hat die Zuständigkeit der Aufgabe %s geändert um %s',
- 'Column Change' => 'Spalte ändern',
- 'Position Change' => 'Position ändern',
- 'Assignee Change' => 'Zuordnung ändern',
'New password for the user "%s"' => 'Neues Passwort des Benutzers "%s"',
'Choose an event' => 'Aktion wählen',
'Github commit received' => 'Github commit empfangen',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Jeder hat Zugriff zu diesem Projekt',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Integration',
'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Hilfe für Github Webhooks',
'Create a comment from an external provider' => 'Kommentar eines externen Providers hinzufügen',
'Github issue comment created' => 'Github Fehler Kommentar hinzugefügt',
- 'Configure' => 'Einstellungen',
'Project management' => 'Projektmanagement',
'My projects' => 'Meine Projekte',
'Columns' => 'Spalten',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Benutzerverteilung für "%s"',
'Clone this project' => 'Projekt kopieren',
'Column removed successfully.' => 'Spalte erfolgreich entfernt.',
- 'Edit Project' => 'Projekt bearbeiten',
'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Nicht genügend Daten, um die Grafik zu zeigen.',
'Previous' => 'Vorherige',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alle Swimlanes',
'All colors' => 'Alle Farben',
'All status' => 'Alle Status',
- 'Add a comment logging moving the task between columns' => 'Kommentar hinzufügen wenn die Aufgabe verschoben wird',
'Moved to column %s' => 'In Spalte %s verschoben',
'Change description' => 'Beschreibung ändern',
'User dashboard' => 'Benutzer Dashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/es_ES/translations.php b/app/Locale/es_ES/translations.php
index d751bf48..a169abfa 100644
--- a/app/Locale/es_ES/translations.php
+++ b/app/Locale/es_ES/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Ningún usuario',
'Forbidden' => 'Acceso denegado',
'Access Forbidden' => 'Acceso denegado',
- 'Only administrators can access to this page.' => 'Solo los administradores pueden acceder a esta página.',
'Edit user' => 'Editar un usuario',
'Logout' => 'Salir',
'Bad username or password' => 'Usuario o contraseña incorecto',
- 'users' => 'usuarios',
- 'projects' => 'proyectos',
'Edit project' => 'Editar el proyecto',
'Name' => 'Nombre',
- 'Activated' => 'Activado',
'Projects' => 'Proyectos',
'No project' => 'Ningún proyecto',
'Project' => 'Proyecto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Acciones',
'Inactive' => 'Inactivo',
'Active' => 'Activo',
- 'Column %d' => 'Columna %d',
'Add this column' => 'Añadir esta columna',
'%d tasks on the board' => '%d tareas en el tablero',
'%d tasks in total' => '%d tareas en total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nuevo proyecto',
'Do you really want to remove this project: "%s"?' => '¿De verdad que deseas eliminar este proyecto: « %s » ?',
'Remove project' => 'Suprimir el proyecto',
- 'Boards' => 'Tableros',
'Edit the board for "%s"' => 'Modificar el tablero para « %s »',
'All projects' => 'Todos los proyectos',
'Change columns' => 'Cambiar las columnas',
'Add a new column' => 'Añadir una nueva columna',
'Title' => 'Titulo',
- 'Add Column' => 'Nueva columna',
- 'Project "%s"' => 'Proyecto « %s »',
'Nobody assigned' => 'Nadie asignado',
'Assigned to %s' => 'Asignada a %s',
'Remove a column' => 'Suprimir esta columna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Idioma',
'Webhook token:' => 'Ficha de seguridad (token) para los disparadores Web (webhooks):',
'API token:' => 'Ficha de seguridad (token) para API:',
- 'More information' => 'Más informaciones',
'Database size:' => 'Tamaño de la base de datos:',
'Download the database' => 'Descargar la base de datos',
'Optimize the database' => 'Optimizar la base de datos',
'(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(Archivo Sqlite comprimido en Gzip)',
- 'User settings' => 'Parámetros de usuario',
- 'My default project:' => 'Mi proyecto por defecto: ',
'Close a task' => 'Cerrar una tarea',
- 'Do you really want to close this task: "%s"?' => '¿Realmente desea cerrar esta tarea: « %s » ?',
'Edit a task' => 'Editar una tarea',
'Column' => 'Columna',
'Color' => 'Color',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'La contraseña es obligatoria',
'This value must be an integer' => 'Este valor debe ser un entero',
'The username must be unique' => 'El nombre de usuario debe ser único',
- 'The username must be alphanumeric' => 'El nombre de usuario debe ser alfanumérico',
'The user id is required' => 'El identificador del usuario es obligatorio',
'Passwords don\'t match' => 'Las contraseñas no coinciden',
'The confirmation is required' => 'La confirmación es obligatoria',
- 'The column is required' => 'La columna es obligatoria',
'The project is required' => 'El proyecto es obligatorio',
- 'The color is required' => 'El color es obligatorio',
'The id is required' => 'El identificador es obligatorio',
'The project id is required' => 'El identificador del proyecto es obligatorio',
'The project name is required' => 'El nombre del proyecto es obligatorio',
'This project must be unique' => 'El nombre del proyecto debe ser único',
'The title is required' => 'El titulo es obligatorio',
- 'The language is required' => 'El idioma es obligatorio',
'There is no active project, the first step is to create a new project.' => 'No hay proyectos activados, la primera etapa consiste en crear un nuevo proyecto.',
'Settings saved successfully.' => 'Parámetros guardados correctamente.',
'Unable to save your settings.' => 'No se pueden guardar sus parámetros.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Fecha de creación',
'Date completed' => 'Fecha de terminación',
'Id' => 'Identificador',
- 'No task' => 'Ninguna tarea',
'Completed tasks' => 'Tareas completadas',
- 'List of projects' => 'Lista de los proyectos',
'Completed tasks for "%s"' => 'Tareas completadas por « %s »',
'%d closed tasks' => '%d tareas completadas',
'No task for this project' => 'Ninguna tarea para este proyecto',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Lo siento no he encontrado información en la base de datos!',
'Page not found' => 'Página no encontrada',
'Complexity' => 'Complejidad',
- 'limit' => 'límite',
'Task limit' => 'Número máximo de tareas',
'Task count' => 'Contador de tareas',
- 'This value must be greater than %d' => 'Este valor no debe de ser más grande que %d',
'Edit project access list' => 'Editar los permisos del proyecto',
- 'Edit users access' => 'Editar los permisos de usuario',
'Allow this user' => 'Autorizar este usuario',
- 'Only those users have access to this project:' => 'Solo estos usuarios tienen acceso a este proyecto:',
'Don\'t forget that administrators have access to everything.' => 'No olvide que los administradores tienen acceso a todo.',
'Revoke' => 'Revocar',
'List of authorized users' => 'Lista de los usuarios autorizados',
'User' => 'Usuario',
'Nobody have access to this project.' => 'Nadie tiene acceso a este proyecto',
- 'You are not allowed to access to this project.' => 'No está autorizado a acceder a este proyecto.',
'Comments' => 'Comentarios',
- 'Post comment' => 'Commentar',
'Write your text in Markdown' => 'Redacta el texto en Markdown',
'Leave a comment' => 'Dejar un comentario',
'Comment is required' => 'El comentario es obligatorio',
'Leave a description' => 'Dejar una descripción',
'Comment added successfully.' => 'El comentario ha sido añadido correctamente.',
'Unable to create your comment.' => 'No se puede crear este comentario.',
- 'The description is required' => 'La descripción es obligatoria',
'Edit this task' => 'Editar esta tarea',
'Due Date' => 'Fecha límite',
'Invalid date' => 'Fecha no válida',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Guardar esta acción',
'Do you really want to remove this action: "%s"?' => '¿Realmente desea suprimir esta acción « %s » ?',
'Remove an automatic action' => 'Suprimir una acción automatizada',
- 'Close the task' => 'Cerrar esta tarea',
'Assign the task to a specific user' => 'Asignar una tarea a un usuario especifico',
'Assign the task to the person who does the action' => 'Asignar la tarea al usuario que hace la acción',
'Duplicate the task to another project' => 'Duplicar la tarea a otro proyecto',
'Move a task to another column' => 'Mover una tarea a otra columna',
- 'Move a task to another position in the same column' => 'Mover una tarea a otra posición en la misma columna',
'Task modification' => 'Modificación de una tarea',
'Task creation' => 'Creación de una tarea',
- 'Open a closed task' => 'Abrir una tarea cerrada',
'Closing a task' => 'Cerrar una tarea',
'Assign a color to a specific user' => 'Asignar un color a un usuario específico',
'Column title' => 'Título de la columna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicar a otro proyecto',
'Duplicate' => 'Duplicar',
'link' => 'vinculación',
- 'Update this comment' => 'Actualizar este comentario',
'Comment updated successfully.' => 'El comentario ha sido actualizado correctamente.',
'Unable to update your comment.' => 'No se puede actualizar este comentario.',
'Remove a comment' => 'Suprimir un comentario',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'No se puede suprimir este comentario.',
'Do you really want to remove this comment?' => '¿Desea suprimir este comentario?',
'Only administrators or the creator of the comment can access to this page.' => 'Sólo los administradores o el autor del comentario tienen acceso a esta página.',
- 'Details' => 'Detalles',
'Current password for the user "%s"' => 'Contraseña actual para el usuario: « %s »',
'The current password is required' => 'La contraseña es obligatoria',
'Wrong password' => 'contraseña incorrecta',
- 'Reset all tokens' => 'Reiniciar las fichas (tokens) de seguridad ',
- 'All tokens have been regenerated.' => 'Todas las fichas (tokens) han sido regeneradas.',
'Unknown' => 'Desconocido',
'Last logins' => 'Últimos ingresos',
'Login date' => 'Fecha de ingreso',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Desvincular de mi Cuenta en Google',
'Login with my Google Account' => 'Ingresar con mi Cuenta en Google',
'Project not found.' => 'Proyecto no hallado.',
- 'Task #%d' => 'Tarea número %d',
'Task removed successfully.' => 'Tarea suprimida correctamente.',
'Unable to remove this task.' => 'No pude suprimir esta tarea.',
'Remove a task' => 'Borrar una tarea',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'No pude suprimir esta categoría.',
'Category modification for the project "%s"' => 'Modificación de categoría pra el proyecto "%s"',
'Category Name' => 'Nombre de Categoría',
- 'Categories for the project "%s"' => 'Categorías para el proyecto "%s"',
'Add a new category' => 'Añadir una nueva categoría',
'Do you really want to remove this category: "%s"?' => '¿De verdad que quieres suprimir esta categoría: "%s"?',
'Filter by category' => 'Filtrar mendiante categoría',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Fecha de modificación',
'Completion date' => 'Fecha de terminación',
'Clone' => 'Clonar',
- 'Clone Project' => 'Clonar proyecto',
'Project cloned successfully.' => 'Proyecto clonado correctamente',
'Unable to clone this project.' => 'Impsible clonar proyecto',
'Email notifications' => 'Notificaciones correo electrónico',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nuevo adjunto agregado "%s"',
'Comment updated' => 'Comentario actualizado',
'New comment posted by %s' => 'Nuevo comentario agregado por %s',
- 'List of due tasks for the project "%s"' => 'Lista de tareas para el proyecto "%s"',
'New attachment' => 'Nuevo adjunto',
'New comment' => 'Nuevo comentario',
'New subtask' => 'Nueva subtarea',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Tarea actualizada',
'Task closed' => 'Tarea cerrada',
'Task opened' => 'Tarea abierta',
- '[%s][Due tasks]' => '[%s][Tareas vencidas]',
- '[Kanboard] Notification' => '[Kanboard] Notificación',
'I want to receive notifications only for those projects:' => 'Quiero recibir notificaciones sólo de estos proyectos:',
'view the task on Kanboard' => 'ver la tarea en Kanboard',
'Public access' => 'Acceso público',
- 'Category management' => 'Gestión de Categorías',
'User management' => 'Gestión de Usuarios',
'Active tasks' => 'Tareas activas',
'Disable public access' => 'Desactivar acceso público',
'Enable public access' => 'Activar acceso público',
- 'Active projects' => 'Proyectos activos',
- 'Inactive projects' => 'Proyectos inactivos',
'Public access disabled' => 'Acceso público desactivado',
'Do you really want to disable this project: "%s"?' => '¿Realmente deseas desactivar este proyecto: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => '¿Realmente deseas duplicar este proyecto: "%s"?',
'Do you really want to enable this project: "%s"?' => '¿Realmente deseas activar este proyecto: "%s"?',
'Project activation' => 'Activación de Proyecto',
'Move the task to another project' => 'Mover la tarea a otro proyecto',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Cambiar persona asignada a la tarea',
'%s change the assignee of the task #%d to %s' => '%s cambió el asignado de la tarea #%d por %s',
'%s changed the assignee of the task %s to %s' => '%s cambió el asignado de la tarea %s por %s',
- 'Column Change' => 'Cambio de Columna',
- 'Position Change' => 'Cambio de Posición',
- 'Assignee Change' => 'Cambio de Asignado',
'New password for the user "%s"' => 'Nueva contraseña para el usuario "%s"',
'Choose an event' => 'Escoga un evento',
'Github commit received' => 'Envío a Github recibido',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Cualquier tiene acceso a este proyecto',
'Webhooks' => 'Disparadores Web (Webhooks)',
'API' => 'API',
- 'Integration' => 'Integración',
'Github webhooks' => 'Disparadores Web (Webhooks) de Github',
'Help on Github webhooks' => 'Ayuda con los Disparadores Web (Webhook) de Github',
'Create a comment from an external provider' => 'Crear un comentario a partir de un proveedor externo',
'Github issue comment created' => 'Creado el comentario del problema en Github',
- 'Configure' => 'Configurar',
'Project management' => 'Administración del proyecto',
'My projects' => 'Mis proyectos',
'Columns' => 'Columnas',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Repartición para "%s"',
'Clone this project' => 'Clonar este proyecto',
'Column removed successfully.' => 'Columna removida correctamente',
- 'Edit Project' => 'Editar Proyecto',
'Github Issue' => 'Problema Github',
'Not enough data to show the graph.' => 'No hay suficiente información para mostrar el gráfico',
'Previous' => 'Anterior',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Todos los carriles',
'All colors' => 'Todos los colores',
'All status' => 'Todos los estados',
- 'Add a comment logging moving the task between columns' => 'Añadir un cometario de historial moviendo la tarea entre columnas',
'Moved to column %s' => 'Movido a columna %s',
'Change description' => 'Cambiar descripción',
'User dashboard' => 'Tablero de usuario',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
'Unable to update this user.' => 'Imposible actualizar este usuario.',
'There is no user management for private projects.' => 'No hay gestión de usuarios para proyectos privados.',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/fi_FI/translations.php b/app/Locale/fi_FI/translations.php
index 2d1edbc7..00514ab1 100644
--- a/app/Locale/fi_FI/translations.php
+++ b/app/Locale/fi_FI/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Ei käyttäjää',
'Forbidden' => 'Estetty',
'Access Forbidden' => 'Pääsy estetty',
- 'Only administrators can access to this page.' => 'Vain ylläpitäjillä on pääsy tälle sivulle.',
'Edit user' => 'Muokkaa käyttäjää',
'Logout' => 'Kirjaudu ulos',
'Bad username or password' => 'Väärä käyttäjätunnus tai salasana',
- 'users' => 'käyttäjät',
- 'projects' => 'projektit',
'Edit project' => 'Muokkaa projektia',
'Name' => 'Nimi',
- 'Activated' => 'Aktivoitu',
'Projects' => 'Projektit',
'No project' => 'Ei projektia',
'Project' => 'Projekti',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Toiminnot',
'Inactive' => 'Ei aktiivinen',
'Active' => 'Aktiivinen',
- 'Column %d' => 'Sarake %d',
'Add this column' => 'Lisää tämä sarake',
'%d tasks on the board' => '%d tehtävää taululla',
'%d tasks in total' => '%d tehtävää yhteensä',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Uusi projekti',
'Do you really want to remove this project: "%s"?' => 'Haluatko varmasti poistaa projektin: "%s"?',
'Remove project' => 'Poista projekti',
- 'Boards' => 'Taulut',
'Edit the board for "%s"' => 'Muokkaa taulua projektille "%s"',
'All projects' => 'Kaikki projektit',
'Change columns' => 'Muokkaa sarakkeita',
'Add a new column' => 'Lisää uusi sarake',
'Title' => 'Nimi',
- 'Add Column' => 'Lisää sarake',
- 'Project "%s"' => 'Projekti "%s"',
'Nobody assigned' => 'Ei suorittajaa',
'Assigned to %s' => 'Tekijä: %s',
'Remove a column' => 'Poista sarake',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Kieli',
'Webhook token:' => 'Webhooks avain:',
// 'API token:' => '',
- 'More information' => 'Lisätietoja',
'Database size:' => 'Tietokannan koko:',
'Download the database' => 'Lataa tietokanta',
'Optimize the database' => 'Optimoi tietokanta',
'(VACUUM command)' => '(VACUUM-komento)',
'(Gzip compressed Sqlite file)' => '(Gzip-pakattu Sqlite-tiedosto)',
- 'User settings' => 'Käyttäjän asetukset',
- 'My default project:' => 'Oletusprojektini: ',
'Close a task' => 'Sulje tehtävä',
- 'Do you really want to close this task: "%s"?' => 'Haluatko varmasti sulkea tehtävän: "%s"?',
'Edit a task' => 'Muokkaa tehtävää',
'Column' => 'Sarake',
'Color' => 'Väri',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Salasana vaaditaan',
'This value must be an integer' => 'Tämän arvon täytyy olla numero',
'The username must be unique' => 'Käyttäjänimi täytyy olla uniikki',
- 'The username must be alphanumeric' => 'Käyttäjänimen täytyy olla alfanumeerinen',
'The user id is required' => 'Käyttäjän id on pakollinen',
// 'Passwords don\'t match' => '',
'The confirmation is required' => 'Varmistus vaaditaan',
- 'The column is required' => 'Sarake on pakollinen',
'The project is required' => 'Projekti on pakollinen',
- 'The color is required' => 'Väri on pakollinen',
'The id is required' => 'ID vaaditaan',
'The project id is required' => 'Projektin ID on pakollinen',
'The project name is required' => 'Projektin nimi on pakollinen',
'This project must be unique' => 'Projektin nimi täytyy olla uniikki',
'The title is required' => 'Otsikko vaaditaan',
- 'The language is required' => 'Kieli on pakollinen',
'There is no active project, the first step is to create a new project.' => 'Aktiivista projektia ei ole, ensimmäinen vaihe on luoda uusi projekti.',
'Settings saved successfully.' => 'Asetukset tallennettu onnistuneesti.',
'Unable to save your settings.' => 'Asetusten tallentaminen epäonnistui.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Luomispäivä',
'Date completed' => 'Valmistumispäivä',
'Id' => 'Id',
- 'No task' => 'Ei tehtävää',
'Completed tasks' => 'Valmiit tehtävät',
- 'List of projects' => 'Projektit',
'Completed tasks for "%s"' => 'Suoritetut tehtävät projektille %s',
'%d closed tasks' => '%d suljettua tehtävää',
'No task for this project' => 'Ei tehtävää tälle projektille',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Anteeksi, en löytänyt tätä tietoa tietokannastani',
'Page not found' => 'Sivua ei löydy',
'Complexity' => 'Monimutkaisuus',
- 'limit' => 'raja',
'Task limit' => 'Tehtävien maksimimäärä',
'Task count' => 'Tehtävien määrä',
- 'This value must be greater than %d' => 'Arvon täytyy olla suurempi kuin %d',
'Edit project access list' => 'Muuta projektin käyttäjiä',
- 'Edit users access' => 'Muuta käyttäjien pääsyä',
'Allow this user' => 'Salli tämä projekti',
- 'Only those users have access to this project:' => 'Vain näillä käyttäjillä on pääsy projektiin:',
'Don\'t forget that administrators have access to everything.' => 'Muista että ylläpitäjät pääsevät kaikkialle.',
'Revoke' => 'Poista',
'List of authorized users' => 'Sallittujen käyttäjien lista',
'User' => 'Käyttäjät',
// 'Nobody have access to this project.' => '',
- 'You are not allowed to access to this project.' => 'Sinulla ei ole pääsyä tähän projektiin.',
'Comments' => 'Kommentit',
- 'Post comment' => 'Lisää kommentti',
'Write your text in Markdown' => 'Kirjoita kommenttisi Markdownilla',
'Leave a comment' => 'Lisää kommentti',
'Comment is required' => 'Kommentti vaaditaan',
'Leave a description' => 'Lisää kuvaus',
'Comment added successfully.' => 'Kommentti lisättiin onnistuneesti.',
'Unable to create your comment.' => 'Kommentin lisäys epäonnistui.',
- 'The description is required' => 'Kuvaus vaaditaan',
'Edit this task' => 'Muokkaa tehtävää',
'Due Date' => 'Deadline',
'Invalid date' => 'Virheellinen päiväys',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Tallenna toiminto',
'Do you really want to remove this action: "%s"?' => 'Oletko varma että haluat poistaa toiminnon "%s"?',
'Remove an automatic action' => 'Poista automaattintn toiminto',
- 'Close the task' => 'Sulje tehtävä',
'Assign the task to a specific user' => 'Osoita tehtävä käyttäjälle',
'Assign the task to the person who does the action' => 'Määritä suorittaja tehtävälle',
'Duplicate the task to another project' => 'Monista tehtävä toiselle projektille',
'Move a task to another column' => 'Siirrä tehtävä toiseen sarakkeeseen',
- 'Move a task to another position in the same column' => 'Siirrä tehtävä eri järjestykseen samassa sarakkeessa',
'Task modification' => 'Tehtävän muokkaus',
'Task creation' => 'Tehtävän luominen',
- 'Open a closed task' => 'Avaa jo suljettu tehtävä',
'Closing a task' => 'Tehtävää suljetaan',
'Assign a color to a specific user' => 'Valitse väri käyttäjälle',
'Column title' => 'Sarakkeen nimi',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopioi toiseen projektiin',
'Duplicate' => 'Monista',
'link' => 'linkki',
- 'Update this comment' => 'Muuta projektia',
'Comment updated successfully.' => 'Kommentti päivitettiin onnistuneesti.',
'Unable to update your comment.' => 'Kommentin päivitys epäonnistui.',
'Remove a comment' => 'Poista kommentti',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Kommentin poistaminen epäonnistui.',
'Do you really want to remove this comment?' => 'Haluatko varmasti poistaa tämän kommentin?',
'Only administrators or the creator of the comment can access to this page.' => 'Vain ylläpitäjillä tai kommentin jättäjällä on pääsy tälle sivulle.',
- 'Details' => 'Tiedot',
'Current password for the user "%s"' => 'Käyttäjän "%s" salasana',
'The current password is required' => 'Salasana vaaditaan',
'Wrong password' => 'Väärä salasana',
- 'Reset all tokens' => 'Resetoi kaikki tokenit',
- 'All tokens have been regenerated.' => 'Kaikki tokenit luotiin uudelleen.',
'Unknown' => 'Tuntematon',
'Last logins' => 'Viimeisimmät kirjautumiset',
'Login date' => 'Kirjautumispäivä',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Poista Google-tilin linkitys',
'Login with my Google Account' => 'Kirjaudu Google tunnuksella',
'Project not found.' => 'Projektia ei löytynyt.',
- 'Task #%d' => 'Tehtävä #%d',
'Task removed successfully.' => 'Tehtävä poistettiin onnistuneesti.',
'Unable to remove this task.' => 'Tehtävän poistaminen epäonnistui.',
'Remove a task' => 'Poista tehtävä',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Kategorian poisto epäonnistui.',
'Category modification for the project "%s"' => 'Kategorian muutos projektissa "%s"',
'Category Name' => 'Kategorian nimi',
- 'Categories for the project "%s"' => 'Kategoriat projektille "%s"',
'Add a new category' => 'Lisää uusi kategoria',
'Do you really want to remove this category: "%s"?' => 'Haluatko varmasti poistaa kategorian: "%s"?',
'Filter by category' => 'Rajaa kategorian mukaan',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Muokkauspäivä',
'Completion date' => 'Valmistumispäivä',
'Clone' => 'Kahdenna',
- 'Clone Project' => 'Kahdenna projekti',
'Project cloned successfully.' => 'Projekti kahdennettu onnistuneesti',
'Unable to clone this project.' => 'Projektin kahdennus epäonnistui',
'Email notifications' => 'Sähköposti-ilmoitukset',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Uusi liite lisätty "%s"',
'Comment updated' => 'Kommentti päivitetty',
'New comment posted by %s' => '%s lisäsi uuden kommentin',
- // 'List of due tasks for the project "%s"' => '',
// 'New attachment' => '',
// 'New comment' => '',
// 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '',
// 'Task closed' => '',
// 'Task opened' => '',
- // '[%s][Due tasks]' => '',
- // '[Kanboard] Notification' => '',
'I want to receive notifications only for those projects:' => 'Haluan vastaanottaa ilmoituksia ainoastaan näistä projekteista:',
'view the task on Kanboard' => 'katso tehtävää Kanboardissa',
'Public access' => 'Julkinen käyttöoikeus',
- 'Category management' => 'Kategorioiden hallinta',
'User management' => 'Käyttäjähallinta',
'Active tasks' => 'Aktiiviset tehtävät',
'Disable public access' => 'Poista käytöstä julkinen käyttöoikeus',
'Enable public access' => 'Ota käyttöön ',
- 'Active projects' => 'Aktiiviset projektit',
- 'Inactive projects' => 'Passiiviset projektit',
'Public access disabled' => 'Julkinen käyttöoikeus ei ole käytössä',
'Do you really want to disable this project: "%s"?' => 'Haluatko varmasti tehdä projektista "%s" passiivisen?',
- 'Do you really want to duplicate this project: "%s"?' => 'Haluatko varmasti kahdentaa projektin "%s"?',
'Do you really want to enable this project: "%s"?' => 'Haluatko varmasti aktivoida projektinen "%s"',
'Project activation' => 'Projektin aktivointi',
'Move the task to another project' => 'Siirrä tehtävä toiseen projektiin',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Tehtävän saajan vaihto',
'%s change the assignee of the task #%d to %s' => '%s vaihtoi tehtävän #%d saajaksi %s',
'%s changed the assignee of the task %s to %s' => '%s vaihtoi tehtävän %s saajaksi %s',
- // 'Column Change' => '',
- // 'Position Change' => '',
- // 'Assignee Change' => '',
'New password for the user "%s"' => 'Uusi salasana käyttäjälle "%s"',
'Choose an event' => 'Valitse toiminta',
'Github commit received' => 'Github-kommitti vastaanotettu',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Kaikilla on käyttöoikeus projektiin.',
// 'Webhooks' => '',
// 'API' => '',
- 'Integration' => 'Integraatio',
// 'Github webhooks' => '',
// 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '',
- 'Configure' => 'Konfiguroi',
'Project management' => 'Projektin hallinta',
'My projects' => 'Minun projektini',
'Columns' => 'Sarakkeet',
@@ -576,7 +529,6 @@ return array(
// 'User repartition for "%s"' => '',
'Clone this project' => 'Kahdenna projekti',
'Column removed successfully.' => 'Sarake poistettu onnstuneesti.',
- 'Edit Project' => 'Muokkaa projektia',
'Github Issue' => 'Github-issue',
'Not enough data to show the graph.' => 'Ei riittävästi dataa graafin näyttämiseksi.',
'Previous' => 'Edellinen',
@@ -657,7 +609,6 @@ return array(
// 'All swimlanes' => '',
// 'All colors' => '',
// 'All status' => '',
- // 'Add a comment logging moving the task between columns' => '',
// 'Moved to column %s' => '',
// 'Change description' => '',
// 'User dashboard' => '',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/fr_FR/translations.php b/app/Locale/fr_FR/translations.php
index f5c97759..4a792d07 100644
--- a/app/Locale/fr_FR/translations.php
+++ b/app/Locale/fr_FR/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Aucun utilisateur',
'Forbidden' => 'Accès interdit',
'Access Forbidden' => 'Accès interdit',
- 'Only administrators can access to this page.' => 'Uniquement les administrateurs peuvent accéder à cette page.',
'Edit user' => 'Modifier un utilisateur',
'Logout' => 'Déconnexion',
'Bad username or password' => 'Identifiant ou mot de passe incorrect',
- 'users' => 'utilisateurs',
- 'projects' => 'projets',
'Edit project' => 'Modifier le projet',
'Name' => 'Nom',
- 'Activated' => 'Actif',
'Projects' => 'Projets',
'No project' => 'Aucun projet',
'Project' => 'Projet',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Actions',
'Inactive' => 'Inactif',
'Active' => 'Actif',
- 'Column %d' => 'Colonne %d',
'Add this column' => 'Ajouter cette colonne',
'%d tasks on the board' => '%d tâches sur le tableau',
'%d tasks in total' => '%d tâches au total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nouveau projet',
'Do you really want to remove this project: "%s"?' => 'Voulez-vous vraiment supprimer ce projet : « %s » ?',
'Remove project' => 'Supprimer le projet',
- 'Boards' => 'Tableaux',
'Edit the board for "%s"' => 'Modifier le tableau pour « %s »',
'All projects' => 'Tous les projets',
'Change columns' => 'Changer les colonnes',
'Add a new column' => 'Ajouter une nouvelle colonne',
'Title' => 'Titre',
- 'Add Column' => 'Nouvelle colonne',
- 'Project "%s"' => 'Projet « %s »',
'Nobody assigned' => 'Personne assigné',
'Assigned to %s' => 'Assigné à %s',
'Remove a column' => 'Supprimer une colonne',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Langue',
'Webhook token:' => 'Jeton de securité pour les webhooks :',
'API token:' => 'Jeton de securité pour l\'API :',
- 'More information' => 'Plus d\'informations',
'Database size:' => 'Taille de la base de données :',
'Download the database' => 'Télécharger la base de données',
'Optimize the database' => 'Optimiser la base de données',
'(VACUUM command)' => '(Commande VACUUM)',
'(Gzip compressed Sqlite file)' => '(Fichier Sqlite compressé en Gzip)',
- 'User settings' => 'Paramètres utilisateur',
- 'My default project:' => 'Mon projet par défaut : ',
'Close a task' => 'Fermer une tâche',
- 'Do you really want to close this task: "%s"?' => 'Voulez-vous vraiment fermer cettre tâche : « %s » ?',
'Edit a task' => 'Modifier une tâche',
'Column' => 'Colonne',
'Color' => 'Couleur',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Le mot de passe est obligatoire',
'This value must be an integer' => 'Cette valeur doit être un entier',
'The username must be unique' => 'Le nom d\'utilisateur doit être unique',
- 'The username must be alphanumeric' => 'Le nom d\'utilisateur doit être alpha-numérique',
'The user id is required' => 'L\'id de l\'utilisateur est obligatoire',
'Passwords don\'t match' => 'Les mots de passe ne correspondent pas',
'The confirmation is required' => 'Le confirmation est requise',
- 'The column is required' => 'La colonne est obligatoire',
'The project is required' => 'Le projet est obligatoire',
- 'The color is required' => 'La couleur est obligatoire',
'The id is required' => 'L\'identifiant est obligatoire',
'The project id is required' => 'L\'identifiant du projet est obligatoire',
'The project name is required' => 'Le nom du projet est obligatoire',
'This project must be unique' => 'Le nom du projet doit être unique',
'The title is required' => 'Le titre est obligatoire',
- 'The language is required' => 'La langue est obligatoire',
'There is no active project, the first step is to create a new project.' => 'Il n\'y a aucun projet actif, la première étape est de créer un nouveau projet.',
'Settings saved successfully.' => 'Paramètres sauvegardés avec succès.',
'Unable to save your settings.' => 'Impossible de sauvegarder vos réglages.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Date de création',
'Date completed' => 'Date de clôture',
'Id' => 'Identifiant',
- 'No task' => 'Aucune tâche',
'Completed tasks' => 'Tâches terminées',
- 'List of projects' => 'Liste des projets',
'Completed tasks for "%s"' => 'Tâches terminées pour « %s »',
'%d closed tasks' => '%d tâches terminées',
'No task for this project' => 'Aucune tâche pour ce projet',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Désolé, je n\'ai pas trouvé cette information dans ma base de données !',
'Page not found' => 'Page introuvable',
'Complexity' => 'Complexité',
- 'limit' => 'limite',
'Task limit' => 'Tâches Max.',
'Task count' => 'Nombre de tâches',
- 'This value must be greater than %d' => 'Cette valeur doit être plus grande que %d',
'Edit project access list' => 'Modifier l\'accès au projet',
- 'Edit users access' => 'Modifier les utilisateurs autorisés',
'Allow this user' => 'Autoriser cet utilisateur',
- 'Only those users have access to this project:' => 'Seulement ces utilisateurs ont accès à ce projet :',
'Don\'t forget that administrators have access to everything.' => 'N\'oubliez pas que les administrateurs ont accès à tout.',
'Revoke' => 'Révoquer',
'List of authorized users' => 'Liste des utilisateurs autorisés',
'User' => 'Utilisateur',
'Nobody have access to this project.' => 'Personne n\'est autorisé à accéder au projet.',
- 'You are not allowed to access to this project.' => 'Vous n\'êtes pas autorisé à accéder à ce projet.',
'Comments' => 'Commentaires',
- 'Post comment' => 'Commenter',
'Write your text in Markdown' => 'Écrivez votre texte en Markdown',
'Leave a comment' => 'Laissez un commentaire',
'Comment is required' => 'Le commentaire est obligatoire',
'Leave a description' => 'Laissez une description',
'Comment added successfully.' => 'Commentaire ajouté avec succès.',
'Unable to create your comment.' => 'Impossible de sauvegarder votre commentaire.',
- 'The description is required' => 'La description est obligatoire',
'Edit this task' => 'Modifier cette tâche',
'Due Date' => 'Date d\'échéance',
'Invalid date' => 'Date invalide',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Sauvegarder cette action',
'Do you really want to remove this action: "%s"?' => 'Voulez-vous vraiment supprimer cette action « %s » ?',
'Remove an automatic action' => 'Supprimer une action automatisée',
- 'Close the task' => 'Fermer cette tâche',
'Assign the task to a specific user' => 'Assigner la tâche à un utilisateur spécifique',
'Assign the task to the person who does the action' => 'Assigner la tâche à la personne qui fait l\'action',
'Duplicate the task to another project' => 'Dupliquer la tâche vers un autre projet',
'Move a task to another column' => 'Déplacement d\'une tâche vers une autre colonne',
- 'Move a task to another position in the same column' => 'Déplacement d\'une tâche à une autre position mais dans la même colonne',
'Task modification' => 'Modification d\'une tâche',
'Task creation' => 'Création d\'une tâche',
- 'Open a closed task' => 'Ouverture d\'une tâche fermée',
'Closing a task' => 'Fermeture d\'une tâche',
'Assign a color to a specific user' => 'Assigner une couleur à un utilisateur',
'Column title' => 'Titre de la colonne',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Dupliquer dans un autre projet',
'Duplicate' => 'Dupliquer',
'link' => 'lien',
- 'Update this comment' => 'Mettre à jour ce commentaire',
'Comment updated successfully.' => 'Commentaire mis à jour avec succès.',
'Unable to update your comment.' => 'Impossible de supprimer votre commentaire.',
'Remove a comment' => 'Supprimer un commentaire',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Impossible de supprimer ce commentaire.',
'Do you really want to remove this comment?' => 'Voulez-vous vraiment supprimer ce commentaire ?',
'Only administrators or the creator of the comment can access to this page.' => 'Uniquement les administrateurs ou le créateur du commentaire peuvent accéder à cette page.',
- 'Details' => 'Détails',
'Current password for the user "%s"' => 'Mot de passe actuel pour l\'utilisateur « %s »',
'The current password is required' => 'Le mot de passe actuel est obligatoire',
'Wrong password' => 'Mauvais mot de passe',
- 'Reset all tokens' => 'Réinitialiser tous les jetons de sécurité',
- 'All tokens have been regenerated.' => 'Tous les jetons de sécurité ont été réinitialisés.',
'Unknown' => 'Inconnu',
'Last logins' => 'Dernières connexions',
'Login date' => 'Date de connexion',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ne plus utiliser mon compte Google',
'Login with my Google Account' => 'Se connecter avec mon compte Google',
'Project not found.' => 'Projet introuvable.',
- 'Task #%d' => 'Tâche n°%d',
'Task removed successfully.' => 'Tâche supprimée avec succès.',
'Unable to remove this task.' => 'Impossible de supprimer cette tâche.',
'Remove a task' => 'Supprimer une tâche',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Impossible de supprimer cette catégorie.',
'Category modification for the project "%s"' => 'Modification d\'une catégorie pour le projet « %s »',
'Category Name' => 'Nom de la catégorie',
- 'Categories for the project "%s"' => 'Catégories du projet « %s »',
'Add a new category' => 'Ajouter une nouvelle catégorie',
'Do you really want to remove this category: "%s"?' => 'Voulez-vous vraiment supprimer cette catégorie « %s » ?',
'Filter by category' => 'Filtrer par catégorie',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Date de modification',
'Completion date' => 'Date de complétion',
'Clone' => 'Clone',
- 'Clone Project' => 'Cloner le projet',
'Project cloned successfully.' => 'Projet cloné avec succès.',
'Unable to clone this project.' => 'Impossible de cloner ce projet.',
'Email notifications' => 'Notifications par email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nouvelle pièce-jointe ajoutée « %s »',
'Comment updated' => 'Commentaire ajouté',
'New comment posted by %s' => 'Nouveau commentaire ajouté par « %s »',
- 'List of due tasks for the project "%s"' => 'Liste des tâches expirées pour le projet « %s »',
'New attachment' => 'Nouveau document',
'New comment' => 'Nouveau commentaire',
'Comment updated' => 'Commentaire mis à jour',
@@ -417,21 +381,15 @@ return array(
'Task updated' => 'Tâche mise à jour',
'Task closed' => 'Tâche fermée',
'Task opened' => 'Tâche ouverte',
- '[%s][Due tasks]' => '[%s][Tâches expirées]',
- '[Kanboard] Notification' => '[Kanboard] Notification',
'I want to receive notifications only for those projects:' => 'Je souhaite reçevoir les notifications uniquement pour les projets sélectionnés :',
'view the task on Kanboard' => 'voir la tâche sur Kanboard',
'Public access' => 'Accès public',
- 'Category management' => 'Gestion des catégories',
'User management' => 'Gestion des utilisateurs',
'Active tasks' => 'Tâches actives',
'Disable public access' => 'Désactiver l\'accès public',
'Enable public access' => 'Activer l\'accès public',
- 'Active projects' => 'Projets activés',
- 'Inactive projects' => 'Projets désactivés',
'Public access disabled' => 'Accès public désactivé',
'Do you really want to disable this project: "%s"?' => 'Voulez-vous vraiment désactiver ce projet : « %s » ?',
- 'Do you really want to duplicate this project: "%s"?' => 'Voulez-vous vraiment dupliquer ce projet : « %s » ?',
'Do you really want to enable this project: "%s"?' => 'Voulez-vous vraiment activer ce projet : « %s » ?',
'Project activation' => 'Activation du projet',
'Move the task to another project' => 'Déplacer la tâche vers un autre projet',
@@ -500,12 +458,9 @@ return array(
'Task assignee change' => 'Modification de la personne assignée sur une tâche',
'%s change the assignee of the task #%d to %s' => '%s a changé la personne assignée sur la tâche n˚%d pour %s',
'%s changed the assignee of the task %s to %s' => '%s a changé la personne assignée sur la tâche %s pour %s',
- 'Column Change' => 'Changement de colonne',
- 'Position Change' => 'Changement de position',
- 'Assignee Change' => 'Changement d\'assigné',
'New password for the user "%s"' => 'Nouveau mot de passe pour l\'utilisateur « %s »',
'Choose an event' => 'Choisir un événement',
- 'Github commit received' => '« Commit » reçu via Github',
+ 'Github commit received' => 'Commit reçu via Github',
'Github issue opened' => 'Ouverture d\'un ticket sur Github',
'Github issue closed' => 'Fermeture d\'un ticket sur Github',
'Github issue reopened' => 'Réouverture d\'un ticket sur Github',
@@ -555,12 +510,10 @@ return array(
'Everybody have access to this project.' => 'Tout le monde a acccès à ce projet.',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Intégration',
'Github webhooks' => 'Webhook Github',
'Help on Github webhooks' => 'Aide sur les webhooks Github',
'Create a comment from an external provider' => 'Créer un commentaire depuis un fournisseur externe',
'Github issue comment created' => 'Commentaire créé sur un ticket Github',
- 'Configure' => 'Configurer',
'Project management' => 'Gestion des projets',
'My projects' => 'Mes projets',
'Columns' => 'Colonnes',
@@ -578,7 +531,6 @@ return array(
'User repartition for "%s"' => 'Répartition des utilisateurs pour « %s »',
'Clone this project' => 'Cloner ce projet',
'Column removed successfully.' => 'Colonne supprimée avec succès.',
- 'Edit Project' => 'Modifier le projet',
'Github Issue' => 'Ticket Github',
'Not enough data to show the graph.' => 'Pas assez de données pour afficher le graphique.',
'Previous' => 'Précédent',
@@ -626,7 +578,7 @@ return array(
'Your swimlane have been created successfully.' => 'Votre swimlane a été créée avec succès.',
'Example: "Bug, Feature Request, Improvement"' => 'Exemple: « Incident, Demande de fonctionnalité, Amélioration »',
'Default categories for new projects (Comma-separated)' => 'Catégories par défaut pour les nouveaux projets (séparé par des virgules)',
- 'Gitlab commit received' => '« Commit » reçu via Gitlab',
+ 'Gitlab commit received' => 'Commit reçu via Gitlab',
'Gitlab issue opened' => 'Ouverture d\'un ticket sur Gitlab',
'Gitlab issue closed' => 'Fermeture d\'un ticket sur Gitlab',
'Gitlab webhooks' => 'Webhook Gitlab',
@@ -659,7 +611,6 @@ return array(
'All swimlanes' => 'Toutes les swimlanes',
'All colors' => 'Toutes les couleurs',
'All status' => 'Tous les états',
- 'Add a comment logging moving the task between columns' => 'Ajouter un commentaire de log lorsqu\'une tâche est déplacée dans une autre colonne',
'Moved to column %s' => 'Tâche déplacée à la colonne %s',
'Change description' => 'Changer la description',
'User dashboard' => 'Tableau de bord de l\'utilisateur',
@@ -680,7 +631,7 @@ return array(
'Disable login form' => 'Désactiver le formulaire d\'authentification',
'Show/hide calendar' => 'Afficher/cacher le calendrier',
'User calendar' => 'Calendrier de l\'utilisateur',
- 'Bitbucket commit received' => '« Commit » reçu via Bitbucket',
+ 'Bitbucket commit received' => 'Commit reçu via Bitbucket',
'Bitbucket webhooks' => 'Webhook Bitbucket',
'Help on Bitbucket webhooks' => 'Aide sur les webhooks Bitbucket',
'Start' => 'Début',
@@ -910,7 +861,7 @@ return array(
'The server address must use this format: "tcp://hostname:5222"' => 'L\'adresse du serveur doit utiliser le format suivant : « tcp://hostname:5222 »',
'Calendar settings' => 'Paramètres du calendrier',
'Project calendar view' => 'Vue en mode projet du calendrier',
- 'Project settings' => 'Paramètres des projets',
+ 'Project settings' => 'Paramètres du projet',
'Show subtasks based on the time tracking' => 'Afficher les sous-tâches basé sur le suivi du temps',
'Show tasks based on the creation date' => 'Afficher les tâches en fonction de la date de création',
'Show tasks based on the start date' => 'Afficher les tâches en fonction de la date de début',
@@ -924,4 +875,74 @@ return array(
'Two factor authentication enabled' => 'Authentification à deux facteurs activée',
'Unable to update this user.' => 'Impossible de mettre à jour cet utilisateur.',
'There is no user management for private projects.' => 'Il n\'y a pas de gestion d\'utilisateurs pour les projets privés.',
+ 'User that will receive the email' => 'Utilisateur qui va reçevoir l\'email',
+ 'Email subject' => 'Sujet de l\'email',
+ 'Date' => 'Date',
+ 'By @%s on Bitbucket' => 'Par @%s sur Bitbucket',
+ 'Bitbucket Issue' => 'Ticket Bitbucket',
+ 'Commit made by @%s on Bitbucket' => 'Commit fait par @%s sur Bitbucket',
+ 'Commit made by @%s on Github' => 'Commit fait par @%s sur Github',
+ 'By @%s on Github' => 'Par @%s sur Github',
+ 'Commit made by @%s on Gitlab' => 'Commit fait par @%s sur Gitlab',
+ 'Add a comment log when moving the task between columns' => 'Ajouter un commentaire d\'information lorsque une tâche est déplacée dans une autre colonnes',
+ 'Move the task to another column when the category is changed' => 'Déplacer une tâche vers une autre colonne lorsque la catégorie a changée',
+ 'Send a task by email to someone' => 'Envoyer une tâche par email à quelqu\'un',
+ 'Reopen a task' => 'Rouvrir une tâche',
+ 'Bitbucket issue opened' => 'Ticket Bitbucket ouvert',
+ 'Bitbucket issue closed' => 'Ticket Bitbucket fermé',
+ 'Bitbucket issue reopened' => 'Ticket Bitbucket rouvert',
+ 'Bitbucket issue assignee change' => 'Changement d\'assigné sur un ticket Bitbucket',
+ 'Bitbucket issue comment created' => 'Commentaire créé sur un ticket Bitbucket',
+ 'Column change' => 'Changement de colonne',
+ 'Position change' => 'Changement de position',
+ 'Swimlane change' => 'Changement de swimlane',
+ 'Assignee change' => 'Changement d\'assigné',
+ '[%s] Overdue tasks' => '[%s] Tâches en retard',
+ 'Notification' => 'Notification',
+ '%s moved the task #%d to the first swimlane' => '%s a déplacé la tâche n°%d dans la première swimlane',
+ '%s moved the task #%d to the swimlane "%s"' => '%s a déplacé la tâche n°%d dans la swimlane « %s »',
+ 'Swimlane' => 'Swimlane',
+ 'Budget overview' => 'Vue d\'ensemble du budget',
+ 'Type' => 'Type',
+ 'There is not enough data to show something.' => 'Il n\'y a pas assez de données pour montrer quelque chose.',
+ 'Gravatar' => 'Gravatar',
+ 'Hipchat' => 'Hipchat',
+ 'Slack' => 'Slack',
+ '%s moved the task %s to the first swimlane' => '%s a déplacé la tâche %s dans la première swimlane',
+ '%s moved the task %s to the swimlane "%s"' => '%s a déplacé la tâche %s dans la swimlane « %s »',
+ 'This report contains all subtasks information for the given date range.' => 'Ce rapport contient les informations de toutes les sous-tâches pour la période selectionnée.',
+ 'This report contains all tasks information for the given date range.' => 'Ce rapport contient les informations de toutes les tâches pour la période selectionnée.',
+ 'Project activities for %s' => 'Activité du projet « %s »',
+ 'view the board on Kanboard' => 'voir la tableau sur Kanboard',
+ 'The task have been moved to the first swimlane' => 'La tâche a été déplacée dans la première swimlane',
+ 'The task have been moved to another swimlane:' => 'La tâche a été déplacée dans une autre swimlane :',
+ 'Overdue tasks for the project "%s"' => 'Tâches en retard pour le projet « %s »',
+ 'There is no completed tasks at the moment.' => 'Il n\'y a aucune tâche terminée pour le moment.',
+ 'New title: %s' => 'Nouveau titre : %s',
+ 'The task is not assigned anymore' => 'La tâche n\'est plus assignée maintenant',
+ 'New assignee: %s' => 'Nouvel assigné : %s',
+ 'There is no category now' => 'Il n\'y a plus de catégorie maintenant',
+ 'New category: %s' => 'Nouvelle catégorie : %s',
+ 'New color: %s' => 'Nouvelle couleur : %s',
+ 'New complexity: %d' => 'Nouvelle complexité : %d',
+ 'The due date have been removed' => 'La date d\'échéance a été enlevée',
+ 'There is no description anymore' => 'Il n\'y a plus de description maintenant',
+ 'Recurrence settings have been modified' => 'Les réglages de la récurrence ont été modifiés',
+ 'Time spent changed: %sh' => 'Le temps passé a été changé : %sh',
+ 'Time estimated changed: %sh' => 'Le temps estimé a été changé : %sh',
+ 'The field "%s" have been updated' => 'Le champ « %s » a été mis à jour',
+ 'The description have been modified' => 'La description a été modifiée',
+ 'Do you really want to close the task "%s" as well as all subtasks?' => 'Voulez-vous vraiment fermer la tâche « %s » ainsi que toutes ses sous-tâches ?',
+ 'Swimlane: %s' => 'Swimlane : %s',
+ 'Project calendar' => 'Agenda du projet',
+ 'I want to receive notifications for:' => 'Je veux reçevoir les notifications pour :',
+ 'All tasks' => 'Toutes les Tâches',
+ 'Only for tasks assigned to me' => 'Seulement les tâches qui me sont assignées',
+ 'Only for tasks created by me' => 'Seulement les tâches que j\'ai créées',
+ 'Only for tasks created by me and assigned to me' => 'Seulement les tâches créées par moi-même et celles qui me sont asignées',
+ '%A' => '%A',
+ '%b %e, %Y, %k:%M %p' => '%d/%m/%Y %H:%M',
+ 'New due date: %B %e, %Y' => 'Nouvelle date d\'échéance : %d/%m/%Y',
+ 'Start date changed: %B %e, %Y' => 'Date de début modifiée : %d/%m/%Y',
+ '%k:%M %p' => '%H:%M',
);
diff --git a/app/Locale/hu_HU/translations.php b/app/Locale/hu_HU/translations.php
index afc8b450..dc5dbeeb 100644
--- a/app/Locale/hu_HU/translations.php
+++ b/app/Locale/hu_HU/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Nincs felhasználó',
'Forbidden' => 'tiltott',
'Access Forbidden' => 'Hozzáférés megtagadva',
- 'Only administrators can access to this page.' => 'Csak a rendszergazdák férhetnek hozzá az oldalhoz.',
'Edit user' => 'Felhasználó módosítása',
'Logout' => 'Kilépés',
'Bad username or password' => 'Rossz felhasználónév vagy jelszó',
- 'users' => 'felhasználók',
- 'projects' => 'projektek',
'Edit project' => 'Projekt szerkesztése',
'Name' => 'Név',
- 'Activated' => 'Aktiválva',
'Projects' => 'Projektek',
'No project' => 'Nincs projekt',
'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Műveletek',
'Inactive' => 'Inaktív',
'Active' => 'Aktív',
- 'Column %d' => 'Oszlop %d',
'Add this column' => 'Oszlop hozzáadása',
'%d tasks on the board' => '%d feladat a táblán',
'%d tasks in total' => 'Összesen %d feladat',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Új projekt',
'Do you really want to remove this project: "%s"?' => 'Valóban törölni akarja ezt a projektet: "%s"?',
'Remove project' => 'Projekt törlése',
- 'Boards' => 'Táblák',
'Edit the board for "%s"' => 'Tábla szerkesztése: "%s"',
'All projects' => 'Minden projekt',
'Change columns' => 'Oszlop módosítása',
'Add a new column' => 'Új oszlop',
'Title' => 'Cím',
- 'Add Column' => 'Oszlopot hozzáad',
- 'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nincs felelős',
'Assigned to %s' => 'Felelős: %s',
'Remove a column' => 'Oszlop törlése',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Nyelv',
'Webhook token:' => 'Webhook token:',
'API token:' => 'API token:',
- 'More information' => 'További információ',
'Database size:' => 'Adatbázis méret:',
'Download the database' => 'Adatbázis letöltése',
'Optimize the database' => 'Adatbázis optimalizálása',
'(VACUUM command)' => '(VACUUM parancs)',
'(Gzip compressed Sqlite file)' => '(Gzip tömörített SQLite fájl)',
- 'User settings' => 'Felhasználói beállítások',
- 'My default project:' => 'Alapértelmezett projekt: ',
'Close a task' => 'Feladat lezárása',
- 'Do you really want to close this task: "%s"?' => 'Tényleg le akarja zárni ezt a feladatot: "%s"?',
'Edit a task' => 'Feladat módosítása',
'Column' => 'Oszlop',
'Color' => 'Szín',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Jelszó szükséges',
'This value must be an integer' => 'Ez az érték csak egész szám lehet',
'The username must be unique' => 'A felhasználó nevének egyedinek kell lennie',
- 'The username must be alphanumeric' => 'A felhasználói név csak alfanumerikus lehet (betűk és számok)',
'The user id is required' => 'A felhasználói azonosítót meg kell adni',
'Passwords don\'t match' => 'A jelszavak nem egyeznek',
'The confirmation is required' => 'Megerősítés szükséges',
- 'The column is required' => 'Az oszlopot meg kell adni',
'The project is required' => 'A projektet meg kell adni',
- 'The color is required' => 'A színt meg kell adni',
'The id is required' => 'Az ID-t (azonosítót) meg kell adni',
'The project id is required' => 'A projekt ID-t (azonosítót) meg kell adni',
'The project name is required' => 'A projekt nevét meg kell adni',
'This project must be unique' => 'A projekt nevének egyedinek kell lennie',
'The title is required' => 'A címet meg kell adni',
- 'The language is required' => 'A nyelvet meg kell adni',
'There is no active project, the first step is to create a new project.' => 'Nincs aktív projekt. Először létre kell hozni egy projektet.',
'Settings saved successfully.' => 'A beállítások sikeresen mentve.',
'Unable to save your settings.' => 'A beállítások mentése sikertelen.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Létrehozás időpontja',
'Date completed' => 'Befejezés időpontja',
'Id' => 'ID',
- 'No task' => 'Nincs feladat',
'Completed tasks' => 'Elvégzett feladatok',
- 'List of projects' => 'Projektek listája',
'Completed tasks for "%s"' => 'Elvégzett feladatok: %s',
'%d closed tasks' => '%d lezárt feladat',
'No task for this project' => 'Nincs feladat ebben a projektben',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Ez az információ nem található az adatbázisban!',
'Page not found' => 'Az oldal nem található',
'Complexity' => 'Bonyolultság',
- 'limit' => 'határ',
'Task limit' => 'Maximális számú feladat',
'Task count' => 'Feladatok száma',
- 'This value must be greater than %d' => 'Az értéknek nagyobbnak kell lennie, mint %d',
'Edit project access list' => 'Projekt hozzáférés módosítása',
- 'Edit users access' => 'Felhasználók hozzáférésének módosítása',
'Allow this user' => 'Engedélyezi ezt a felhasználót',
- 'Only those users have access to this project:' => 'Csak ezek a felhasználók férhetnek hozzá a projekthez:',
'Don\'t forget that administrators have access to everything.' => 'Ne felejtsük el: a rendszergazdák mindenhez hozzáférnek.',
'Revoke' => 'Visszavon',
'List of authorized users' => 'Az engedélyezett felhasználók',
'User' => 'Felhasználó',
'Nobody have access to this project.' => 'Senkinek sincs hozzáférése a projekthez.',
- 'You are not allowed to access to this project.' => 'Nincs hozzáférési joga a projekthez.',
'Comments' => 'Hozzászólások',
- 'Post comment' => 'Hozzászólás elküldése',
'Write your text in Markdown' => 'Írja be a szöveget Markdown szintaxissal',
'Leave a comment' => 'Írjon hozzászólást ...',
'Comment is required' => 'A hozzászólás mező kötelező',
'Leave a description' => 'Írjon leírást ...',
'Comment added successfully.' => 'Hozzászólás sikeresen elküldve.',
'Unable to create your comment.' => 'Hozzászólás létrehozása nem lehetséges.',
- 'The description is required' => 'A leírás szükséges',
'Edit this task' => 'Feladat módosítása',
'Due Date' => 'Határidő',
'Invalid date' => 'Érvénytelen dátum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Intézkedés mentése',
'Do you really want to remove this action: "%s"?' => 'Valóban törölni akarja ezt az intézkedést: "%s"?',
'Remove an automatic action' => 'Automatikus intézkedés törlése',
- 'Close the task' => 'Feladat lezárása',
'Assign the task to a specific user' => 'Feladat kiosztása megadott felhasználónak',
'Assign the task to the person who does the action' => 'Feladat kiosztása az intézkedő személynek',
'Duplicate the task to another project' => 'Feladat másolása másik projektbe',
'Move a task to another column' => 'Feladat mozgatása másik oszlopba',
- 'Move a task to another position in the same column' => 'Feladat mozgatása oszlopon belül',
'Task modification' => 'Feladat módosítása',
'Task creation' => 'Feladat létrehozása',
- 'Open a closed task' => 'Lezárt feladat felnyitása',
'Closing a task' => 'Feladat lezárása',
'Assign a color to a specific user' => 'Szín hozzárendelése a felhasználóhoz',
'Column title' => 'Oszlopfejléc',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Másolás másik projektbe',
'Duplicate' => 'Másolás',
'link' => 'link',
- 'Update this comment' => 'Hozzászólás frissítése',
'Comment updated successfully.' => 'Megjegyzés sikeresen frissítve.',
'Unable to update your comment.' => 'Megjegyzés frissítése sikertelen.',
'Remove a comment' => 'Megjegyzés törlése',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Megjegyzés törölése nem lehetséges.',
'Do you really want to remove this comment?' => 'Valóban törölni szeretné ezt a megjegyzést?',
'Only administrators or the creator of the comment can access to this page.' => 'Csak a rendszergazdák és a megjegyzés létrehozója férhet hozzá az oldalhoz.',
- 'Details' => 'Részletek',
'Current password for the user "%s"' => 'Felhasználó jelenlegi jelszava: "%s"',
'The current password is required' => 'A jelenlegi jelszót meg kell adni',
'Wrong password' => 'Hibás jelszó',
- 'Reset all tokens' => 'Reseteld az összes tokent',
- 'All tokens have been regenerated.' => 'Minden token újra lett generálva.',
'Unknown' => 'Ismeretlen',
'Last logins' => 'Legutóbbi bejelentkezések',
'Login date' => 'Bejelentkezés dátuma',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Válaszd le a Google fiókomat',
'Login with my Google Account' => 'Jelentkezzen be Google fiókkal',
'Project not found.' => 'A projekt nem található.',
- 'Task #%d' => 'Feladat #%d.',
'Task removed successfully.' => 'Feladat sikeresen törölve.',
'Unable to remove this task.' => 'A feladatot nem lehet törölni.',
'Remove a task' => 'Feladat törlése',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'A kategória törlése nem lehetséges.',
'Category modification for the project "%s"' => 'Kategória módosítása a projektben "%s"',
'Category Name' => 'Kategória neve',
- 'Categories for the project "%s"' => 'Projekt kategóriák "%s"',
'Add a new category' => 'Új kategória',
'Do you really want to remove this category: "%s"?' => 'Valóban törölni akarja ezt a kategóriát: "%s"?',
'Filter by category' => 'Szűrés kategória szerint',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Módosítás dátuma',
'Completion date' => 'Befejezés határideje',
'Clone' => 'Másolat',
- 'Clone Project' => 'Projekt másolása',
'Project cloned successfully.' => 'A projekt sikeresen másolva.',
'Unable to clone this project.' => 'A projekt másolása sikertelen.',
'Email notifications' => 'E-mail értesítések',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Új melléklet "%s" hozzáadva.',
'Comment updated' => 'Megjegyzés frissítve',
'New comment posted by %s' => 'Új megjegyzés %s',
- 'List of due tasks for the project "%s"' => 'Projekt esedékes feladatai: "%s"',
'New attachment' => 'Új melléklet',
'New comment' => 'Új megjegyzés',
'New subtask' => 'Új részfeladat',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Feladat frissítve',
'Task closed' => 'Feladat lezárva',
'Task opened' => 'Feladat megnyitva',
- '[%s][Due tasks]' => '[%s] [Esedékes feladatok]',
- '[Kanboard] Notification' => '[Kanboard] értesítés',
'I want to receive notifications only for those projects:' => 'Csak ezekről a projektekről kérek értesítést:',
'view the task on Kanboard' => 'feladat megtekintése a Kanboardon',
'Public access' => 'Nyilvános hozzáférés',
- 'Category management' => 'Kategóriák kezelése',
'User management' => 'Felhasználók kezelése',
'Active tasks' => 'Aktív feladatok',
'Disable public access' => 'Nyilvános hozzáférés letiltása',
'Enable public access' => 'Nyilvános hozzáférés engedélyezése',
- 'Active projects' => 'Aktív projektek',
- 'Inactive projects' => 'Inaktív projektek',
'Public access disabled' => 'Nyilvános hozzáférés letiltva',
'Do you really want to disable this project: "%s"?' => 'Tényleg szeretné letiltani ezt a projektet: "%s"',
- 'Do you really want to duplicate this project: "%s"?' => 'Tényleg szeretné megkettőzni ezt a projektet: "%s"',
'Do you really want to enable this project: "%s"?' => 'Tényleg szeretné engedélyezni ezt a projektet: "%s"',
'Project activation' => 'Projekt aktiválás',
'Move the task to another project' => 'Feladat áthelyezése másik projektbe',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Felelős módosítása',
'%s change the assignee of the task #%d to %s' => '%s a felelőst módosította #%d %s',
'%s changed the assignee of the task %s to %s' => '%s a felelőst %s módosította: %s',
- 'Column Change' => 'Oszlop változtatás',
- 'Position Change' => 'Pozíció változtatás',
- 'Assignee Change' => 'Felelős változtatás',
'New password for the user "%s"' => 'Felhasználó új jelszava: %s',
'Choose an event' => 'Válasszon eseményt',
'Github commit received' => 'GitHub commit érkezett',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Mindenki elérheti a projektet',
'Webhooks' => 'Webhook',
'API' => 'API',
- 'Integration' => 'Integráció',
'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Github Webhook súgó',
'Create a comment from an external provider' => 'Megjegyzés létrehozása külső felhasználótól',
'Github issue comment created' => 'Github issue megjegyzés létrehozva',
- 'Configure' => 'Beállítások',
'Project management' => 'Projekt menedzsment',
'My projects' => 'Projektjeim',
'Columns' => 'Oszlopok',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Felhasználó újrafelosztás: %s',
'Clone this project' => 'Projekt másolása',
'Column removed successfully.' => 'Oszlop sikeresen törölve.',
- 'Edit Project' => 'Projekt szerkesztése',
'Github Issue' => 'Github issue',
'Not enough data to show the graph.' => 'Nincs elég adat a grafikonhoz.',
'Previous' => 'Előző',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Minden folyamat',
'All colors' => 'Minden szín',
'All status' => 'Minden állapot',
- 'Add a comment logging moving the task between columns' => 'Feladat oszlopok közötti mozgatását megjegyzésben feltüntetni',
'Moved to column %s' => '%s oszlopba áthelyezve',
'Change description' => 'Leírás szerkesztés',
'User dashboard' => 'Felhasználói vezérlőpult',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/it_IT/translations.php b/app/Locale/it_IT/translations.php
index a6ec5059..950bfcd0 100644
--- a/app/Locale/it_IT/translations.php
+++ b/app/Locale/it_IT/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Nessun utente',
'Forbidden' => 'Vietato',
'Access Forbidden' => 'Accesso vietato',
- 'Only administrators can access to this page.' => 'Solo gli amministratori possono accedere a questa pagina.',
'Edit user' => 'Modificare un utente',
'Logout' => 'Uscire',
'Bad username or password' => 'Utente o password errati',
- 'users' => 'utenti',
- 'projects' => 'progetti',
'Edit project' => 'Modificare progetto',
'Name' => 'Nome',
- 'Activated' => 'Attivo',
'Projects' => 'Progetti',
'No project' => 'Nessun progetto',
'Project' => 'Progetto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Azioni',
'Inactive' => 'Inattivo',
'Active' => 'Attivo',
- 'Column %d' => 'Colonna %d',
'Add this column' => 'Aggiungere questa colonna',
'%d tasks on the board' => '%d compiti sulla bacheca',
'%d tasks in total' => '%d compiti in totale',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nuovo progetto',
'Do you really want to remove this project: "%s"?' => 'Veramente vuoi eliminare questo progetto: « %s » ?',
'Remove project' => 'Cancellare il progetto',
- 'Boards' => 'Bacheche',
'Edit the board for "%s"' => 'Modificare la bacheca per « %s »',
'All projects' => 'Tutti i progetti',
'Change columns' => 'Cambiare le colonne',
'Add a new column' => 'Aggiungere una nuova colonna',
'Title' => 'Titolo',
- 'Add Column' => 'Aggiungere colonna',
- 'Project "%s"' => 'progetto « %s »',
'Nobody assigned' => 'Nessuno assegnato',
'Assigned to %s' => 'Assegnato a %s',
'Remove a column' => 'Cancellare questa colonna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Lingua',
'Webhook token:' => 'Identificatore (token) per i webhooks :',
'API token:' => 'Token dell\'API:',
- 'More information' => 'Più informazioni',
'Database size:' => 'Dimensioni della base dati:',
'Download the database' => 'Scaricare la base dati',
'Optimize the database' => 'Ottimizare la base dati',
'(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(File Sqlite compresso in Gzip)',
- 'User settings' => 'Impostazioni di utente',
- 'My default project:' => 'Il mio progetto predefinito:',
'Close a task' => 'Chiudere un compito',
- 'Do you really want to close this task: "%s"?' => 'Veramente desideri chiudere questo compito: « %s » ?',
'Edit a task' => 'Modificare un compito',
'Column' => 'colonna',
'Color' => 'Colore',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Si richiede una password',
'This value must be an integer' => 'questo valore deve essere un intero',
'The username must be unique' => 'Il nome di utente deve essere unico',
- 'The username must be alphanumeric' => 'Il nome di utente deve essere alfanumerico',
'The user id is required' => 'Si richiede l\'identificatore dell\'utente',
'Passwords don\'t match' => 'Le password non corrispondono',
'The confirmation is required' => 'Si richiede una conferma',
- 'The column is required' => 'Si richiede una colonna',
'The project is required' => 'Si richiede il progetto',
- 'The color is required' => 'Si richiede il colore',
'The id is required' => 'Si richiede l\'identificatore',
'The project id is required' => 'Si richiede l\'identificatore del progetto',
'The project name is required' => 'Si richiede il nome del progetto',
'This project must be unique' => 'Il nome del progetto deve essere unico',
'The title is required' => 'Si richiede un titolo',
- 'The language is required' => 'Si richiede una lingua',
'There is no active project, the first step is to create a new project.' => 'Non ci sono progetti attivi, il primo passo consiste in creare un nuovo progetto.',
'Settings saved successfully.' => 'Impostazioni salvate correttamente.',
'Unable to save your settings.' => 'Non si possono salvare le impostazioni.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Data di creazione',
'Date completed' => 'Data di termine',
'Id' => 'Identificatore',
- 'No task' => 'Nessun compito',
'Completed tasks' => 'Compiti fatti',
- 'List of projects' => 'Lista di progetti',
'Completed tasks for "%s"' => 'Compiti fatti da « %s »',
'%d closed tasks' => '%d compiti chiusi',
'No task for this project' => 'Nessun compito per questo progetto',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Mi dispiace, non ho trovato questa informazione sulla base dati!',
'Page not found' => 'Pagina non trovata',
'Complexity' => 'Complessità',
- 'limit' => 'limite',
'Task limit' => 'Numero massimo di compiti',
'Task count' => 'Numero di compiti',
- 'This value must be greater than %d' => 'questo valore deve essere maggiore di %d',
'Edit project access list' => 'Modificare i permessi del progetto',
- 'Edit users access' => 'Modificare i permessi degli utenti',
'Allow this user' => 'Permettere a questo utente',
- 'Only those users have access to this project:' => 'Solo questi utenti hanno accesso a questo progetto:',
'Don\'t forget that administrators have access to everything.' => 'Non dimenticare che gli amministratori hanno accesso a tutto.',
'Revoke' => 'Revocare',
'List of authorized users' => 'Lista di utenti autorizzati',
'User' => 'Utente',
'Nobody have access to this project.' => 'Nessuno ha accesso a questo progetto.',
- 'You are not allowed to access to this project.' => 'Non hai l\'accesso a questo progetto.',
'Comments' => 'Commenti',
- 'Post comment' => 'Mandare commento',
'Write your text in Markdown' => 'Scrivi il testo in Markdown',
'Leave a comment' => 'Lasciare un commento',
'Comment is required' => 'Si richiede un commento',
'Leave a description' => 'Lasciare una descrizione',
'Comment added successfully.' => 'Commenti aggiunti correttamente.',
'Unable to create your comment.' => 'Non si può creare questo commento.',
- 'The description is required' => 'Si richiede una descrizione',
'Edit this task' => 'Modificare questo compito',
'Due Date' => 'Data di scadenza',
'Invalid date' => 'Data sbagliata',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Salvare questa azione',
'Do you really want to remove this action: "%s"?' => 'Veramente vuole cancellare questa azione « %s » ?',
'Remove an automatic action' => 'Cancellare un\'azione automatica',
- 'Close the task' => 'Chiudere questo compito',
'Assign the task to a specific user' => 'Assegnare questo compito a un utente specifico',
'Assign the task to the person who does the action' => 'Assegnare il compito all\'utente che svolge l\'azione',
'Duplicate the task to another project' => 'Duplicare il compito in altro progetto',
'Move a task to another column' => 'Muovere un compito in un\'altra colonna',
- 'Move a task to another position in the same column' => 'Muovere un compito in un\'altra posizione sulla stessa colonna',
'Task modification' => 'Modifica di un compito',
'Task creation' => 'Creazione di un compito',
- 'Open a closed task' => 'Riaprire un compito',
'Closing a task' => 'Chiudere un compito',
'Assign a color to a specific user' => 'Assegna un colore ad un utente specifico',
'Column title' => 'Titolo della colonna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicare in un altro progetto',
'Duplicate' => 'Duplicare',
'link' => 'link',
- 'Update this comment' => 'Aggiornare questo commento',
'Comment updated successfully.' => 'Commento aggiornato correttamente.',
'Unable to update your comment.' => 'Non si può aggiornare questo commento.',
'Remove a comment' => 'Cancellare un commento',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Non si può cancellare questo commento.',
'Do you really want to remove this comment?' => 'Desidera cancellare questo commento?',
'Only administrators or the creator of the comment can access to this page.' => 'Solo gli amministratori o l\'autore del commento hanno accesso a questa pagina.',
- 'Details' => 'Dettagli',
'Current password for the user "%s"' => 'Password attuale per l\'utente: « %s »',
'The current password is required' => 'Si richiede la password attuale',
'Wrong password' => 'password sbagliata',
- 'Reset all tokens' => 'Azzerare gli identificatori (tokens) di sicurezza ',
- 'All tokens have been regenerated.' => 'Tutti gli identificatori (tokens) sono stati rigenerati.',
'Unknown' => 'Sconociuto',
'Last logins' => 'Ultimi ingressi',
'Login date' => 'Data di ingresso',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Scollegare il mio account di Google',
'Login with my Google Account' => 'Entra con il mio Account di Google',
'Project not found.' => 'progetto non trovato.',
- 'Task #%d' => 'Compito numero %d',
'Task removed successfully.' => 'Compito cancellato correttamente.',
'Unable to remove this task.' => 'Non si può cancellare questo compito.',
'Remove a task' => 'Cancellare un compito',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Non si può cancellare questa categoria.',
'Category modification for the project "%s"' => 'Modifica di categoria per il progetto "%s"',
'Category Name' => 'Nome di categoria',
- 'Categories for the project "%s"' => 'Categorie per il progetto "%s"',
'Add a new category' => 'Aggiungere una nuova categoria',
'Do you really want to remove this category: "%s"?' => 'Vuoi veramente cancellare questa categoria: "%s"?',
'Filter by category' => 'Filtrare attraverso categoria',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data di modifica',
'Completion date' => 'Data di termine',
'Clone' => 'Clona',
- 'Clone Project' => 'Clona il progetto',
'Project cloned successfully.' => 'Progetto clonato con successo.',
'Unable to clone this project.' => 'Impossibile clonare questo progetto',
'Email notifications' => 'Notifiche email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nuovo allegato aggiunto « %s »',
'Comment updated' => 'Commento aggiornato',
'New comment posted by %s' => 'Nuovo commento aggiunto da « %s »',
- 'List of due tasks for the project "%s"' => 'Lista dei compiti scaduti per il progetto « %s »',
'New attachment' => 'Nuovo allegato',
'New comment' => 'Nuovo commento',
'New subtask' => 'Nuovo sotto-compito',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Compito aggiornato',
'Task closed' => 'Compito chiuso',
'Task opened' => 'Compito aperto',
- '[%s][Due tasks]' => '[%s][Compiti scaduti]',
- '[Kanboard] Notification' => '[Kanboard] Notifica',
'I want to receive notifications only for those projects:' => 'Vorrei ricevere le notifiche solo da questi progetti:',
'view the task on Kanboard' => 'vedi il compito su Kanboard',
'Public access' => 'Accesso pubblico',
- 'Category management' => 'Gestione delle categorie',
'User management' => 'Gestione utenti',
'Active tasks' => 'Compiti attivi',
'Disable public access' => 'Disabilita l\'accesso pubblico',
'Enable public access' => 'Abilita l\'accesso pubblico',
- 'Active projects' => 'Progetti attivi',
- 'Inactive projects' => 'Progetti inattivi',
'Public access disabled' => 'Accesso pubblico disattivato',
'Do you really want to disable this project: "%s"?' => 'Vuoi davvero disabilitare questo progetto: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Vuoi davvero duplicare questo progetto: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Vuoi davvero abilitare questo progetto: "%s"?',
'Project activation' => 'Attivazione progetto',
'Move the task to another project' => 'Muovi il compito in un altro progetto',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Cambiare l\'assegnatario del compito',
'%s change the assignee of the task #%d to %s' => '%s dai l\'assegnazione del compito #%d a %s',
'%s changed the assignee of the task %s to %s' => '%s ha cambiato l\'assegnatario del compito %s a %s',
- 'Column Change' => 'Cambio di colonna',
- 'Position Change' => 'Posizione cambiata',
- 'Assignee Change' => 'Assegnatario cambiato',
'New password for the user "%s"' => 'Nuova password per l\'utente "%s"',
'Choose an event' => 'Scegli un evento',
'Github commit received' => 'Commit di Github ricevuto',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Tutti hanno accesso a questo progetto',
// 'Webhooks' => '',
// 'API' => '',
- 'Integration' => 'Integrazione',
'Github webhooks' => 'Webhooks di Github',
'Help on Github webhooks' => 'Guida ai Webhooks di Github',
'Create a comment from an external provider' => 'Crea un commit da un provider esterno',
'Github issue comment created' => 'Commento ad un Issue di Github creato',
- 'Configure' => 'Configura',
'Project management' => 'Gestione del progetto',
'My projects' => 'I miei progetti',
'Columns' => 'Colonne',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Ripartizione utente per "%s"',
'Clone this project' => 'Clona questo progetto',
'Column removed successfully.' => 'Colonna rimossa con successo',
- 'Edit Project' => 'Modifica progetto',
'Github Issue' => 'Issue di Github',
'Not enough data to show the graph.' => 'Non ci sono abbastanza dati per visualizzare il grafico.',
'Previous' => 'Precendete',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Tutte le corsie',
'All colors' => 'Tutti i colori',
'All status' => 'Tutti gli stati',
- 'Add a comment logging moving the task between columns' => 'Aggiungi un commento per tracciare lo spostamento del compito tra colonne',
'Moved to column %s' => 'Spostato sulla colonna "%s"',
'Change description' => 'Cambia descrizione',
'User dashboard' => 'Bacheca utente',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/ja_JP/translations.php b/app/Locale/ja_JP/translations.php
index 22dd98ff..7c64d54d 100644
--- a/app/Locale/ja_JP/translations.php
+++ b/app/Locale/ja_JP/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'ユーザがいません',
'Forbidden' => 'アクセス拒否',
'Access Forbidden' => 'アクセスが拒否されました',
- 'Only administrators can access to this page.' => '管理者のみがこのページにアクセスできます。',
'Edit user' => 'ユーザを変更する',
'Logout' => 'ログアウト',
'Bad username or password' => 'ユーザ名またはパスワードが違います。',
- 'users' => 'ユーザ',
- 'projects' => 'プロジェクト',
'Edit project' => 'プロジェクトを変更する',
'Name' => '名前',
- 'Activated' => '有効',
'Projects' => 'プロジェクト',
'No project' => 'プロジェクトがありません',
'Project' => 'プロジェクト',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'アクション',
'Inactive' => '無効',
'Active' => '有効',
- 'Column %d' => 'カラム %d',
'Add this column' => 'カラムを追加する',
'%d tasks on the board' => '%d 個のタスク',
'%d tasks in total' => '合計 %d 個のタスク',
@@ -67,14 +62,11 @@ return array(
'New project' => 'プロジェクトを作る',
'Do you really want to remove this project: "%s"?' => 'プロジェクト「%s」を本当に削除しますか?',
'Remove project' => 'プロジェクトの削除',
- 'Boards' => 'ボード',
'Edit the board for "%s"' => 'ボード「%s」を変更する',
'All projects' => 'すべてのプロジェクト',
'Change columns' => 'カラムの変更',
'Add a new column' => 'カラムの追加',
'Title' => 'タイトル',
- 'Add Column' => 'カラムの追加',
- 'Project "%s"' => 'プロジェクト「%s」',
'Nobody assigned' => '担当なし',
'Assigned to %s' => '%sが担当',
'Remove a column' => 'カラムの削除',
@@ -87,16 +79,12 @@ return array(
'Language' => '言語',
'Webhook token:' => 'Webhook トークン:',
'API token:' => 'API トークン:',
- 'More information' => '詳細',
'Database size:' => 'データベースのサイズ:',
'Download the database' => 'データベースのダウンロード',
'Optimize the database' => 'データベースの最適化',
'(VACUUM command)' => '(VACUUM コマンド)',
'(Gzip compressed Sqlite file)' => '(GZip コマンドで圧縮された Sqlite ファイル)',
- 'User settings' => 'ユーザ設定',
- 'My default project:' => '自分のデフォルトプロジェクト:',
'Close a task' => 'タスクをクロースする',
- 'Do you really want to close this task: "%s"?' => 'タスク「%s」をクローズしますか?',
'Edit a task' => 'タスクを変更する',
'Column' => 'カラム',
'Color' => '色',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'パスワードが必要です',
'This value must be an integer' => '整数で入力してください',
'The username must be unique' => 'ユーザ名がすでに使用されています',
- 'The username must be alphanumeric' => 'ユーザ名は英数字で入力してください',
'The user id is required' => 'ユーザ ID が必要です',
'Passwords don\'t match' => 'パスワードが一致しません',
'The confirmation is required' => '確認用のパスワードを入力してください',
- 'The column is required' => 'カラムが必要です',
'The project is required' => 'プロジェクトが必要です',
- 'The color is required' => '色が必要です',
'The id is required' => 'ID が必要です',
'The project id is required' => 'プロジェクト ID が必要です',
'The project name is required' => 'プロジェクト名が必要です',
'This project must be unique' => 'プロジェクト名がすでに使われています',
'The title is required' => 'タイトルが必要です',
- 'The language is required' => '言語が必要です',
'There is no active project, the first step is to create a new project.' => '有効なプロジェクトがありません。まず新しいプロジェクトを作ります。',
'Settings saved successfully.' => '設定を保存しました。',
'Unable to save your settings.' => '設定の保存に失敗しました。',
@@ -173,9 +157,7 @@ return array(
'Date created' => '作成日',
'Date completed' => '完了日',
'Id' => 'ID',
- 'No task' => 'タスクなし',
'Completed tasks' => '完了したタスク',
- 'List of projects' => 'プロジェクトの一覧',
'Completed tasks for "%s"' => '「%s」の完了したタスク',
'%d closed tasks' => '%d 個のクローズしたタスク',
'No task for this project' => 'このプロジェクトにタスクがありません',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'データベース上で情報が見つかりませんでした!',
'Page not found' => 'ページが見つかりません',
'Complexity' => '複雑さ',
- 'limit' => '制限',
'Task limit' => 'タスク数制限',
'Task count' => 'タスク数',
- 'This value must be greater than %d' => '%d より大きな値を入力してください',
'Edit project access list' => 'プロジェクトのアクセス許可を変更',
- 'Edit users access' => 'ユーザのアクセス許可を変更',
'Allow this user' => 'このユーザを許可する',
- 'Only those users have access to this project:' => 'これらのユーザのみがプロジェクトにアクセスできます:',
'Don\'t forget that administrators have access to everything.' => '管理者には全ての権限が与えられます。',
'Revoke' => '許可を取り下げる',
'List of authorized users' => '許可されたユーザ',
'User' => 'ユーザ',
'Nobody have access to this project.' => 'だれもプロジェクトにアクセスできません。',
- 'You are not allowed to access to this project.' => 'プロジェクトへのアクセスが許可されていません。',
'Comments' => 'コメント',
- 'Post comment' => 'コメントを書く',
'Write your text in Markdown' => 'Markdown 記法で書く',
'Leave a comment' => 'コメントを書く',
'Comment is required' => 'コメントを入力してください',
'Leave a description' => '説明を書く',
'Comment added successfully.' => 'コメントを追加しました。',
'Unable to create your comment.' => 'コメントの追加に失敗しました。',
- 'The description is required' => '説明を入力してください',
'Edit this task' => 'タスクを変更する',
'Due Date' => '期限',
'Invalid date' => '日付が無効です',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'このアクションを保存する',
'Do you really want to remove this action: "%s"?' => '自動アクション「%s」を削除しますか?',
'Remove an automatic action' => '自動アクションの削除',
- 'Close the task' => 'タスクのクローズ',
'Assign the task to a specific user' => 'タスクの担当者を割り当てる',
'Assign the task to the person who does the action' => 'アクションを起こしたユーザを担当者にする',
'Duplicate the task to another project' => '別のプロジェクトにタスクを複製する',
'Move a task to another column' => 'タスクを別のカラムに移動する',
- 'Move a task to another position in the same column' => 'カラム上でのタスクの順序を変える',
'Task modification' => 'タスクの変更',
'Task creation' => 'タスクを作る',
- 'Open a closed task' => 'タスクを再オープンする',
'Closing a task' => 'タスクをクローズする',
'Assign a color to a specific user' => '色をユーザに割り当てる',
'Column title' => 'カラムのタイトル',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => '別のプロジェクトに複製する',
'Duplicate' => '複製する',
'link' => 'リンク',
- 'Update this comment' => 'コメントを更新する',
'Comment updated successfully.' => 'コメントを更新しました。',
'Unable to update your comment.' => 'コメントの更新に失敗しました。',
'Remove a comment' => 'コメントを削除する',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'コメントの削除に失敗しました。',
'Do you really want to remove this comment?' => 'コメントを削除しますか?',
'Only administrators or the creator of the comment can access to this page.' => '管理者かコメントの作成者のみがこのページアクセスできます。',
- 'Details' => '詳細',
'Current password for the user "%s"' => 'ユーザ「%s」の現在のパスワード',
'The current password is required' => '現在のパスワードを入力してください',
'Wrong password' => 'パスワードが違います',
- 'Reset all tokens' => '全てのトークンを再生成する',
- 'All tokens have been regenerated.' => '全てのトークンが再生成されました',
'Unknown' => '不明',
'Last logins' => 'ログインの一覧',
'Login date' => 'ログイン日時',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Google アカウントのリンクを解除する',
'Login with my Google Account' => 'Google アカウントでログインする',
'Project not found.' => 'プロジェクトが見つかりません。',
- 'Task #%d' => 'タスク #%d',
'Task removed successfully.' => 'タスクを削除しました。',
'Unable to remove this task.' => 'タスクの削除に失敗しました。',
'Remove a task' => 'タスクの削除',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'カテゴリを削除できませんでした。',
'Category modification for the project "%s"' => 'プロジェクト「%s」のカテゴリの変更',
'Category Name' => 'カテゴリ名',
- 'Categories for the project "%s"' => 'プロジェクト「%s」のカテゴリ',
'Add a new category' => 'カテゴリの追加',
'Do you really want to remove this category: "%s"?' => 'カテゴリ「%s」を削除しますか?',
'Filter by category' => 'カテゴリでフィルタリング',
@@ -390,7 +356,6 @@ return array(
'Modification date' => '変更日',
'Completion date' => '完了日',
'Clone' => '複製',
- 'Clone Project' => 'プロジェクトの複製',
'Project cloned successfully.' => 'プロジェクトを複製しました。',
'Unable to clone this project.' => 'プロジェクトの複製に失敗しました。',
'Email notifications' => 'メール通知',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => '添付ファイル「%s」が追加されました',
'Comment updated' => 'コメントが更新されました',
'New comment posted by %s' => '「%s」の新しいコメントが追加されました',
- 'List of due tasks for the project "%s"' => 'プロジェクト「%s」の期限切れのタスク',
'New attachment' => '新しい添付ファイル',
'New comment' => '新しいコメント',
'New subtask' => '新しいサブタスク',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'タスクの更新',
'Task closed' => 'タスクのクローズ',
'Task opened' => 'タスクのオープン',
- '[%s][Due tasks]' => '[%s][タスク期限切れ]',
- '[Kanboard] Notification' => '[Kanboard] 通知',
'I want to receive notifications only for those projects:' => '以下のプロジェクトにのみ通知を受け取る:',
'view the task on Kanboard' => 'Kanboard でタスクを見る',
'Public access' => '公開アクセス設定',
- 'Category management' => 'カテゴリを管理する',
'User management' => 'ユーザを管理する',
'Active tasks' => 'アクティブなタスク',
'Disable public access' => '公開アクセスを無効にする',
'Enable public access' => '公開アクセスを有効にする',
- 'Active projects' => 'プロジェクト',
- 'Inactive projects' => '無効化されたプロジェクト',
'Public access disabled' => '公開アクセスは無効化されています',
'Do you really want to disable this project: "%s"?' => '「%s」を無効にしますか?',
- 'Do you really want to duplicate this project: "%s"?' => '「%s」を複製しますか?',
'Do you really want to enable this project: "%s"?' => '「%s」を有効にしますか?',
'Project activation' => 'プロジェクトのアクティベーション',
'Move the task to another project' => 'タスクを別プロジェクトに移す',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => '担当者の変更',
'%s change the assignee of the task #%d to %s' => '%s がタスク #%d の担当を %s に変更しました',
'%s changed the assignee of the task %s to %s' => '%s がタスク %s の担当を %s に変更しました',
- 'Column Change' => 'カラムの変更',
- 'Position Change' => '位置の変更',
- 'Assignee Change' => '担当の変更',
'New password for the user "%s"' => 'ユーザ「%s」の新しいパスワード',
'Choose an event' => 'イベントの選択',
'Github commit received' => 'Github のコミットを受け取った',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => '誰でもこのプロジェクトにアクセスできます。',
'Webhooks' => 'Webhook',
'API' => 'API',
- 'Integration' => '連携',
'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Github webhook のヘルプ',
'Create a comment from an external provider' => '外部サービスからコメントを作成する',
'Github issue comment created' => 'Github Issue コメントが作られました',
- 'Configure' => '設定',
'Project management' => 'プロジェクト・マネジメント',
'My projects' => '自分のプロジェクト',
'Columns' => 'カラム',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '「%s」の担当者分布',
'Clone this project' => 'このプロジェクトを複製する',
'Column removed successfully.' => 'カラムを削除しました',
- 'Edit Project' => 'プロジェクトを編集する',
'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'グラフを描画するには出たが足りません',
'Previous' => '戻る',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => '全てのスイムレーン',
'All colors' => '全ての色',
'All status' => '全てのステータス',
- 'Add a comment logging moving the task between columns' => 'カラム間のタスク移動をコメントに記録',
'Moved to column %s' => 'カラム %s へ移動しました',
'Change description' => '説明を変更',
'User dashboard' => 'ユーザダッシュボード',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/nl_NL/translations.php b/app/Locale/nl_NL/translations.php
index 311f998f..d7111b38 100644
--- a/app/Locale/nl_NL/translations.php
+++ b/app/Locale/nl_NL/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Geen gebruiker',
'Forbidden' => 'Geweigerd',
'Access Forbidden' => 'Toegang geweigerd',
- 'Only administrators can access to this page.' => 'Alleen administrators hebben toegang tot deze pagina.',
'Edit user' => 'Gebruiker bewerken',
'Logout' => 'Uitloggen',
'Bad username or password' => 'Verkeerde gebruikersnaam of wachtwoord',
- 'users' => 'gebruikers',
- 'projects' => 'projecten',
'Edit project' => 'Project bewerken',
'Name' => 'Naam',
- 'Activated' => 'Geactiveerd',
'Projects' => 'Projecten',
'No project' => 'Geen project',
'Project' => 'Project',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Acties',
'Inactive' => 'Inactief',
'Active' => 'Actief',
- 'Column %d' => 'Kolom %d',
'Add this column' => 'Deze kolom toevoegen',
'%d tasks on the board' => '%d taken op het bord',
'%d tasks in total' => '%d taken in totaal',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nieuw project',
'Do you really want to remove this project: "%s"?' => 'Weet u zeker dat u dit project wil verwijderen : « %s » ?',
'Remove project' => 'Project verwijderen',
- 'Boards' => 'Borden',
'Edit the board for "%s"' => 'Bord bewerken voor « %s »',
'All projects' => 'Alle projecten',
'Change columns' => 'Kolommen veranderen',
'Add a new column' => 'Kolom toevoegen',
'Title' => 'Titel',
- 'Add Column' => 'Kolom toevoegen',
- 'Project "%s"' => 'Project « %s »',
'Nobody assigned' => 'Niemand toegewezen',
'Assigned to %s' => 'Toegewezen aan %s',
'Remove a column' => 'Kolom verwijderen',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Taal',
'Webhook token:' => 'Webhook token :',
'API token:' => 'API token :',
- 'More information' => 'Meer informatie',
'Database size:' => 'Database grootte :',
'Download the database' => 'Download de database',
'Optimize the database' => 'Optimaliseer de database',
'(VACUUM command)' => '(VACUUM commando)',
'(Gzip compressed Sqlite file)' => '(Gzip ingepakt Sqlite bestand)',
- 'User settings' => 'Gebruikers instellingen',
- 'My default project:' => 'Mijn standaard project : ',
'Close a task' => 'Taak sluiten',
- 'Do you really want to close this task: "%s"?' => 'Weet u zeker dat u deze taak wil sluiten : « %s » ?',
'Edit a task' => 'Taak bewerken',
'Column' => 'Kolom',
'Color' => 'Kleur',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Het wachtwoord is verplicht',
'This value must be an integer' => 'Deze waarde dient een integer te zijn',
'The username must be unique' => 'De gebruikersnaam moet uniek zijn',
- 'The username must be alphanumeric' => 'De gebruikersnaam moet alfanumeriek zijn',
'The user id is required' => 'Het gebruikers id is verplicht',
'Passwords don\'t match' => 'De wachtwoorden komen niet overeen',
'The confirmation is required' => 'De bevestiging is verplicht',
- 'The column is required' => 'De kolom is verplicht',
'The project is required' => 'Het project is verplicht',
- 'The color is required' => 'De kleur is verplicht',
'The id is required' => 'Het id is verplicht',
'The project id is required' => 'Het project id is verplicht',
'The project name is required' => 'De projectnaam is verplicht',
'This project must be unique' => 'Dit project moet uniek zijn',
'The title is required' => 'De titel is verplicht',
- 'The language is required' => 'De taal is verplicht',
'There is no active project, the first step is to create a new project.' => 'Er is geen actief project, de eerste stap is een nieuw project aanmaken.',
'Settings saved successfully.' => 'Instellingen succesvol opgeslagen.',
'Unable to save your settings.' => 'Instellingen opslaan niet gelukt.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Datum aangemaakt',
'Date completed' => 'Datum voltooid',
'Id' => 'Id',
- 'No task' => 'Geen taak',
'Completed tasks' => 'Voltooide taken',
- 'List of projects' => 'Lijst van projecten',
'Completed tasks for "%s"' => 'Vooltooide taken voor « %s »',
'%d closed tasks' => '%d gesloten taken',
'No task for this project' => 'Geen taken voor dit project',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Sorry deze informatie kon niet worden gevonden in de database !',
'Page not found' => 'Pagina niet gevonden',
'Complexity' => 'Complexiteit',
- 'limit' => 'Limiet',
'Task limit' => 'Taak limiet.',
'Task count' => 'Aantal taken',
- 'This value must be greater than %d' => 'Deze waarde moet groter zijn dan %d',
'Edit project access list' => 'Aanpassen toegangsrechten project',
- 'Edit users access' => 'Gebruikerstoegang aanpassen',
'Allow this user' => 'Deze gebruiker toestaan',
- 'Only those users have access to this project:' => 'Alleen deze gebruikers hebben toegang tot dit project :',
'Don\'t forget that administrators have access to everything.' => 'Vergeet niet dat administrators overal toegang hebben.',
'Revoke' => 'Intrekken',
'List of authorized users' => 'Lijst met geautoriseerde gebruikers',
'User' => 'Gebruiker',
'Nobody have access to this project.' => 'Niemand heeft toegang tot dit project',
- 'You are not allowed to access to this project.' => 'U heeft geen toegang tot dit project.',
'Comments' => 'Commentaar',
- 'Post comment' => 'Commentaar toevoegen',
'Write your text in Markdown' => 'Schrijf uw tekst in Markdown',
'Leave a comment' => 'Schrijf een commentaar',
'Comment is required' => 'Commentaar is verplicht',
'Leave a description' => 'Schrijf een omschrijving',
'Comment added successfully.' => 'Commentaar succesvol toegevoegd.',
'Unable to create your comment.' => 'Commentaar toevoegen niet gelukt.',
- 'The description is required' => 'Omschrijving is verplicht',
'Edit this task' => 'Deze taak aanpassen',
'Due Date' => 'Vervaldag',
'Invalid date' => 'Ongeldige datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Actie opslaan',
'Do you really want to remove this action: "%s"?' => 'Weet u zeker dat u de volgende actie wil verwijderen : « %s » ?',
'Remove an automatic action' => 'Automatische actie verwijderen',
- 'Close the task' => 'Taak sluiten',
'Assign the task to a specific user' => 'Taak toewijzen aan een gebruiker',
'Assign the task to the person who does the action' => 'Taak toewijzen aan een gebruiker die de actie uitvoert',
'Duplicate the task to another project' => 'Taak dupliceren in een ander project',
'Move a task to another column' => 'Taak verplaatsen naar een andere kolom',
- 'Move a task to another position in the same column' => 'Taak verplaatsen naar een andere positie in dezelfde kolom',
'Task modification' => 'Taak aanpassen',
'Task creation' => 'Taak aanmaken',
- 'Open a closed task' => 'Gesloten taak openen',
'Closing a task' => 'Taak sluiten',
'Assign a color to a specific user' => 'Wijs een kleur toe aan een gebruiker',
'Column title' => 'Kolom titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Dupliceren in een ander project',
'Duplicate' => 'Dupliceren',
'link' => 'koppelen',
- 'Update this comment' => 'Commentaar aanpassen',
'Comment updated successfully.' => 'Commentaar succesvol aangepast.',
'Unable to update your comment.' => 'Commentaar aanpassen niet gelukt.',
'Remove a comment' => 'Commentaar verwijderen',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Commentaar verwijderen niet gelukt.',
'Do you really want to remove this comment?' => 'Weet u zeker dat u dit commentaar wil verwijderen ?',
'Only administrators or the creator of the comment can access to this page.' => 'Alleen administrators of de aanmaker van het commentaar hebben toegang tot deze pagina.',
- 'Details' => 'Details',
'Current password for the user "%s"' => 'Huidig wachtwoord voor gebruiker « %s »',
'The current password is required' => 'Huidig wachtwoord is verplicht',
'Wrong password' => 'Onjuist wachtwoord',
- 'Reset all tokens' => 'Alle tokens resetten',
- 'All tokens have been regenerated.' => 'Alle tokens zijn opnieuw gegenereerd.',
'Unknown' => 'Onbekend',
'Last logins' => 'Laatste logins',
'Login date' => 'Login datum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Link met Google Account verwijderen',
'Login with my Google Account' => 'Inloggen met mijn Google Account',
'Project not found.' => 'Project niet gevonden.',
- 'Task #%d' => 'Taak %d',
'Task removed successfully.' => 'Taak succesvol verwijderd.',
'Unable to remove this task.' => 'Taak verwijderen niet gelukt.',
'Remove a task' => 'Taak verwijderen',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Categorie verwijderen niet gelukt.',
'Category modification for the project "%s"' => 'Categorie aanpassen voor project « %s »',
'Category Name' => 'Categorie naam',
- 'Categories for the project "%s"' => 'Categorieën voor project « %s »',
'Add a new category' => 'Categorie toevoegen',
'Do you really want to remove this category: "%s"?' => 'Weet u zeker dat u deze categorie wil verwijderen: « %s » ?',
'Filter by category' => 'Filter op categorie',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Wijzigingsdatum',
'Completion date' => 'Afgerond op',
'Clone' => 'Kloon',
- 'Clone Project' => 'Project klonen',
'Project cloned successfully.' => 'Project succesvol gekloond.',
'Unable to clone this project.' => 'Klonen van project niet gelukt.',
'Email notifications' => 'Email notificatie',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nieuwe bijlage toegevoegd « %s »',
'Comment updated' => 'Commentaar aangepast',
'New comment posted by %s' => 'Nieuw commentaar geplaatst door « %s »',
- 'List of due tasks for the project "%s"' => 'Lijst van taken die binnenkort voltooid moeten worden voor project « %s »',
'New attachment' => 'Nieuwe bijlage',
'New comment' => 'Nieuw commentaar',
'New subtask' => 'Nieuwe subtaak',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Taak aangepast',
'Task closed' => 'Taak gesloten',
'Task opened' => 'Taak geopend',
- '[%s][Due tasks]' => '[%s][binnekort te voltooien taken]',
- '[Kanboard] Notification' => '[Kanboard] Notificatie',
'I want to receive notifications only for those projects:' => 'Ik wil notificaties ontvangen van de volgende projecten :',
'view the task on Kanboard' => 'taak bekijken op Kanboard',
'Public access' => 'Publieke toegang',
- 'Category management' => 'Categorie management',
'User management' => 'Gebruikers management',
'Active tasks' => 'Actieve taken',
'Disable public access' => 'Publieke toegang uitschakelen',
'Enable public access' => 'Publieke toegang inschakelen',
- 'Active projects' => 'Actieve projecten',
- 'Inactive projects' => 'Inactieve projecten',
'Public access disabled' => 'Publieke toegang uitgeschakeld',
'Do you really want to disable this project: "%s"?' => 'Weet u zeker dat u dit project wil uitschakelen : « %s » ?',
- 'Do you really want to duplicate this project: "%s"?' => 'Weet u zeker dat u dit project wil dupliceren : « %s » ?',
'Do you really want to enable this project: "%s"?' => 'Weet u zeker dat u dit project wil activeren : « %s » ?',
'Project activation' => 'Project activatie',
'Move the task to another project' => 'Taak verplaatsen naar een ander project',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Taak toegewezene verandering',
'%s change the assignee of the task #%d to %s' => '%s heeft de toegewezene voor taak %d veranderd in %s',
'%s changed the assignee of the task %s to %s' => '%s heeft de toegewezene voor taak %s veranderd in %s',
- 'Column Change' => 'Kolom verandering',
- 'Position Change' => 'Positie verandering',
- 'Assignee Change' => 'Toegewezene verandering',
'New password for the user "%s"' => 'Nieuw wachtwoord voor gebruiker « %s »',
'Choose an event' => 'Kies een gebeurtenis',
'Github commit received' => 'Github commentaar ontvangen',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Iedereen heeft toegang tot dit project.',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Integratue',
'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Hulp bij Github webhooks',
'Create a comment from an external provider' => 'Voeg een commentaar toe van een externe provider',
'Github issue comment created' => 'Github issue commentaar aangemaakt',
- 'Configure' => 'Configureren',
'Project management' => 'Project management',
'My projects' => 'Mijn projecten',
'Columns' => 'Kolommen',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Gebruikerverdeling voor « %s »',
'Clone this project' => 'Kloon dit project',
'Column removed successfully.' => 'Kolom succesvol verwijderd.',
- 'Edit Project' => 'Project aanpassen',
'Github Issue' => 'Github issue',
'Not enough data to show the graph.' => 'Niet genoeg data om de grafiek te laten zien.',
// 'Previous' => '',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alle swimlanes',
'All colors' => 'Alle kleuren',
'All status' => 'Alle statussen',
- 'Add a comment logging moving the task between columns' => 'Voeg een commentaar toe bij het verplaatsen van een taak tussen kolommen',
'Moved to column %s' => 'Verplaatst naar kolom %s',
'Change description' => 'Verandering omschrijving',
'User dashboard' => 'Gebruiker dashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/pl_PL/translations.php b/app/Locale/pl_PL/translations.php
index 41355c9b..8e2ac4a0 100644
--- a/app/Locale/pl_PL/translations.php
+++ b/app/Locale/pl_PL/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Brak użytkowników',
'Forbidden' => 'Zabroniony',
'Access Forbidden' => 'Dostęp zabroniony',
- 'Only administrators can access to this page.' => 'Tylko administrator może wejść na tą stronę.',
'Edit user' => 'Edytuj użytkownika',
'Logout' => 'Wyloguj',
'Bad username or password' => 'Zła nazwa użytkownika lub hasło',
- 'users' => 'użytkownicy',
- 'projects' => 'projekty',
'Edit project' => 'Edytuj projekt',
'Name' => 'Nazwa',
- 'Activated' => 'Aktywny',
'Projects' => 'Projekty',
'No project' => 'Brak projektów',
'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Akcje',
'Inactive' => 'Nieaktywny',
'Active' => 'Aktywny',
- 'Column %d' => 'Kolumna %d',
'Add this column' => 'Dodaj kolumnę',
'%d tasks on the board' => '%d zadań na tablicy',
'%d tasks in total' => '%d wszystkich zadań',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nowy projekt',
'Do you really want to remove this project: "%s"?' => 'Na pewno chcesz usunąć projekt: "%s"?',
'Remove project' => 'Usuń projekt',
- 'Boards' => 'Tablice',
'Edit the board for "%s"' => 'Edytuj tablicę dla "%s"',
'All projects' => 'Wszystkie projekty',
'Change columns' => 'Zmień kolumny',
'Add a new column' => 'Dodaj nową kolumnę',
'Title' => 'Tytuł',
- 'Add Column' => 'Dodaj kolumnę',
- 'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nikt nie przypisany',
'Assigned to %s' => 'Przypisane do %s',
'Remove a column' => 'Usuń kolumnę',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Język',
'Webhook token:' => 'Token :',
'API token:' => 'Token dla API',
- 'More information' => 'Więcej informacji',
'Database size:' => 'Rozmiar bazy danych :',
'Download the database' => 'Pobierz bazę danych',
'Optimize the database' => 'Optymalizuj bazę danych',
'(VACUUM command)' => '(komenda VACUUM)',
'(Gzip compressed Sqlite file)' => '(baza danych spakowana Gzip)',
- 'User settings' => 'Ustawienia użytkownika',
- 'My default project:' => 'Mój domyślny projekt:',
'Close a task' => 'Zakończ zadanie',
- 'Do you really want to close this task: "%s"?' => 'Na pewno chcesz zakończyć to zadanie: "%s"?',
'Edit a task' => 'Edytuj zadanie',
'Column' => 'Kolumna',
'Color' => 'Kolor',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Hasło jest wymagane',
'This value must be an integer' => 'Wartość musi być liczbą całkowitą',
'The username must be unique' => 'Nazwa użytkownika musi być unikalna',
- 'The username must be alphanumeric' => 'Nazwa użytkownika musi być alfanumeryczna',
'The user id is required' => 'ID użytkownika jest wymagane',
'Passwords don\'t match' => 'Hasła nie pasują do siebie',
'The confirmation is required' => 'Wymagane jest potwierdzenie',
- 'The column is required' => 'Kolumna jest wymagana',
'The project is required' => 'Projekt jest wymagany',
- 'The color is required' => 'Kolor jest wymagany',
'The id is required' => 'ID jest wymagane',
'The project id is required' => 'ID projektu jest wymagane',
'The project name is required' => 'Nazwa projektu jest wymagana',
'This project must be unique' => 'Projekt musi być unikalny',
'The title is required' => 'Tutył jest wymagany',
- 'The language is required' => 'Język jest wymagany',
'There is no active project, the first step is to create a new project.' => 'Brak aktywnych projektów. Pierwszym krokiem jest utworzenie nowego projektu.',
'Settings saved successfully.' => 'Ustawienia zapisane.',
'Unable to save your settings.' => 'Nie udało się zapisać ustawień.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Data utworzenia',
'Date completed' => 'Data zakończenia',
'Id' => 'Id',
- 'No task' => 'Brak zadań',
'Completed tasks' => 'Ukończone zadania',
- 'List of projects' => 'Lista projektów',
'Completed tasks for "%s"' => 'Zadania zakończone dla "%s"',
'%d closed tasks' => '%d zamkniętych zadań',
'No task for this project' => 'Brak zadań dla tego projektu',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Niestety nie znaleziono tej informacji w bazie danych',
'Page not found' => 'Strona nie istnieje',
'Complexity' => 'Poziom trudności',
- 'limit' => 'limit',
'Task limit' => 'Limit zadań',
'Task count' => 'Liczba zadań',
- 'This value must be greater than %d' => 'Wartość musi być większa niż %d',
'Edit project access list' => 'Edycja list dostępu dla projektu',
- 'Edit users access' => 'Edytuj dostęp',
'Allow this user' => 'Dodaj użytkownika',
- 'Only those users have access to this project:' => 'Użytkownicy mający dostęp:',
'Don\'t forget that administrators have access to everything.' => 'Pamiętaj: Administratorzy mają zawsze dostęp do wszystkiego!',
'Revoke' => 'Odbierz dostęp',
'List of authorized users' => 'Lista użytkowników mających dostęp',
'User' => 'Użytkownik',
'Nobody have access to this project.' => 'Żaden użytkownik nie ma dostępu do tego projektu',
- 'You are not allowed to access to this project.' => 'Nie masz dostępu do tego projektu.',
'Comments' => 'Komentarze',
- 'Post comment' => 'Dodaj komentarz',
'Write your text in Markdown' => 'Możesz użyć Markdown',
'Leave a comment' => 'Zostaw komentarz',
'Comment is required' => 'Komentarz jest wymagany',
'Leave a description' => 'Dodaj opis',
'Comment added successfully.' => 'Komentarz dodany',
'Unable to create your comment.' => 'Nie udało się dodać komentarza',
- 'The description is required' => 'Opis jest wymagany',
'Edit this task' => 'Edytuj zadanie',
'Due Date' => 'Termin',
'Invalid date' => 'Błędna data',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Zapisz akcję',
'Do you really want to remove this action: "%s"?' => 'Na pewno chcesz usunąć akcję "%s"?',
'Remove an automatic action' => 'Usuń akcję automatyczną',
- 'Close the task' => 'Zamknij zadanie',
'Assign the task to a specific user' => 'Przypisz zadanie do wybranego użytkownika',
'Assign the task to the person who does the action' => 'Przypisz zadanie to osoby wykonującej akcję',
'Duplicate the task to another project' => 'Kopiuj zadanie do innego projektu',
'Move a task to another column' => 'Przeniesienie zadania do innej kolumny',
- 'Move a task to another position in the same column' => 'Zmiana pozycji zadania w kolumnie',
'Task modification' => 'Modyfikacja zadania',
'Task creation' => 'Tworzenie zadania',
- 'Open a closed task' => 'Otwarcie zamkniętego zadania',
'Closing a task' => 'Zamknięcie zadania',
'Assign a color to a specific user' => 'Przypisz kolor do wybranego użytkownika',
'Column title' => 'Tytuł kolumny',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Skopiuj do innego projektu',
'Duplicate' => 'Utwórz kopię',
'link' => 'link',
- 'Update this comment' => 'Zapisz komentarz',
'Comment updated successfully.' => 'Komentarz został zapisany.',
'Unable to update your comment.' => 'Nie udało się zapisanie komentarza.',
'Remove a comment' => 'Usuń komentarz',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Nie udało się usunąć komentarza.',
'Do you really want to remove this comment?' => 'Czy na pewno usunąć ten komentarz?',
'Only administrators or the creator of the comment can access to this page.' => 'Tylko administratorzy oraz autor komentarza ma dostęp do tej strony.',
- 'Details' => 'Szczegóły',
'Current password for the user "%s"' => 'Aktualne hasło dla użytkownika "%s"',
'The current password is required' => 'Wymanage jest aktualne hasło',
'Wrong password' => 'Błędne hasło',
- 'Reset all tokens' => 'Zresetuj wszystkie tokeny',
- 'All tokens have been regenerated.' => 'Wszystkie tokeny zostały zresetowane.',
'Unknown' => 'Nieznany',
'Last logins' => 'Ostatnie logowania',
'Login date' => 'Data logowania',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Rozłącz z kontem Google',
'Login with my Google Account' => 'Zaloguj przy pomocy konta Google',
'Project not found.' => 'Projek nieznaleziony.',
- 'Task #%d' => 'Zadanie #%d',
'Task removed successfully.' => 'Zadanie usunięto pomyślnie.',
'Unable to remove this task.' => 'Nie można usunąć tego zadania.',
'Remove a task' => 'Usuń zadanie',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Nie można usunąć tej kategorii.',
'Category modification for the project "%s"' => 'Zmiana kategorii projektu "%s"',
'Category Name' => 'Nazwa kategorii',
- 'Categories for the project "%s"' => 'Kategorie projektu "%s"',
'Add a new category' => 'Utwórz nową kategorię',
'Do you really want to remove this category: "%s"?' => 'Czy na pewno chcesz usunąć kategorię: "%s"?',
'Filter by category' => 'Filtruj według kategorii',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data modyfikacji',
'Completion date' => 'Data ukończenia',
'Clone' => 'Sklonuj',
- 'Clone Project' => 'Sklonuj projekt',
'Project cloned successfully.' => 'Projekt sklonowany pomyślnie.',
'Unable to clone this project.' => 'Nie można sklonować projektu.',
'Email notifications' => 'Powiadomienia email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nowy załącznik dodany "%s"',
'Comment updated' => 'Komentarz zaktualizowany',
'New comment posted by %s' => 'Nowy komentarz dodany przez %s',
- 'List of due tasks for the project "%s"' => 'Lista zadań oczekujących projektu "%s"',
'New attachment' => 'Nowy załącznik',
'New comment' => 'Nowy Komentarz',
'New subtask' => 'Nowe pod-zadanie',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Zaktualizowane zadanie',
'Task closed' => 'Zadanie zamknięte',
'Task opened' => 'Zadanie otwarte',
- '[%s][Due tasks]' => '[%s][Zadania oczekujące]',
- '[Kanboard] Notification' => '[Kanboard] Powiadomienie',
'I want to receive notifications only for those projects:' => 'Chcę otrzymywać powiadiomienia tylko dla tych projektów:',
'view the task on Kanboard' => 'Zobacz zadanie',
'Public access' => 'Dostęp publiczny',
- 'Category management' => 'Zarządzanie kategoriami',
'User management' => 'Zarządzanie użytkownikami',
'Active tasks' => 'Aktywne zadania',
'Disable public access' => 'Zablokuj dostęp publiczny',
'Enable public access' => 'Odblokuj dostęp publiczny',
- 'Active projects' => 'Aktywne projekty',
- 'Inactive projects' => 'Nieaktywne projekty',
'Public access disabled' => 'Dostęp publiczny zablokowany',
'Do you really want to disable this project: "%s"?' => 'Czy na pewno chcesz zablokować projekt: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Czy na pewno chcesz zduplikować projekt: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Czy na pewno chcesz odblokować projekt: "%s"?',
'Project activation' => 'Aktywacja projekt',
'Move the task to another project' => 'Przenieś zadanie do innego projektu',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Zmień osobę odpowiedzialną',
'%s change the assignee of the task #%d to %s' => '%s zmienił osobę odpowiedzialną za zadanie #%d na %s',
'%s changed the assignee of the task %s to %s' => '%s zmienił osobę odpowiedzialną za zadanie %s na %s',
- 'Column Change' => 'Zmiana kolumny',
- 'Position Change' => 'Zmiana pozycji',
- 'Assignee Change' => 'Zmiana osoby odpowiedzialnej',
'New password for the user "%s"' => 'Nowe hasło użytkownika "%s"',
'Choose an event' => 'Wybierz zdarzenie',
// 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Wszyscy mają dostęp do tego projektu.',
// 'Webhooks' => '',
// 'API' => '',
- 'Integration' => 'Integracja',
// 'Github webhooks' => '',
// 'Help on Github webhooks' => '',
'Create a comment from an external provider' => 'Utwórz komentarz od zewnętrznego dostawcy',
// 'Github issue comment created' => '',
- 'Configure' => 'Konfiguruj',
'Project management' => 'Menadżer projektu',
'My projects' => 'Moje projekty',
'Columns' => 'Kolumny',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Przydział użytkownika dla "%s"',
'Clone this project' => 'Sklonuj ten projekt',
'Column removed successfully.' => 'Kolumna usunięta pomyślnie.',
- 'Edit Project' => 'Edytuj projekt',
// 'Github Issue' => '',
'Not enough data to show the graph.' => 'Za mało danych do utworzenia wykresu.',
'Previous' => 'Poprzedni',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Wszystkie procesy',
'All colors' => 'Wszystkie kolory',
'All status' => 'Wszystkie statusy',
- 'Add a comment logging moving the task between columns' => 'Dodaj komentarz dokumentujący przeniesienie zadania pomiędzy kolumnami',
'Moved to column %s' => 'Przeniosiono do kolumny %s',
'Change description' => 'Zmień opis',
'User dashboard' => 'Panel użytkownika',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Uwierzytelnianie dwuetapowe włączone',
'Unable to update this user.' => 'Nie można zaktualizować tego użytkownika',
'There is no user management for private projects.' => 'Dla projektów prywatnych nie występuje zarządzanie użytkownikami.',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/pt_BR/translations.php b/app/Locale/pt_BR/translations.php
index 91700f58..f94f0911 100644
--- a/app/Locale/pt_BR/translations.php
+++ b/app/Locale/pt_BR/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Sem usuário',
'Forbidden' => 'Proibido',
'Access Forbidden' => 'Acesso negado',
- 'Only administrators can access to this page.' => 'Somente administradores têm acesso a esta página.',
'Edit user' => 'Editar usuário',
'Logout' => 'Sair',
'Bad username or password' => 'Usuário ou senha inválidos',
- 'users' => 'usuários',
- 'projects' => 'projetos',
'Edit project' => 'Editar projeto',
'Name' => 'Nome',
- 'Activated' => 'Ativado',
'Projects' => 'Projetos',
'No project' => 'Nenhum projeto',
'Project' => 'Projeto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Ações',
'Inactive' => 'Inativo',
'Active' => 'Ativo',
- 'Column %d' => 'Coluna %d',
'Add this column' => 'Adicionar esta coluna',
'%d tasks on the board' => '%d tarefas no board',
'%d tasks in total' => '%d tarefas no total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Novo projeto',
'Do you really want to remove this project: "%s"?' => 'Você realmente deseja remover este projeto: "%s" ?',
'Remove project' => 'Remover projeto',
- 'Boards' => 'Boards',
'Edit the board for "%s"' => 'Editar o board para "%s"',
'All projects' => 'Todos os projetos',
'Change columns' => 'Modificar colunas',
'Add a new column' => 'Adicionar uma nova coluna',
'Title' => 'Título',
- 'Add Column' => 'Adicionar Coluna',
- 'Project "%s"' => 'Projeto "%s"',
'Nobody assigned' => 'Ninguém designado',
'Assigned to %s' => 'Designado para %s',
'Remove a column' => 'Remover uma coluna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Idioma',
'Webhook token:' => 'Token de webhooks:',
'API token:' => 'API Token:',
- 'More information' => 'Mais informações',
'Database size:' => 'Tamanho do banco de dados:',
'Download the database' => 'Download do banco de dados',
'Optimize the database' => 'Otimizar o banco de dados',
'(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(Arquivo Sqlite comprimido com Gzip)',
- 'User settings' => 'Configurações do usuário',
- 'My default project:' => 'Meu projeto padrão:',
'Close a task' => 'Finalizar uma tarefa',
- 'Do you really want to close this task: "%s"?' => 'Você realmente deseja finalizar esta tarefa: "%s"?',
'Edit a task' => 'Editar uma tarefa',
'Column' => 'Coluna',
'Color' => 'Cor',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'A senha é obrigatória',
'This value must be an integer' => 'O valor deve ser um número inteiro',
'The username must be unique' => 'O nome de usuário deve ser único',
- 'The username must be alphanumeric' => 'O nome de usuário deve ser alfanumérico',
'The user id is required' => 'O ID de usuário é obrigatório',
'Passwords don\'t match' => 'As senhas não coincidem',
'The confirmation is required' => 'A confirmação é obrigatória',
- 'The column is required' => 'A coluna é obrigatória',
'The project is required' => 'O projeto é obrigatório',
- 'The color is required' => 'A cor é obrigatória',
'The id is required' => 'O ID é obrigatório',
'The project id is required' => 'O ID do projeto é obrigatório',
'The project name is required' => 'O nome do projeto é obrigatório',
'This project must be unique' => 'Este projeto deve ser único',
'The title is required' => 'O título é obrigatório',
- 'The language is required' => 'O idioma é obrigatório',
'There is no active project, the first step is to create a new project.' => 'Não há projeto ativo. O primeiro passo é criar um novo projeto.',
'Settings saved successfully.' => 'Configurações salvas com sucesso.',
'Unable to save your settings.' => 'Não é possível salvar suas configurações.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Data de criação',
'Date completed' => 'Data da finalização',
'Id' => 'Id',
- 'No task' => 'Nenhuma tarefa',
'Completed tasks' => 'Tarefas completadas',
- 'List of projects' => 'Lista de projetos',
'Completed tasks for "%s"' => 'Tarefas completadas por "%s"',
'%d closed tasks' => '%d tarefas finalizadas',
'No task for this project' => 'Não há tarefa para este projeto',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Desculpe, não encontrei esta informação no meu banco de dados!',
'Page not found' => 'Página não encontrada',
'Complexity' => 'Complexidade',
- 'limit' => 'limite',
'Task limit' => 'Limite da tarefa',
'Task count' => 'Número de tarefas',
- 'This value must be greater than %d' => 'Este valor deve ser maior que %d',
'Edit project access list' => 'Editar lista de acesso ao projeto',
- 'Edit users access' => 'Editar acesso de usuários',
'Allow this user' => 'Permitir este usuário',
- 'Only those users have access to this project:' => 'Somente esses usuários têm acesso a este projeto:',
'Don\'t forget that administrators have access to everything.' => 'Não esqueça que administradores têm acesso a tudo.',
'Revoke' => 'Revogar',
'List of authorized users' => 'Lista de usuários autorizados',
'User' => 'Usuário',
'Nobody have access to this project.' => 'Ninguém tem acesso a este projeto.',
- 'You are not allowed to access to this project.' => 'Você não está autorizado a acessar este projeto.',
'Comments' => 'Comentários',
- 'Post comment' => 'Postar comentário',
'Write your text in Markdown' => 'Escreva seu texto em Markdown',
'Leave a comment' => 'Deixe um comentário',
'Comment is required' => 'Comentário é obrigatório',
'Leave a description' => 'Deixe uma descrição',
'Comment added successfully.' => 'Comentário adicionado com sucesso.',
'Unable to create your comment.' => 'Não é possível criar o seu comentário.',
- 'The description is required' => 'A descrição é obrigatória',
'Edit this task' => 'Editar esta tarefa',
'Due Date' => 'Data de vencimento',
'Invalid date' => 'Data inválida',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Salvar esta ação',
'Do you really want to remove this action: "%s"?' => 'Você realmente deseja remover esta ação: "%s"?',
'Remove an automatic action' => 'Remover uma ação automática',
- 'Close the task' => 'Finalizar tarefa',
'Assign the task to a specific user' => 'Designar a tarefa para um usuário específico',
'Assign the task to the person who does the action' => 'Designar a tarefa para a pessoa que executa a ação',
'Duplicate the task to another project' => 'Duplicar a tarefa para um outro projeto',
'Move a task to another column' => 'Mover a tarefa para outra coluna',
- 'Move a task to another position in the same column' => 'Mover a tarefa para outra posição na mesma coluna',
'Task modification' => 'Modificação de tarefa',
'Task creation' => 'Criação de tarefa',
- 'Open a closed task' => 'Reabrir uma tarefa finalizada',
'Closing a task' => 'Finalizando uma tarefa',
'Assign a color to a specific user' => 'Designar uma cor para um usuário específico',
'Column title' => 'Título da coluna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicar para outro projeto',
'Duplicate' => 'Duplicar',
'link' => 'link',
- 'Update this comment' => 'Atualizar este comentário',
'Comment updated successfully.' => 'Comentário atualizado com sucesso.',
'Unable to update your comment.' => 'Não é possível atualizar o seu comentário.',
'Remove a comment' => 'Remover um comentário',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Não é possível remover este comentário.',
'Do you really want to remove this comment?' => 'Você realmente deseja remover este comentário?',
'Only administrators or the creator of the comment can access to this page.' => 'Somente os administradores ou o criator deste comentário possuem acesso a esta página.',
- 'Details' => 'Detalhes',
'Current password for the user "%s"' => 'Senha atual para o usuário "%s"',
'The current password is required' => 'A senha atual é obrigatória',
'Wrong password' => 'Senha incorreta',
- 'Reset all tokens' => 'Resetar todos os tokens',
- 'All tokens have been regenerated.' => 'Todos os tokens foram gerados novamente.',
'Unknown' => 'Desconhecido',
'Last logins' => 'Últimos logins',
'Login date' => 'Data de login',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Desvincular minha Conta do Google',
'Login with my Google Account' => 'Entrar com minha Conta do Google',
'Project not found.' => 'Projeto não encontrado.',
- 'Task #%d' => 'Tarefa #%d',
'Task removed successfully.' => 'Tarefa removida com sucesso.',
'Unable to remove this task.' => 'Não foi possível remover esta tarefa.',
'Remove a task' => 'Remover uma tarefa',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Não foi possível remover esta categoria.',
'Category modification for the project "%s"' => 'Modificação de categoria para o projeto "%s"',
'Category Name' => 'Nome da Categoria',
- 'Categories for the project "%s"' => 'Categorias para o projeto "%s"',
'Add a new category' => 'Adicionar uma nova categoria',
'Do you really want to remove this category: "%s"?' => 'Você realmente deseja remover esta categoria: "%s"',
'Filter by category' => 'Filtrar por categoria',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data da modificação',
'Completion date' => 'Data da finalização',
'Clone' => 'Clonar',
- 'Clone Project' => 'Clonar Projeto',
'Project cloned successfully.' => 'Projeto clonado com sucesso.',
'Unable to clone this project.' => 'Não foi possível clonar este projeto.',
'Email notifications' => 'Notificações por email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Novo anexo adicionado "%s"',
'Comment updated' => 'Comentário atualizado',
'New comment posted by %s' => 'Novo comentário postado por %s',
- 'List of due tasks for the project "%s"' => 'Lista de tarefas pendentes para o projeto "%s"',
'New attachment' => 'Novo anexo',
'New comment' => 'Novo comentário',
'New subtask' => 'Nova subtarefa',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Tarefa alterada',
'Task closed' => 'Tarefa finalizada',
'Task opened' => 'Tarefa aberta',
- '[%s][Due tasks]' => '[%s][Tarefas pendentes]',
- '[Kanboard] Notification' => '[Kanboard] Notificação',
'I want to receive notifications only for those projects:' => 'Quero receber notificações apenas destes projetos:',
'view the task on Kanboard' => 'ver a tarefa no Kanboard',
'Public access' => 'Acesso público',
- 'Category management' => 'Gerenciamento de categorias',
'User management' => 'Gerenciamento de usuários',
'Active tasks' => 'Tarefas ativas',
'Disable public access' => 'Desabilitar o acesso público',
'Enable public access' => 'Habilitar o acesso público',
- 'Active projects' => 'Projetos ativos',
- 'Inactive projects' => 'Projetos inativos',
'Public access disabled' => 'Acesso público desabilitado',
'Do you really want to disable this project: "%s"?' => 'Você realmente deseja desabilitar este projeto: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Você realmente deseja duplicar este projeto: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Você realmente deseja habilitar este projeto: "%s"?',
'Project activation' => 'Ativação do projeto',
'Move the task to another project' => 'Mover a tarefa para outro projeto',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Mudar designação da tarefa',
'%s change the assignee of the task #%d to %s' => '%s mudou a designação da tarefa #%d para %s',
'%s changed the assignee of the task %s to %s' => '%s mudou a designação da tarefa %s para %s',
- 'Column Change' => 'Mudança de coluna',
- 'Position Change' => 'Mudança de posição',
- 'Assignee Change' => 'Mudança de designado',
'New password for the user "%s"' => 'Nova senha para o usuário "%s"',
'Choose an event' => 'Escolher um evento',
'Github commit received' => 'Github commit received',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Todos possuem acesso a este projeto.',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Integração',
'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Ajuda para o Github webhooks',
'Create a comment from an external provider' => 'Criar um comentário por meio de um serviço externo',
'Github issue comment created' => 'Github issue comment created',
- 'Configure' => 'Configurar',
'Project management' => 'Gerenciamento de projetos',
'My projects' => 'Meus projetos',
'Columns' => 'Colunas',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Redistribuição de usuário para "%s"',
'Clone this project' => 'Clonar este projeto',
'Column removed successfully.' => 'Coluna removida com sucesso.',
- 'Edit Project' => 'Editar projeto',
'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Não há dados suficientes para mostrar o gráfico.',
'Previous' => 'Anterior',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Todos os swimlane',
'All colors' => 'Todas as cores',
'All status' => 'Todos os status',
- 'Add a comment logging moving the task between columns' => 'Adicionar un comentário de log ao mover uma tarefa em outra coluna',
'Moved to column %s' => 'Mover para a coluna %s',
'Change description' => 'Modificar a descrição',
'User dashboard' => 'Painel de Controle do usuário',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Autenticação à fator duplo activado',
'Unable to update this user.' => 'Impossível de atualizar esse usuário.',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/ru_RU/translations.php b/app/Locale/ru_RU/translations.php
index 51e4661f..1f3be94f 100644
--- a/app/Locale/ru_RU/translations.php
+++ b/app/Locale/ru_RU/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Нет пользователя',
'Forbidden' => 'Запрещено',
'Access Forbidden' => 'Доступ запрещен',
- 'Only administrators can access to this page.' => 'Только администраторы могут войти на эту страницу.',
'Edit user' => 'Изменить пользователя',
'Logout' => 'Выйти',
'Bad username or password' => 'Неверное имя пользователя или пароль',
- 'users' => 'пользователи',
- 'projects' => 'проекты',
'Edit project' => 'Изменить проект',
'Name' => 'Имя',
- 'Activated' => 'Активен',
'Projects' => 'Проекты',
'No project' => 'Нет проекта',
'Project' => 'Проект',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Действия',
'Inactive' => 'Неактивен',
'Active' => 'Активен',
- 'Column %d' => 'Колонка %d',
'Add this column' => 'Добавить колонку',
'%d tasks on the board' => 'Задач на доске - %d',
'%d tasks in total' => 'Задач всего - %d',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Новый проект',
'Do you really want to remove this project: "%s"?' => 'Вы точно хотите удалить проект: « %s » ?',
'Remove project' => 'Удалить проект',
- 'Boards' => 'Доски',
'Edit the board for "%s"' => 'Изменить доску для « %s »',
'All projects' => 'Все проекты',
'Change columns' => 'Изменить колонки',
'Add a new column' => 'Добавить новую колонку',
'Title' => 'Название',
- 'Add Column' => 'Добавить колонку',
- 'Project "%s"' => 'Проект « %s »',
'Nobody assigned' => 'Никто не назначен',
'Assigned to %s' => 'Исполнитель: %s',
'Remove a column' => 'Удалить колонку',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Язык',
'Webhook token:' => 'Webhooks токен :',
'API token:' => 'API токен :',
- 'More information' => 'Подробнее',
'Database size:' => 'Размер базы данных :',
'Download the database' => 'Скачать базу данных',
'Optimize the database' => 'Оптимизировать базу данных',
'(VACUUM command)' => '(Команда VACUUM)',
'(Gzip compressed Sqlite file)' => '(Сжать GZip файл SQLite)',
- 'User settings' => 'Настройки пользователя',
- 'My default project:' => 'Мой проект по умолчанию:',
'Close a task' => 'Закрыть задачу',
- 'Do you really want to close this task: "%s"?' => 'Вы точно хотите закрыть задачу: « %s » ?',
'Edit a task' => 'Изменить задачу',
'Column' => 'Колонка',
'Color' => 'Цвет',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Требуется пароль',
'This value must be an integer' => 'Это значение должно быть целым',
'The username must be unique' => 'Требуется уникальное имя пользователя',
- 'The username must be alphanumeric' => 'Имя пользователя должно быть буквенно-цифровым',
'The user id is required' => 'Требуется ID пользователя',
'Passwords don\'t match' => 'Пароли не совпадают',
'The confirmation is required' => 'Требуется подтверждение',
- 'The column is required' => 'Требуется колонка',
'The project is required' => 'Требуется проект',
- 'The color is required' => 'Требуется цвет',
'The id is required' => 'Требуется ID',
'The project id is required' => 'Требуется ID проекта',
'The project name is required' => 'Требуется имя проекта',
'This project must be unique' => 'Проект должен быть уникальным',
'The title is required' => 'Требуется заголовок',
- 'The language is required' => 'Требуется язык',
'There is no active project, the first step is to create a new project.' => 'Нет активного проекта, сначала создайте новый проект.',
'Settings saved successfully.' => 'Параметры успешно сохранены.',
'Unable to save your settings.' => 'Невозможно сохранить параметры.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Дата создания',
'Date completed' => 'Дата завершения',
'Id' => 'ID',
- 'No task' => 'Нет задачи',
'Completed tasks' => 'Завершенные задачи',
- 'List of projects' => 'Список проектов',
'Completed tasks for "%s"' => 'Завершенные задачи для « %s »',
'%d closed tasks' => '%d завершенных задач',
'No task for this project' => 'Нет задач для этого проекта',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'К сожалению, информация в базе данных не найдена !',
'Page not found' => 'Страница не найдена',
'Complexity' => 'Сложность',
- 'limit' => 'лимит',
'Task limit' => 'Лимит задач',
'Task count' => 'Количество задач',
- 'This value must be greater than %d' => 'Это значение должно быть больше %d',
'Edit project access list' => 'Изменить доступ к проекту',
- 'Edit users access' => 'Изменить доступ пользователей',
'Allow this user' => 'Разрешить этого пользователя',
- 'Only those users have access to this project:' => 'Только эти пользователи имеют доступ к проекту:',
'Don\'t forget that administrators have access to everything.' => 'Помните, администратор имеет неограниченные права.',
'Revoke' => 'Отозвать',
'List of authorized users' => 'Список авторизованных пользователей',
'User' => 'Пользователь',
'Nobody have access to this project.' => 'Ни у кого нет доступа к этому проекту',
- 'You are not allowed to access to this project.' => 'Вам запрещен доступ к этому проекту.',
'Comments' => 'Комментарии',
- 'Post comment' => 'Оставить комментарий',
'Write your text in Markdown' => 'Справка по синтаксису Markdown',
'Leave a comment' => 'Оставить комментарий 2',
'Comment is required' => 'Нужен комментарий',
'Leave a description' => 'Напишите описание',
'Comment added successfully.' => 'Комментарий успешно добавлен.',
'Unable to create your comment.' => 'Невозможно создать комментарий.',
- 'The description is required' => 'Требуется описание',
'Edit this task' => 'Изменить задачу',
'Due Date' => 'Сделать до',
'Invalid date' => 'Неверная дата',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Сохранить это действие',
'Do you really want to remove this action: "%s"?' => 'Вы точно хотите удалить это действие: « %s » ?',
'Remove an automatic action' => 'Удалить автоматическое действие',
- 'Close the task' => 'Закрыть задачу',
'Assign the task to a specific user' => 'Назначить задачу определенному пользователю',
'Assign the task to the person who does the action' => 'Назначить задачу тому кто выполнит действие',
'Duplicate the task to another project' => 'Создать дубликат задачи в другом проекте',
'Move a task to another column' => 'Переместить задачу в другую колонку',
- 'Move a task to another position in the same column' => 'Переместить задачу в другое место этой же колонки',
'Task modification' => 'Изменение задачи',
'Task creation' => 'Создание задачи',
- 'Open a closed task' => 'Открыть завершенную задачу',
'Closing a task' => 'Завершение задачи',
'Assign a color to a specific user' => 'Назначить определенный цвет пользователю',
'Column title' => 'Название колонки',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Клонировать в другой проект',
'Duplicate' => 'Клонировать',
'link' => 'ссылка',
- 'Update this comment' => 'Обновить комментарий',
'Comment updated successfully.' => 'Комментарий обновлен.',
'Unable to update your comment.' => 'Не удалось обновить ваш комментарий.',
'Remove a comment' => 'Удалить комментарий',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Не удалось удалить этот комментарий.',
'Do you really want to remove this comment?' => 'Вы точно хотите удалить этот комментарий?',
'Only administrators or the creator of the comment can access to this page.' => 'Только администратор и автор комментария имеют доступ к этой странице.',
- 'Details' => 'Подробности',
'Current password for the user "%s"' => 'Текущий пароль для пользователя « %s »',
'The current password is required' => 'Требуется текущий пароль',
'Wrong password' => 'Неверный пароль',
- 'Reset all tokens' => 'Сброс всех токенов',
- 'All tokens have been regenerated.' => 'Все токены пересозданы.',
'Unknown' => 'Неизвестно',
'Last logins' => 'Последние посещения',
'Login date' => 'Дата входа',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Отвязать мой профиль от Google',
'Login with my Google Account' => 'Аутентификация через Google',
'Project not found.' => 'Проект не найден.',
- 'Task #%d' => 'Задача n°%d',
'Task removed successfully.' => 'Задача удалена.',
'Unable to remove this task.' => 'Не удалось удалить эту задачу.',
'Remove a task' => 'Удалить задачу',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Не удалось удалить категорию.',
'Category modification for the project "%s"' => 'Изменение категории для проекта « %s »',
'Category Name' => 'Название категории',
- 'Categories for the project "%s"' => 'Категории для проекта « %s »',
'Add a new category' => 'Добавить новую категорию',
'Do you really want to remove this category: "%s"?' => 'Вы точно хотите удалить категорию « %s » ?',
'Filter by category' => 'Фильтр по категориям',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Дата изменения',
'Completion date' => 'Дата завершения',
'Clone' => 'Клонировать',
- 'Clone Project' => 'Клонировать проект',
'Project cloned successfully.' => 'Проект клонирован.',
'Unable to clone this project.' => 'Не удалось клонировать проект.',
'Email notifications' => 'Уведомления по e-mail',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Добавлено вложение « %s »',
'Comment updated' => 'Комментарий обновлен',
'New comment posted by %s' => 'Новый комментарий написан « %s »',
- 'List of due tasks for the project "%s"' => 'Список сроков к проекту « %s »',
'New attachment' => 'Новое вложение',
'New comment' => 'Новый комментарий',
'New subtask' => 'Новая подзадача',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Задача обновлена',
'Task closed' => 'Задача закрыта',
'Task opened' => 'Задача открыта',
- '[%s][Due tasks]' => '[%s][Текущие задачи]',
- '[Kanboard] Notification' => '[Kanboard] Оповещение',
'I want to receive notifications only for those projects:' => 'Я хочу получать уведомления только по этим проектам:',
'view the task on Kanboard' => 'посмотреть задачу на Kanboard',
'Public access' => 'Общий доступ',
- 'Category management' => 'Управление категориями',
'User management' => 'Управление пользователями',
'Active tasks' => 'Активные задачи',
'Disable public access' => 'Отключить общий доступ',
'Enable public access' => 'Включить общий доступ',
- 'Active projects' => 'Активные проекты',
- 'Inactive projects' => 'Неактивные проекты',
'Public access disabled' => 'Общий доступ отключен',
'Do you really want to disable this project: "%s"?' => 'Вы точно хотите деактивировать проект: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Вы точно хотите клонировать проект: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Вы точно хотите активировать проект: "%s"?',
'Project activation' => 'Активация проекта',
'Move the task to another project' => 'Переместить задачу в другой проект',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Изменен назначенный',
'%s change the assignee of the task #%d to %s' => '%s сменил назначенного для задачи #%d на %s',
'%s changed the assignee of the task %s to %s' => '%s сменил назначенного для задачи %s на %s',
- 'Column Change' => 'Изменение колонки',
- 'Position Change' => 'Изменение позиции',
- 'Assignee Change' => 'Изменение ответственного',
'New password for the user "%s"' => 'Новый пароль для пользователя "%s"',
'Choose an event' => 'Выберите событие',
'Github commit received' => 'GitHub: коммит получен',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Любой может получить доступ к этому проекту.',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Интеграция',
'Github webhooks' => 'GitHub webhooks',
'Help on Github webhooks' => 'Помощь по GitHub webhooks',
'Create a comment from an external provider' => 'Создать комментарий из внешнего источника',
'Github issue comment created' => 'Github issue комментарий создан',
- 'Configure' => 'Настройки',
'Project management' => 'Управление проектом',
'My projects' => 'Мои проекты',
'Columns' => 'Колонки',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Перераспределение пользователей для "%s"',
'Clone this project' => 'Клонировать проект',
'Column removed successfully.' => 'Колонка успешно удалена.',
- 'Edit Project' => 'Редактировать Проект',
// 'Github Issue' => '',
'Not enough data to show the graph.' => 'Недостаточно данных, чтобы показать график.',
'Previous' => 'Предыдущий',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Все дорожки',
'All colors' => 'Все цвета',
'All status' => 'Все статусы',
- 'Add a comment logging moving the task between columns' => 'Добавлять комментарий при движении задач между колонками',
'Moved to column %s' => 'Перемещена в колонку %s',
'Change description' => 'Изменить описание',
'User dashboard' => 'Пользователь панели мониторинга',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Включена двухфакторная аутентификация',
'Unable to update this user.' => 'Не удается обновить этого пользователя.',
'There is no user management for private projects.' => 'Там нет управления пользователя для частных проектов',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/sr_Latn_RS/translations.php b/app/Locale/sr_Latn_RS/translations.php
index 816c4c11..028b21e4 100644
--- a/app/Locale/sr_Latn_RS/translations.php
+++ b/app/Locale/sr_Latn_RS/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Ne',
'Forbidden' => 'Zabranjeno',
'Access Forbidden' => 'Zabranjen prostup',
- 'Only administrators can access to this page.' => 'Samo administrator može videti ovu stranu.',
'Edit user' => 'Izmeni korisnika',
'Logout' => 'Odjava',
'Bad username or password' => 'Loše korisničko ime ili lozinka',
- 'users' => 'korisnici',
- 'projects' => 'projekti',
'Edit project' => 'Izmeni projekat',
'Name' => 'Ime',
- 'Activated' => 'Aktiviran',
'Projects' => 'Projekti',
'No project' => 'Bez projekta',
'Project' => 'Projekat',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Akcje',
'Inactive' => 'Neaktivan',
'Active' => 'Aktivan',
- 'Column %d' => 'Kolona %d',
'Add this column' => 'Dodaj kolonu',
'%d tasks on the board' => '%d zadataka na tabli',
'%d tasks in total' => '%d zadataka ukupno',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Novi projekat',
'Do you really want to remove this project: "%s"?' => 'Da li želiš da ukloniš projekat: "%s"?',
'Remove project' => 'Ukloni projekat',
- 'Boards' => 'Table',
'Edit the board for "%s"' => 'Izmeni tablu za "%s"',
'All projects' => 'Svi projekti',
'Change columns' => 'Zameni kolonu',
'Add a new column' => 'Dodaj novu kolonu',
'Title' => 'Naslov',
- 'Add Column' => 'Dodaj kolunu',
- 'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Niko nije dodeljen',
'Assigned to %s' => 'Dodeljen korisniku %s',
'Remove a column' => 'Ukloni kolonu',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Jezik',
'Webhook token:' => 'Token :',
'API token:' => 'Token za API',
- 'More information' => 'Još informacja',
'Database size:' => 'Veličina baze :',
'Download the database' => 'Preuzmi bazu',
'Optimize the database' => 'Optimizuj bazu',
'(VACUUM command)' => '(komanda VACUUM)',
'(Gzip compressed Sqlite file)' => '(Sqlite baza spakovana Gzip-om)',
- 'User settings' => 'Korisnička podešavanja',
- 'My default project:' => 'Moj podrazumevani projekat:',
'Close a task' => 'Zatvori zadatak',
- 'Do you really want to close this task: "%s"?' => 'Da li zaista želiš da zatvoriš ovaj zadatak: "%s"?',
'Edit a task' => 'Izmeni zadatak',
'Column' => 'Kolona',
'Color' => 'Boja',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Lozinka je obavezna',
'This value must be an integer' => 'Mora biti ceo broj',
'The username must be unique' => 'Korisničko ime mora biti jedinstveno',
- 'The username must be alphanumeric' => 'Korisničko ime sme sadržati samo brojeve i slova',
'The user id is required' => 'ID korisnika je obavezan',
'Passwords don\'t match' => 'Lozinke se ne podudaraju',
'The confirmation is required' => 'Potvrda je obavezna',
- 'The column is required' => 'Kolona je obavezna',
'The project is required' => 'Projekat je obavezan',
- 'The color is required' => 'Boja je obavezna',
'The id is required' => 'ID je obavezan',
'The project id is required' => 'ID projekta je obavezan',
'The project name is required' => 'Naziv projekta je obavezan',
'This project must be unique' => 'Projekat mora biti jedinstven',
'The title is required' => 'Naslov je obavezan',
- 'The language is required' => 'Jezik je obavezan',
'There is no active project, the first step is to create a new project.' => 'Nema aktivnih projekata. Potrebno je prvo napraviti novi projekat.',
'Settings saved successfully.' => 'Podešavanja uspešno snimljena.',
'Unable to save your settings.' => 'Nemoguće snimanje podešavanja.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Kreiran dana',
'Date completed' => 'Završen dana',
'Id' => 'Id',
- 'No task' => 'bez zadataka',
'Completed tasks' => 'Zatvoreni zadaci',
- 'List of projects' => 'Spisak projekata',
'Completed tasks for "%s"' => 'zatvoreni zadaci za "%s"',
'%d closed tasks' => '%d zatvorenih zadataka',
'No task for this project' => 'Nema dodeljenih zadataka ovom projektu',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Na žalost, nije pronađena informacija u bazi',
'Page not found' => 'Strana nije pronađena',
'Complexity' => 'Složenost',
- 'limit' => 'ograničenje',
'Task limit' => 'Ograničenje zadatka',
'Task count' => 'Broj zadataka',
- 'This value must be greater than %d' => 'Vrednost mora biti veća od %d',
'Edit project access list' => 'Izmeni prava pristupa projektu',
- 'Edit users access' => 'Izmeni korisnička prava',
'Allow this user' => 'Dozvoli ovog korisnika',
- 'Only those users have access to this project:' => 'Samo ovi korisnici imaju pristup projektu:',
'Don\'t forget that administrators have access to everything.' => 'Zapamti: Administrator može pristupiti svemu!',
'Revoke' => 'Povuci',
'List of authorized users' => 'Spisak odobrenih korisnika',
'User' => 'Korisnik',
'Nobody have access to this project.' => 'Niko nema pristup ovom projektu',
- 'You are not allowed to access to this project.' => 'Nije ti dozvoljen pristup ovom projektu.',
'Comments' => 'Komentari',
- 'Post comment' => 'Dodaj komentar',
'Write your text in Markdown' => 'Pisanje teksta pomoću Markdown',
'Leave a comment' => 'Ostavi komentar',
'Comment is required' => 'Komentar je obavezan',
'Leave a description' => 'Dodaj opis',
'Comment added successfully.' => 'Komentar uspešno ostavljen',
'Unable to create your comment.' => 'Nemoguće kreiranje komentara',
- 'The description is required' => 'Opis je obavezan',
'Edit this task' => 'Izmeni ovaj zadatak',
'Due Date' => 'Termin',
'Invalid date' => 'Loš datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Snimi akciju',
'Do you really want to remove this action: "%s"?' => 'Da li da obrišem akciju "%s"?',
'Remove an automatic action' => 'Obriši automatsku akciju',
- 'Close the task' => 'Zatvori zadatak',
'Assign the task to a specific user' => 'Dodeli zadatak određenom korisniku',
'Assign the task to the person who does the action' => 'Dodeli zadatak korisniku koji je izvršio akciju',
'Duplicate the task to another project' => 'Kopiraj akciju u drugi projekat',
'Move a task to another column' => 'Premesti zadatak u drugu kolonu',
- 'Move a task to another position in the same column' => 'Promeni poziciju zadatka u istoj koloni',
'Task modification' => 'Izman zadatka',
'Task creation' => 'Kreiranje zadatka',
- 'Open a closed task' => 'Otvori zatvoreni zadatak',
'Closing a task' => 'Zatvaranja zadatka',
'Assign a color to a specific user' => 'Dodeli boju korisniku',
'Column title' => 'Naslov kolone',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopiraj u drugi projekat',
'Duplicate' => 'Napravi kopiju',
'link' => 'link',
- 'Update this comment' => 'Ažuriraj komentar',
'Comment updated successfully.' => 'Komentar uspešno ažuriran.',
'Unable to update your comment.' => 'Neuspešno ažuriranje komentara.',
'Remove a comment' => 'Obriši komentar',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Neuspešno brisanje komentara.',
'Do you really want to remove this comment?' => 'Da li da obrišem ovaj komentar?',
'Only administrators or the creator of the comment can access to this page.' => 'Samo administrator i kreator komentara mogu ga obrisati.',
- 'Details' => 'Detalji',
'Current password for the user "%s"' => 'Trenutna lozinka za korisnika "%s"',
'The current password is required' => 'Trenutna lozinka je obavezna',
'Wrong password' => 'Pogrešna lozinka',
- 'Reset all tokens' => 'Resetuj tokene',
- 'All tokens have been regenerated.' => 'Svi tokeni su ponovo generisani.',
'Unknown' => 'Nepoznat',
'Last logins' => 'Poslednja prijava',
'Login date' => 'Datum prijave',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ukini vezu sa Google nalogom',
'Login with my Google Account' => 'Prijavi se preko Google naloga',
'Project not found.' => 'Projekat nije pronađen.',
- 'Task #%d' => 'Zadatak #%d',
'Task removed successfully.' => 'Zadatak uspešno uklonjen.',
'Unable to remove this task.' => 'Nemoguće uklanjanje zadatka.',
'Remove a task' => 'Ukloni zadatak',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Nije moguće ukloniti kategoriju.',
'Category modification for the project "%s"' => 'Izmena kategorije za projekat "%s"',
'Category Name' => 'Naziv kategorije',
- 'Categories for the project "%s"' => 'Kategorije u projektu "%s"',
'Add a new category' => 'Dodaj novu kategoriju',
'Do you really want to remove this category: "%s"?' => 'Da li zaista želiš da ukloniš kategoriju: "%s"?',
'Filter by category' => 'Po kategoriji',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Datum izmene',
'Completion date' => 'Datum kompletiranja',
'Clone' => 'Iskopiraj',
- 'Clone Project' => 'Iskopiraj projekat',
'Project cloned successfully.' => 'Projekat uspešno iskopiran.',
'Unable to clone this project.' => 'Nije moguće iskopirati projekat.',
'Email notifications' => 'Obaveštenje e-mailom',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Novi prilog ubačen "%s"',
'Comment updated' => 'Komentar izmenjen',
'New comment posted by %s' => 'Novi komentar ostavio %s',
- 'List of due tasks for the project "%s"' => 'Spisak dospelih zadataka za projekat "%s"',
// 'New attachment' => '',
// 'New comment' => '',
// 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '',
'Task closed' => 'Zadatak je zatvoren',
'Task opened' => 'Zadatak je otvoren',
- '[%s][Due tasks]' => '[%s][Dospeli zadaci]',
- '[Kanboard] Notification' => '[Kanboard] Obaveštenja',
'I want to receive notifications only for those projects:' => 'Želim obaveštenja samo za ovaj projekat:',
'view the task on Kanboard' => 'Pregledaj zadatke',
'Public access' => 'Javni pristup',
- 'Category management' => 'Uređivanje kategorija',
'User management' => 'Uređivanje korisnika',
'Active tasks' => 'Aktivni zadaci',
'Disable public access' => 'Zabrani javni pristup',
'Enable public access' => 'Dozvoli javni pristup',
- 'Active projects' => 'Aktivni projekti',
- 'Inactive projects' => 'Neaktivni projekti',
'Public access disabled' => 'Javni pristup onemogućen!',
'Do you really want to disable this project: "%s"?' => 'Da li zaista želiš da deaktiviraš projekat: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Da li da napravim kopiju ovog projekta: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Da li zaista želiš da aktiviraš projekat: "%s"?',
'Project activation' => 'Aktivacija projekta',
'Move the task to another project' => 'Premesti zadatak u drugi projekat',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Zmień osobę odpowiedzialną',
'%s change the assignee of the task #%d to %s' => '%s zamena dodele za zadatak #%d na %s',
'%s changed the assignee of the task %s to %s' => '%s zamena dodele za zadatak %s na %s',
- // 'Column Change' => '',
- // 'Position Change' => '',
- // 'Assignee Change' => '',
'New password for the user "%s"' => 'Nova lozinka za korisnika "%s"',
'Choose an event' => 'Izaberi događaj',
// 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Svima je dozvoljen pristup.',
// 'Webhooks' => '',
// 'API' => '',
- 'Integration' => 'Integracja',
// 'Github webhooks' => '',
// 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '',
- 'Configure' => 'Podesi',
'Project management' => 'Uređivanje projekata',
'My projects' => 'Moji projekti',
'Columns' => 'Kolone',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Zaduženja korisnika za "%s"',
'Clone this project' => 'Kopiraj projekat',
'Column removed successfully.' => 'Kolumna usunięta pomyslnie.',
- 'Edit Project' => 'Izmeni projekat',
// 'Github Issue' => '',
'Not enough data to show the graph.' => 'Nedovoljno podataka za grafikon.',
'Previous' => 'Prethodni',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Svi razdelniki',
'All colors' => 'Sve boje',
'All status' => 'Svi statusi',
- 'Add a comment logging moving the task between columns' => 'Dodaj logovanje premeštanja zadataka po kolonama',
'Moved to column %s' => 'Premešten u kolonu %s',
// 'Change description' => '',
'User dashboard' => 'Korisnički panel',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/sv_SE/translations.php b/app/Locale/sv_SE/translations.php
index 3f7d446a..93fe05b5 100644
--- a/app/Locale/sv_SE/translations.php
+++ b/app/Locale/sv_SE/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Ingen användare',
'Forbidden' => 'Ej tillåten',
'Access Forbidden' => 'Ej tillåten',
- 'Only administrators can access to this page.' => 'Bara adminstratörer har tillgång till denna sida.',
'Edit user' => 'Ändra användare',
'Logout' => 'Logga ut',
'Bad username or password' => 'Fel användarnamn eller lösenord',
- 'users' => 'Användare',
- 'projects' => 'projekt',
'Edit project' => 'Ändra projekt',
'Name' => 'Namn',
- 'Activated' => 'Aktiverad',
'Projects' => 'Projekt',
'No project' => 'Inget projekt',
'Project' => 'Tavlor för projekt och planering',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Åtgärder',
'Inactive' => 'Inaktiv',
'Active' => 'Aktiv',
- 'Column %d' => 'Kolumn %d',
'Add this column' => 'Lägg till kolumnen',
'%d tasks on the board' => '%d uppgifter på tavlan',
'%d tasks in total' => '%d uppgifter totalt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nytt projekt',
'Do you really want to remove this project: "%s"?' => 'Vill du verkligen ta bort projektet: "%s" ?',
'Remove project' => 'Ta bort projekt',
- 'Boards' => 'Tavlor',
'Edit the board for "%s"' => 'Ändra tavlan för "%s"',
'All projects' => 'Alla projekt',
'Change columns' => 'Ändra kolumner',
'Add a new column' => 'Lägg till ny kolumn',
'Title' => 'Titel',
- 'Add Column' => 'Lägg till kolumn',
- 'Project "%s"' => 'Tavlan "%s" är aktiv',
'Nobody assigned' => 'Ingen tilldelad',
'Assigned to %s' => 'Tilldelad %s',
'Remove a column' => 'Ta bort en kolumn',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Språk',
'Webhook token:' => 'Token för webhooks:',
'API token:' => 'API token:',
- 'More information' => 'Mer information',
'Database size:' => 'Databasstorlek:',
'Download the database' => 'Ladda ner databasen',
'Optimize the database' => 'Optimera databasen',
'(VACUUM command)' => '(Vacuum kommando)',
'(Gzip compressed Sqlite file)' => '(Gzip komprimera Sqlite filen)',
- 'User settings' => 'Användarinställningar',
- 'My default project:' => 'Mitt standardprojekt:',
'Close a task' => 'Stäng en uppgift',
- 'Do you really want to close this task: "%s"?' => 'Vill du verkligen stänga uppgiften: "%s"?',
'Edit a task' => 'Ändra en uppgift',
'Column' => 'Kolumn',
'Color' => 'Färg',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Lösenordet måste anges.',
'This value must be an integer' => 'Detta värde måste vara ett heltal.',
'The username must be unique' => 'Användarnamnet måste vara unikt',
- 'The username must be alphanumeric' => 'Användarnamnet måste vara alfanumeriskt',
'The user id is required' => 'Användar-ID måste anges',
'Passwords don\'t match' => 'Lösenorden matchar inte',
'The confirmation is required' => 'Bekräftelse behövs.',
- 'The column is required' => 'Kolumnen måste anges',
'The project is required' => 'Projektet måste anges',
- 'The color is required' => 'Färgen måste anges',
'The id is required' => 'Aktuellt ID måste anges',
'The project id is required' => 'Projekt-ID måste anges',
'The project name is required' => 'Ett projektnamn måste anges',
'This project must be unique' => 'Detta projekt måste vara unikt',
'The title is required' => 'En titel måste anges.',
- 'The language is required' => 'Språket måste anges',
'There is no active project, the first step is to create a new project.' => 'Inget projekt är aktiverat, första steget är att skapa ett nytt projekt',
'Settings saved successfully.' => 'Inställningarna har sparats.',
'Unable to save your settings.' => 'Kunde inte spara dina ändringar',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Skapat datum',
'Date completed' => 'Slutfört datum',
'Id' => 'ID',
- 'No task' => 'Ingen uppgift',
'Completed tasks' => 'Slutförda uppgifter',
- 'List of projects' => 'Lista med projekt',
'Completed tasks for "%s"' => 'Slutföra uppgifter för "%s"',
'%d closed tasks' => '%d stängda uppgifter',
'No task for this project' => 'Inga uppgifter i detta projekt',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'Informationen kunde inte hittas i databasen.',
'Page not found' => 'Sidan hittas inte',
'Complexity' => 'Komplexitet',
- 'limit' => 'max',
'Task limit' => 'Uppgiftsbegränsning',
'Task count' => 'Antal uppgifter',
- 'This value must be greater than %d' => 'Värdet måste vara större än %d',
'Edit project access list' => 'Ändra projektåtkomst lista',
- 'Edit users access' => 'Användaråtkomst',
'Allow this user' => 'Tillåt användare',
- 'Only those users have access to this project:' => 'Bara de användarna har tillgång till detta projekt.',
'Don\'t forget that administrators have access to everything.' => 'Glöm inte att administratörerna har rätt att göra allt.',
'Revoke' => 'Dra tillbaka behörighet',
'List of authorized users' => 'Lista med behöriga användare',
'User' => 'Användare',
'Nobody have access to this project.' => 'Ingen har tillgång till detta projekt.',
- 'You are not allowed to access to this project.' => 'Du har inte tillgång till detta projekt.',
'Comments' => 'Kommentarer',
- 'Post comment' => 'Ladda upp kommentar',
'Write your text in Markdown' => 'Exempelsyntax för text',
'Leave a comment' => 'Lämna en kommentar',
'Comment is required' => 'En kommentar måste lämnas',
'Leave a description' => 'Lämna en beskrivning',
'Comment added successfully.' => 'Kommentaren har lagts till.',
'Unable to create your comment.' => 'Kommentaren kunde inte laddas upp.',
- 'The description is required' => 'En beskrivning måste lämnas',
'Edit this task' => 'Ändra denna uppgift',
'Due Date' => 'Måldatum',
'Invalid date' => 'Ej tillåtet datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Spara denna åtgärd',
'Do you really want to remove this action: "%s"?' => 'Vill du verkligen ta bort denna åtgärd: "%s"?',
'Remove an automatic action' => 'Ta bort en automatiskt åtgärd',
- 'Close the task' => 'Stäng uppgiften',
'Assign the task to a specific user' => 'Tilldela uppgiften till en specifik användare',
'Assign the task to the person who does the action' => 'Tilldela uppgiften till personen som skapar den',
'Duplicate the task to another project' => 'Kopiera uppgiften till ett annat projekt',
'Move a task to another column' => 'Flytta en uppgift till en annan kolumn',
- 'Move a task to another position in the same column' => 'Flytta en uppgift till ett nytt läge i samma kolumn',
'Task modification' => 'Ändra uppgift',
'Task creation' => 'Skapa uppgift',
- 'Open a closed task' => 'Öppna en stängd uppgift',
'Closing a task' => 'Stänger en uppgift',
'Assign a color to a specific user' => 'Tilldela en färg till en specifik användare',
'Column title' => 'Kolumnens titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopiera till ett annat projekt',
'Duplicate' => 'Kopiera uppgiften',
'link' => 'länk',
- 'Update this comment' => 'Uppdatera kommentaren',
'Comment updated successfully.' => 'Kommentaren har uppdaterats.',
'Unable to update your comment.' => 'Kunde inte uppdatera din kommentar.',
'Remove a comment' => 'Ta bort en kommentar',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Kunde inte ta bort denna kommentar.',
'Do you really want to remove this comment?' => 'Är du säker på att du vill ta bort denna kommentar?',
'Only administrators or the creator of the comment can access to this page.' => 'Bara administratörer eller skaparen av kommentaren har tillgång till denna sida.',
- 'Details' => 'Detaljer',
'Current password for the user "%s"' => 'Nuvarande lösenord för användaren %s"',
'The current password is required' => 'Det nuvarande lösenordet måste anges',
'Wrong password' => 'Fel lösenord',
- 'Reset all tokens' => 'Återställ alla tokens',
- 'All tokens have been regenerated.' => 'Alla tokens har degenererats.',
'Unknown' => 'Okänd',
'Last logins' => 'Senaste inloggningarna',
'Login date' => 'Inloggningsdatum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ta bort länken till mitt Google-konto',
'Login with my Google Account' => 'Logga in med mitt Google-konto',
'Project not found.' => 'Projektet kunde inte hittas',
- 'Task #%d' => 'Uppgift #%d',
'Task removed successfully.' => 'Uppgiften har tagits bort',
'Unable to remove this task.' => 'Kunde inte ta bort denna uppgift',
'Remove a task' => 'Ta bort en uppgift',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Kunde inte ta bort denna kategori',
'Category modification for the project "%s"' => 'Ändring av kategori för projektet "%s"',
'Category Name' => 'Kategorinamn',
- 'Categories for the project "%s"' => 'Kategorier för projektet "%s"',
'Add a new category' => 'Lägg till en kategori',
'Do you really want to remove this category: "%s"?' => 'Vill du verkligen ta bort denna kategori: "%s"?',
'Filter by category' => 'Filtrera på kategori',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Ändringsdatum',
'Completion date' => 'Slutfört datum',
'Clone' => 'Klona',
- 'Clone Project' => 'Klona projekt',
'Project cloned successfully.' => 'Projektet har klonats.',
'Unable to clone this project.' => 'Kunde inte klona projektet.',
'Email notifications' => 'Epostnotiser',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Ny bifogning tillagd "%s"',
'Comment updated' => 'Kommentaren har uppdaterats',
'New comment posted by %s' => 'Ny kommentar postad av %s',
- 'List of due tasks for the project "%s"' => 'Lista med uppgifter för projektet "%s"',
'New attachment' => 'Ny bifogning',
'New comment' => 'Ny kommentar',
'New subtask' => 'Ny deluppgift',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Uppgiften har uppdaterats',
'Task closed' => 'Uppgiften har stängts',
'Task opened' => 'Uppgiften har öppnats',
- '[%s][Due tasks]' => '[%s][Förfallen uppgift]',
- '[Kanboard] Notification' => '[Kanboard] Notis',
'I want to receive notifications only for those projects:' => 'Jag vill endast få notiser för dessa projekt:',
'view the task on Kanboard' => 'Visa uppgiften på Kanboard',
'Public access' => 'Publik åtkomst',
- 'Category management' => 'Hantera kategorier',
'User management' => 'Hantera användare',
'Active tasks' => 'Aktiva uppgifter',
'Disable public access' => 'Inaktivera publik åtkomst',
'Enable public access' => 'Aktivera publik åtkomst',
- 'Active projects' => 'Aktiva projekt',
- 'Inactive projects' => 'Inaktiva projekt',
'Public access disabled' => 'Publik åtkomst har inaktiverats',
'Do you really want to disable this project: "%s"?' => 'Vill du verkligen inaktivera detta projekt: "%s"?',
- 'Do you really want to duplicate this project: "%s"?' => 'Vill du verkligen kopiera detta projekt: "%s"?',
'Do you really want to enable this project: "%s"?' => 'Vill du verkligen aktivera detta projekt: "%s"?',
'Project activation' => 'Projektaktivering',
'Move the task to another project' => 'Flytta uppgiften till ett annat projekt',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Ändra tilldelning av uppgiften',
'%s change the assignee of the task #%d to %s' => '%s byt tilldelning av uppgiften #%d till %s',
'%s changed the assignee of the task %s to %s' => '%s byt tilldelning av uppgiften %s till %s',
- 'Column Change' => 'Ändring av kolumn',
- 'Position Change' => 'Ändring av position',
- 'Assignee Change' => 'Ändring av tilldelning',
'New password for the user "%s"' => 'Nytt lösenord för användaren "%s"',
'Choose an event' => 'Välj en händelse',
'Github commit received' => 'Github-bidrag mottaget',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Alla har tillgång till projektet',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Integration',
'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Hjälp för Github webhooks',
'Create a comment from an external provider' => 'Skapa en kommentar från en extern leverantör',
'Github issue comment created' => 'Github frågekommentar skapad',
- 'Configure' => 'Konfigurera',
'Project management' => 'Projekthantering',
'My projects' => 'Mina projekt',
'Columns' => 'Kolumner',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Användardeltagande för "%s"',
'Clone this project' => 'Klona projektet',
'Column removed successfully.' => 'Kolumnen togs bort',
- 'Edit Project' => 'Ändra Projekt',
'Github Issue' => 'Github fråga',
'Not enough data to show the graph.' => 'Inte tillräckligt med data för att visa graf',
'Previous' => 'Föregående',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alla swimlanes',
'All colors' => 'Alla färger',
'All status' => 'Alla status',
- 'Add a comment logging moving the task between columns' => 'Lägg till en kommentar för att logga förflyttning av en uppgift mellan kolumner',
'Moved to column %s' => 'Flyttad till kolumn %s',
'Change description' => 'Ändra beskrivning',
'User dashboard' => 'Användardashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/th_TH/translations.php b/app/Locale/th_TH/translations.php
index 62eed4bf..122c5f73 100644
--- a/app/Locale/th_TH/translations.php
+++ b/app/Locale/th_TH/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'ไม่มีผู้ใช้',
'Forbidden' => 'ไม่อนุญาติ',
'Access Forbidden' => 'ไม่อนุญาติให้เข้า',
- 'Only administrators can access to this page.' => 'หน้าสำหรับผู้ดูแลระบบเท่านั้น',
'Edit user' => 'แก้ไขผู้ใช้',
'Logout' => 'ออกจากระบบ',
'Bad username or password' => 'ชื่อผู้ใช่หรือรหัสผ่านผิด',
- 'users' => 'ผู้ใช้',
- 'projects' => 'โปรเจค',
'Edit project' => 'แก้ไขโปรเจค',
'Name' => 'ชื่อ',
- 'Activated' => 'เปิดใช้งาน',
'Projects' => 'โปรเจค',
'No project' => 'ไม่มีโปรเจค',
'Project' => 'โปรเจค',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'การกระทำ',
'Inactive' => 'ไม่เปิดใช้งาน',
'Active' => 'เปิดใช้งาน',
- 'Column %d' => 'คอลัมน์ %d',
'Add this column' => 'เพิ่มคอลัมน์',
'%d tasks on the board' => '%d งานบนบอร์ด',
'%d tasks in total' => '%d งานทั้งหมด',
@@ -67,14 +62,11 @@ return array(
'New project' => 'โปรเจคใหม่',
'Do you really want to remove this project: "%s"?' => 'คุณต้องการเอาโปรเจค « %s » ออกใช่หรือไม่?',
'Remove project' => 'ลบโปรเจค',
- 'Boards' => 'บอร์ด',
'Edit the board for "%s"' => 'แก้ไขบอร์ดสำหรับ « %s »',
'All projects' => 'โปรเจคทั้งหมด',
'Change columns' => 'เปลี่ยนคอลัมน์',
'Add a new column' => 'เพิ่มคอลัมน์ใหม่',
'Title' => 'หัวเรื่อง',
- 'Add Column' => 'เพิ่มคอลัมน์',
- 'Project "%s"' => 'โปรเจค « %s »',
'Nobody assigned' => 'ไม่กำหนดใคร',
'Assigned to %s' => 'กำหนดให้ %s',
'Remove a column' => 'ลบคอลัมน์',
@@ -87,16 +79,12 @@ return array(
'Language' => 'ภาษา',
// 'Webhook token:' => '',
'API token:' => 'API token:',
- 'More information' => 'ข้อมูลเพิ่มเติม',
'Database size:' => 'ขนาดฐานข้อมูล:',
'Download the database' => 'ดาวน์โหลดฐานข้อมูล',
'Optimize the database' => 'ปรับปรุงฐานข้อมูล',
'(VACUUM command)' => '(VACUUM command)',
'(Gzip compressed Sqlite file)' => '(Gzip compressed Sqlite file)',
- 'User settings' => 'ตั้งค่าผู้ใช้',
- 'My default project:' => 'โปรเจคเริ่มต้นของฉัน:',
'Close a task' => 'ปิดงาน',
- 'Do you really want to close this task: "%s"?' => 'คุณต้องการปิดงาน « %s » ใช่หรือไม่?',
'Edit a task' => 'แก้ไขงาน',
'Column' => 'คอลัมน์',
'Color' => 'สี',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'ต้องการรหัสผ่าน',
'This value must be an integer' => 'ต้องเป็นตัวเลข',
'The username must be unique' => 'ชื่อผู้ใช้ต้องไม่ซ้ำ',
- 'The username must be alphanumeric' => 'ชื่อผู้ใช้ต้องเป็นตัวอักษรหรือตัวเลข',
'The user id is required' => 'ต้องการไอดีผู้ใช้',
'Passwords don\'t match' => 'รหัสผ่านไม่ถูกต้อง',
'The confirmation is required' => 'ต้องการการยืนยัน',
- 'The column is required' => 'ต้องการคอลัมน์',
'The project is required' => 'ต้องการโปรเจค',
- 'The color is required' => 'ต้องการสี',
'The id is required' => 'ต้องการไอดี',
'The project id is required' => 'ต้องการไอดีโปรเจค',
'The project name is required' => 'ต้องการชื่อโปรเจค',
'This project must be unique' => 'ชื่อโปรเจคต้องไม่ซ้ำ',
'The title is required' => 'ต้องการหัวเรื่อง',
- 'The language is required' => 'ต้องการภาษา',
'There is no active project, the first step is to create a new project.' => 'ไม่มีโปรเจคที่ทำงานอยู่, ต้องการสร้างโปรเจคใหม่',
'Settings saved successfully.' => 'บันทึกการตั้งค่าเรียบร้อยแล้ว',
'Unable to save your settings.' => 'ไม่สามารถบันทึกการตั้งค่าได้',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'สร้างวันที่',
'Date completed' => 'เรียบร้อยวันที่',
'Id' => 'ไอดี',
- 'No task' => 'ไม่มีงาน',
'Completed tasks' => 'งานที่เสร็จแล้ว',
- 'List of projects' => 'รายชื่อโปรเจค',
'Completed tasks for "%s"' => 'งานที่เสร็จแล้วสำหรับ « %s »',
'%d closed tasks' => '%d งานที่ปิด',
'No task for this project' => 'ไม่มีงานสำหรับโปรเจคนี้',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'เสียใจด้วย ไม่สามารถหาข้อมูลในฐานข้อมูลได้',
'Page not found' => 'ไม่พบหน้า',
'Complexity' => 'ความซับซ้อน',
- 'limit' => 'จำกัด',
'Task limit' => 'จำกัดงาน',
'Task count' => 'นับงาน',
- 'This value must be greater than %d' => 'ค่าต้องมากกว่า %d',
'Edit project access list' => 'แก้ไขการเข้าถึงรายชื่อโปรเจค',
- 'Edit users access' => 'แก้ไขการเข้าถึงผู้ใช้',
'Allow this user' => 'อนุญาตผู้ใช้นี้',
- 'Only those users have access to this project:' => 'ผู้ใช้ที่สามารถเข้าถึงโปรเจคนี้:',
'Don\'t forget that administrators have access to everything.' => 'อย่าลืมผู้ดูแลระบบสามารถเข้าถึงได้ทุกอย่าง',
'Revoke' => 'ยกเลิก',
'List of authorized users' => 'รายชื่อผู้ใช้ที่ได้รับการยืนยัน',
'User' => 'ผู้ใช้',
// 'Nobody have access to this project.' => '',
- 'You are not allowed to access to this project.' => 'คุณไม่ได้รับอนุญาตให้เข้าถึงโปรเจคนี้',
'Comments' => 'ความคิดเห็น',
- 'Post comment' => 'แสดงความคิดเห็น',
'Write your text in Markdown' => 'เขียนข้อความในรูปแบบ Markdown',
'Leave a comment' => 'ออกความคิดเห็น',
'Comment is required' => 'ต้องการความคิดเห็น',
'Leave a description' => 'แสดงคำอธิบาย',
'Comment added successfully.' => 'เพิ่มความคิดเห็นเรียบร้อยแล้ว',
'Unable to create your comment.' => 'ไม่สามารถสร้างความคิดเห็น',
- 'The description is required' => 'ต้องการคำอธิบาย',
'Edit this task' => 'แก้ไขงาน',
'Due Date' => 'วันที่ครบกำหนด',
'Invalid date' => 'วันที่ผิด',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'บันทึกการกระทำนี้',
'Do you really want to remove this action: "%s"?' => 'คุณต้องการลบการกระทำ « %s » ใช่หรือไม่?',
'Remove an automatic action' => 'ลบการกระทำอัตโนมัติ',
- 'Close the task' => 'ปิดงาน',
'Assign the task to a specific user' => 'กำหนดงานให้ผู้ใช้แบบเจาะจง',
'Assign the task to the person who does the action' => 'กำหนดงานให้ผู้ใช้งานปัจจุบัน',
'Duplicate the task to another project' => 'ทำซ้ำงานนี้ในโปรเจคอื่น',
'Move a task to another column' => 'ย้ายงานไปคอลัมน์อื่น',
- 'Move a task to another position in the same column' => 'ย้ายงานไปตำแหน่งอื่นในคอลัมน์เดียวกัน',
'Task modification' => 'แก้ไขงาน',
'Task creation' => 'สร้างงาน',
- 'Open a closed task' => 'เปิดงานที่ปิดอยู่',
'Closing a task' => 'กำลังปิดงาน',
'Assign a color to a specific user' => 'กำหนดสีให้ผู้ใช้แบบเจาะจง',
'Column title' => 'หัวเรื่องคอลัมน์',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'ทำซ้ำในโปรเจคอื่น',
'Duplicate' => 'ทำซ้ำ',
'link' => 'ลิงค์',
- 'Update this comment' => 'ปรับปรุงความคิดเห็นนี้',
'Comment updated successfully.' => 'ปรับปรุงความคิดเห็นเรียบร้อยแล้ว',
'Unable to update your comment.' => 'ไม่สามารถปรับปรุงความคิดเห็นได้',
'Remove a comment' => 'ลบความคิดเห็น',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'ไม่สามารถลบความคิดเห็นได้',
'Do you really want to remove this comment?' => 'คุณต้องการลบความคิดเห็น',
'Only administrators or the creator of the comment can access to this page.' => 'เฉพาะผู้ดูแลระบบหรือผู้สร้างความคิดเห็นเข้าถึงหน้านี้',
- 'Details' => 'รายละเอียด',
'Current password for the user "%s"' => 'รหัสผ่านปัจจุบันของผู้ใช้ « %s »',
'The current password is required' => 'ต้องการรหัสผ่านปัจจุบัน',
'Wrong password' => 'รหัสผ่านผิด',
- 'Reset all tokens' => 'รีเซตโทเคนทั้งหมด ',
- 'All tokens have been regenerated.' => 'โทเคนทั้งหมดทำการสร้างใหม่',
'Unknown' => 'ไม่ทราบ',
'Last logins' => 'เข้าใช้ล่าสุด',
'Login date' => 'วันที่เข้าใข้',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'ไม่เชื่อมต่อกับกูเกิลแอคเคาท์',
'Login with my Google Account' => 'เข้าใช้ด้วยกูเกิลแอคเคาท์',
'Project not found.' => 'หาโปรเจคไม่พบ',
- 'Task #%d' => 'งานที่ %d',
'Task removed successfully.' => 'ลบงานเรียบร้อยแล้ว',
'Unable to remove this task.' => 'ไม่สามารถลบงานนี้',
'Remove a task' => 'ลบงาาน',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'ไม่สามารถลบกลุ่มได้',
'Category modification for the project "%s"' => 'แก้ไขกลุ่มสำหรับโปรเจค "%s"',
'Category Name' => 'ชื่อกลุ่ม',
- 'Categories for the project "%s"' => 'กลุ่มสำหรับโปรเจค "%s"',
'Add a new category' => 'เพิ่มกลุ่มใหม่',
'Do you really want to remove this category: "%s"?' => 'คุณต้องการลบกลุ่ม "%s" ใช่หรือไม่?',
'Filter by category' => 'กรองตามกลุ่ม',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'วันที่แก้ไข',
'Completion date' => 'วันที่เสร็จสิ้น',
'Clone' => 'เลียนแบบ',
- 'Clone Project' => 'เลียนแบบโปรเจค',
'Project cloned successfully.' => 'เลียนแบบโปรเจคเรียบร้อยแล้ว',
'Unable to clone this project.' => 'ไม่สามารถเลียบแบบโปรเจคได้',
'Email notifications' => 'อีเมลแจ้งเตือน',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'เพิ่มการแนบใหม่ "%s"',
'Comment updated' => 'ปรับปรุงความคิดเห็น',
'New comment posted by %s' => 'ความคิดเห็นใหม่จาก %s',
- 'List of due tasks for the project "%s"' => 'รายการงานสำหรับโปรเจค "%s"',
'New attachment' => 'การแนบใหม่',
'New comment' => 'ความคิดเห็นใหม่',
'New subtask' => 'งานย่อยใหม่',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'ปรับปรุงงานแล้ว',
'Task closed' => 'ปิดงาน',
'Task opened' => 'เปิดงาน',
- '[%s][Due tasks]' => '[%s][งานปัจจุบัน]',
- '[Kanboard] Notification' => '[Kanboard] แจ้งเตือน',
'I want to receive notifications only for those projects:' => 'ฉันต้องการรับการแจ้งเตือนสำหรับโปรเจค:',
'view the task on Kanboard' => 'แสดงงานบน Kanboard',
'Public access' => 'การเข้าถึงสาธารณะ',
- 'Category management' => 'การจัดการกลุ่ม',
'User management' => 'การจัดการผู้ใช้',
'Active tasks' => 'งานที่กำลังใช้งาน',
'Disable public access' => 'ปิดการเข้าถึงสาธารณะ',
'Enable public access' => 'เปิดการเข้าถึงสาธารณะ',
- 'Active projects' => 'เปิดโปรเจค',
- 'Inactive projects' => 'ปิดโปรเจค',
'Public access disabled' => 'การเข้าถึงสาธารณะถูกปิด',
'Do you really want to disable this project: "%s"?' => 'คุณต้องการปิดการใช้งานโปรเจคนี้: "%s" ใช่หรือไม่?',
- 'Do you really want to duplicate this project: "%s"?' => 'คุณต้องการทำซ้ำโปรเจคนี้ "%s" ใช่หรือไม่?',
'Do you really want to enable this project: "%s"?' => 'คุณต้องการเปิดการใช้งานโปรเจคนี้: "%s" ใช่หรือไม่?',
'Project activation' => 'การ เปิด/ปิด ใช้งานโปรเจค',
'Move the task to another project' => 'ย้ายงานไปโปรเจคอื่น',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'เปลี่ยนการกำหนดบุคคลของงาน',
// '%s change the assignee of the task #%d to %s' => '',
// '%s changed the assignee of the task %s to %s' => '',
- 'Column Change' => 'เปลี่ยนคอลัมน์',
- 'Position Change' => 'เปลี่ยนตำแหน่ง',
- 'Assignee Change' => 'เปลิ่ยนการกำหนด',
'New password for the user "%s"' => 'รหัสผ่านใหม่สำหรับผู้ใช้ "%s"',
'Choose an event' => 'เลือกเหตุการณ์',
// 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'ทุกคนสามารถเข้าถึงโปรเจคนี้',
// 'Webhooks' => '',
// 'API' => '',
- 'Integration' => 'การใช้งานร่วมกัน',
// 'Github webhooks' => '',
// 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '',
- 'Configure' => 'การตั้งค่า',
'Project management' => 'การจัดการโปรเจค',
'My projects' => 'โปรเจคของฉัน',
'Columns' => 'คอลัมน์',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'การแบ่งงานของผู้ใช้ "%s"',
'Clone this project' => 'เลียนแบบโปรเจคนี้',
'Column removed successfully.' => 'ลบคอลัมน์สำเร็จ',
- 'Edit Project' => 'แก้ไขโปรเจค',
// 'Github Issue' => '',
'Not enough data to show the graph.' => 'ไม่มีข้อมูลแสดงเป็นกราฟ',
'Previous' => 'ก่อนหน้า',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'สวิมเลนทั้งหมด',
'All colors' => 'สีทั้งหมด',
'All status' => 'สถานะทั้งหมด',
- 'Add a comment logging moving the task between columns' => 'เพิ่มความคิดเห็นที่เป็น log เมื่อเปลี่ยนคอลัมน์',
'Moved to column %s' => 'เคลื่อนไปคอลัมน์ %s',
'Change description' => 'เปลี่ยนคำอธิบาย',
'User dashboard' => 'ผู้ใช้แดชบอร์ด',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
'Unable to update this user.' => 'ไม่สามารถปรับปรุงผู้ใช้นี้',
'There is no user management for private projects.' => 'ไม่มีการจัดการผู้ใช้สำหรับโปรเจคส่วนตัว',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/tr_TR/translations.php b/app/Locale/tr_TR/translations.php
index a29a046b..31f2fd39 100644
--- a/app/Locale/tr_TR/translations.php
+++ b/app/Locale/tr_TR/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => 'Kullanıcı yok',
'Forbidden' => 'Yasak',
'Access Forbidden' => 'Erişim yasak',
- 'Only administrators can access to this page.' => 'Bu sayfaya yalnızca yöneticiler erişebilir.',
'Edit user' => 'Kullanıcıyı düzenle',
'Logout' => 'Çıkış yap',
'Bad username or password' => 'Hatalı kullanıcı adı veya şifre',
- 'users' => 'kullanıcılar',
- 'projects' => 'projeler',
'Edit project' => 'Projeyi düzenle',
'Name' => 'İsim',
- 'Activated' => 'Aktif',
'Projects' => 'Projeler',
'No project' => 'Proje yok',
'Project' => 'Proje',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'İşlemler',
'Inactive' => 'Aktif değil',
'Active' => 'Aktif',
- 'Column %d' => 'Sütun %d',
'Add this column' => 'Bu sütunu ekle',
'%d tasks on the board' => '%d görev bu tabloda',
'%d tasks in total' => '%d görev toplam',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Yeni proje',
'Do you really want to remove this project: "%s"?' => 'Bu projeyi gerçekten silmek istiyor musunuz: "%s"?',
'Remove project' => 'Projeyi sil',
- 'Boards' => 'Tablolar',
'Edit the board for "%s"' => 'Tabloyu "%s" için güncelle',
'All projects' => 'Tüm projeler',
'Change columns' => 'Sütunları değiştir',
'Add a new column' => 'Yeni sütun ekle',
'Title' => 'Başlık',
- 'Add Column' => 'Sütun ekle',
- 'Project "%s"' => 'Proje "%s"',
'Nobody assigned' => 'Kullanıcı atanmamış',
'Assigned to %s' => '%s kullanıcısına atanmış',
'Remove a column' => 'Bir sütunu sil',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Dil',
// 'Webhook token:' => '',
'API token:' => 'API Token:',
- 'More information' => 'Daha fazla bilgi',
'Database size:' => 'Veritabanı boyutu :',
'Download the database' => 'Veritabanını indir',
'Optimize the database' => 'Veritabanını optimize et',
'(VACUUM command)' => '(VACUUM komutu)',
'(Gzip compressed Sqlite file)' => '(Gzip ile sıkıştırılmış Sqlite dosyası)',
- 'User settings' => 'Kullanıcı ayarları',
- 'My default project:' => 'Benim varsayılan projem:',
'Close a task' => 'Bir görevi kapat',
- 'Do you really want to close this task: "%s"?' => 'Bu görevi gerçekten kapatmak istiyor musunuz: "%s"?',
'Edit a task' => 'Bir görevi düzenle',
'Column' => 'Sütun',
'Color' => 'Renk',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Şifre gerekli',
'This value must be an integer' => 'Bu değer bir rakam olmak zorunda',
'The username must be unique' => 'Kullanıcı adı daha önceden var',
- 'The username must be alphanumeric' => 'Kullanıcı adı alfanumerik olmalı (geçersiz karakter var)',
'The user id is required' => 'Kullanıcı kodu gerekli',
'Passwords don\'t match' => 'Şifreler uyuşmuyor',
'The confirmation is required' => 'Onay gerekli',
- 'The column is required' => 'Sütun gerekli',
'The project is required' => 'Proje gerekli',
- 'The color is required' => 'Renk gerekli',
'The id is required' => 'Kod gerekli',
'The project id is required' => 'Proje kodu gerekli',
'The project name is required' => 'Proje adı gerekli',
'This project must be unique' => 'Bu projenin tekil olması gerekli',
'The title is required' => 'Başlık gerekli',
- 'The language is required' => 'Dil seçimi gerekli',
'There is no active project, the first step is to create a new project.' => 'Aktif bir proje yok. İlk aşama yeni bir proje oluşturmak olmalı.',
'Settings saved successfully.' => 'Ayarlar başarıyla kaydedildi.',
'Unable to save your settings.' => 'Ayarlarınız kaydedilemedi.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Oluşturulma tarihi',
'Date completed' => 'Tamamlanma tarihi',
'Id' => 'Kod',
- 'No task' => 'Görev yok',
'Completed tasks' => 'Tamamlanan görevler',
- 'List of projects' => 'Proje listesi',
'Completed tasks for "%s"' => '"%s" için tamamlanan görevler',
'%d closed tasks' => '%d kapatılmış görevler',
// 'No task for this project' => '',
@@ -187,29 +169,22 @@ return array(
// 'Sorry, I didn\'t find this information in my database!' => '',
'Page not found' => 'Sayfa bulunamadı',
'Complexity' => 'Zorluk seviyesi',
- 'limit' => 'limit',
'Task limit' => 'Görev limiti',
'Task count' => 'Görev sayısı',
- 'This value must be greater than %d' => 'Bu değer %d den büyük olmalı',
'Edit project access list' => 'Proje erişim listesini düzenle',
- 'Edit users access' => 'Kullanıcı erişim haklarını düzenle',
'Allow this user' => 'Bu kullanıcıya izin ver',
- 'Only those users have access to this project:' => 'Bu projeye yalnızca şu kullanıcılar erişebilir:',
'Don\'t forget that administrators have access to everything.' => 'Dikkat: Yöneticilerin herşeye erişimi olduğunu unutmayın!',
'Revoke' => 'Iptal et',
'List of authorized users' => 'Yetkili kullanıcıların listesi',
'User' => 'Kullanıcı',
'Nobody have access to this project.' => 'Bu projeye kimsenin erişimi yok.',
- 'You are not allowed to access to this project.' => 'Bu projeye giriş yetkiniz yok.',
'Comments' => 'Yorumlar',
- 'Post comment' => 'Yorum ekle',
'Write your text in Markdown' => 'Yazınızı Markdown ile yazın',
'Leave a comment' => 'Bir yorum ekle',
'Comment is required' => 'Yorum gerekli',
'Leave a description' => 'Açıklama ekleyin',
'Comment added successfully.' => 'Yorum eklendi',
'Unable to create your comment.' => 'Yorumunuz oluşturulamadı',
- 'The description is required' => 'Açıklama gerekli',
'Edit this task' => 'Bu görevi değiştir',
'Due Date' => 'Termin',
'Invalid date' => 'Geçersiz tarihi',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Bu işlemi kaydet',
'Do you really want to remove this action: "%s"?' => 'Bu işlemi silmek istediğinize emin misiniz: "%s"?',
'Remove an automatic action' => 'Bir otomatik işlemi sil',
- 'Close the task' => 'Görevi kapat',
'Assign the task to a specific user' => 'Görevi bir kullanıcıya ata',
'Assign the task to the person who does the action' => 'Görevi, işlemi gerçekleştiren kullanıcıya ata',
'Duplicate the task to another project' => 'Görevi bir başka projeye kopyala',
'Move a task to another column' => 'Bir görevi başka bir sütuna taşı',
- 'Move a task to another position in the same column' => 'Bir görevin aynı sütunda yerini değiştir',
'Task modification' => 'Görev düzenleme',
'Task creation' => 'Görev oluşturma',
- 'Open a closed task' => 'Kapalı bir görevi aç',
'Closing a task' => 'Bir görev kapatılıyor',
'Assign a color to a specific user' => 'Bir kullanıcıya renk tanımla',
'Column title' => 'Sütun başlığı',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Başka bir projeye kopyala',
'Duplicate' => 'Kopya oluştur',
'link' => 'link',
- 'Update this comment' => 'Bu yorumu güncelle',
'Comment updated successfully.' => 'Yorum güncellendi.',
'Unable to update your comment.' => 'Yorum güncellenemedi.',
'Remove a comment' => 'Bir yorumu sil',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Bu yorum silinemiyor.',
'Do you really want to remove this comment?' => 'Bu yorumu silmek istediğinize emin misiniz?',
'Only administrators or the creator of the comment can access to this page.' => 'Bu sayfaya yalnızca yorum sahibi ve yöneticiler erişebilir.',
- 'Details' => 'Detaylar',
'Current password for the user "%s"' => 'Kullanıcı için mevcut şifre "%s"',
'The current password is required' => 'Mevcut şifre gerekli',
'Wrong password' => 'Yanlış Şifre',
- 'Reset all tokens' => 'Tüm fişleri sıfırla',
- 'All tokens have been regenerated.' => 'Tüm fişler yeniden oluşturuldu.',
'Unknown' => 'Bilinmeyen',
'Last logins' => 'Son kullanıcı girişleri',
'Login date' => 'Giriş tarihi',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Google hesabımla bağı kaldır',
'Login with my Google Account' => 'Google hesabımla giriş yap',
'Project not found.' => 'Proje bulunamadı',
- 'Task #%d' => 'Görev #%d',
'Task removed successfully.' => 'Görev silindi',
'Unable to remove this task.' => 'Görev silinemiyor',
'Remove a task' => 'Bir görevi sil',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Bu kategori silinemedi',
'Category modification for the project "%s"' => '"%s" projesi için kategori değiştirme',
'Category Name' => 'Kategori adı',
- 'Categories for the project "%s"' => '"%s" Projesi için kategoriler',
'Add a new category' => 'Yeni kategori ekle',
'Do you really want to remove this category: "%s"?' => 'Bu kategoriyi silmek istediğinize emin misiniz: "%s"?',
'Filter by category' => 'Kategoriye göre filtrele',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Değişiklik tarihi',
'Completion date' => 'Tamamlanma tarihi',
'Clone' => 'Kopya oluştur',
- 'Clone Project' => 'Projenin kopyasını oluştur',
'Project cloned successfully.' => 'Proje kopyası başarıyla oluşturuldu.',
'Unable to clone this project.' => 'Proje kopyası oluşturulamadı.',
'Email notifications' => 'E-Posta bilgilendirmesi',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Yeni dosya "%s" eklendi.',
'Comment updated' => 'Yorum güncellendi',
'New comment posted by %s' => '%s tarafından yeni yorum eklendi',
- 'List of due tasks for the project "%s"' => '"%s" projesi için ilgili görevlerin listesi',
'New attachment' => 'Yeni dosya eki',
'New comment' => 'Yeni yorum',
'New subtask' => 'Yeni alt görev',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Görev güncellendi',
'Task closed' => 'Görev kapatıldı',
'Task opened' => 'Görev açıldı',
- '[%s][Due tasks]' => '[%s][İlgili görevler]',
- '[Kanboard] Notification' => '[Kanboard] Bildirim',
'I want to receive notifications only for those projects:' => 'Yalnızca bu projelerle ilgili bildirim almak istiyorum:',
'view the task on Kanboard' => 'bu görevi Kanboard\'da göster',
'Public access' => 'Dışa açık erişim',
- 'Category management' => 'Kategori yönetimi',
'User management' => 'Kullanıcı yönetimi',
'Active tasks' => 'Aktif görevler',
'Disable public access' => 'Dışa açık erişimi kapat',
'Enable public access' => 'Dışa açık erişimi aç',
- 'Active projects' => 'Aktif projeler',
- 'Inactive projects' => 'Aktif olmayan projeler',
'Public access disabled' => 'Dışa açık erişim kapatıldı',
'Do you really want to disable this project: "%s"?' => 'Bu projeyi devre dışı bırakmak istediğinize emin misiniz?: "%s"',
- 'Do you really want to duplicate this project: "%s"?' => 'Bu projenin kopyasını oluşturmak istediğinize emin misiniz?: "%s"',
'Do you really want to enable this project: "%s"?' => 'Bu projeyi aktive etmek istediğinize emin misiniz?: "%s"',
'Project activation' => 'Proje aktivasyonu',
'Move the task to another project' => 'Görevi başka projeye taşı',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Göreve atanan kullanıcı değişikliği',
'%s change the assignee of the task #%d to %s' => '%s kullanıcısı #%d nolu görevin sorumlusunu %s olarak değiştirdi',
'%s changed the assignee of the task %s to %s' => '%s kullanıcısı %s görevinin sorumlusunu %s olarak değiştirdi',
- 'Column Change' => 'Sütun değişikliği',
- 'Position Change' => 'Konum değişikliği',
- 'Assignee Change' => 'Sorumlu değişikliği',
'New password for the user "%s"' => '"%s" kullanıcısı için yeni şifre',
'Choose an event' => 'Bir durum seçin',
// 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Bu projeye herkesin erişimi var.',
'Webhooks' => 'Webhooks',
'API' => 'API',
- 'Integration' => 'Entegrasyon',
'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Github Webhooks hakkında yardım',
'Create a comment from an external provider' => 'Dış sağlayıcı ile bir yorum oluştur',
'Github issue comment created' => 'Github hata yorumu oluşturuldu',
- 'Configure' => 'Ayarla',
'Project management' => 'Proje yönetimi',
'My projects' => 'Projelerim',
'Columns' => 'Sütunlar',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '"%s" için kullanıcı dağılımı',
'Clone this project' => 'Projenin kopyasını oluştur',
'Column removed successfully.' => 'Sütun başarıyla kaldırıldı.',
- 'Edit Project' => 'Projeyi düzenle',
'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Grafik gösterimi için yeterli veri yok.',
'Previous' => 'Önceki',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Tüm Kulvarlar',
'All colors' => 'Tüm Renkler',
'All status' => 'Tüm Durumlar',
- 'Add a comment logging moving the task between columns' => 'Sütun değiştiğinde kayıt olarak yorum ekle',
'Moved to column %s' => '%s Sütununa taşındı',
'Change description' => 'Açıklamayı değiştir',
'User dashboard' => 'Kullanıcı Anasayfası',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);
diff --git a/app/Locale/zh_CN/translations.php b/app/Locale/zh_CN/translations.php
index c9376805..0260aa26 100644
--- a/app/Locale/zh_CN/translations.php
+++ b/app/Locale/zh_CN/translations.php
@@ -38,15 +38,11 @@ return array(
'No user' => '没有用户',
'Forbidden' => '禁止',
'Access Forbidden' => '禁止进入',
- 'Only administrators can access to this page.' => '只有管理员可以查看该页面。',
'Edit user' => '修改用户',
'Logout' => '退出',
'Bad username or password' => '用户名或密码错误',
- 'users' => '用户',
- 'projects' => '项目',
'Edit project' => '修改项目',
'Name' => '名称',
- 'Activated' => '已激活',
'Projects' => '项目',
'No project' => '无项目',
'Project' => '项目',
@@ -56,7 +52,6 @@ return array(
'Actions' => '动作',
'Inactive' => '未激活',
'Active' => '激活',
- 'Column %d' => '第%d栏目',
'Add this column' => '加入该栏目',
'%d tasks on the board' => '看板目前有%d个任务',
'%d tasks in total' => '总共有%d个任务',
@@ -67,14 +62,11 @@ return array(
'New project' => '新建项目',
'Do you really want to remove this project: "%s"?' => '确定要移除项目"%s"吗?',
'Remove project' => '移除项目',
- 'Boards' => '看板',
'Edit the board for "%s"' => '为"%s"修改看板',
'All projects' => '所有项目',
'Change columns' => '更改栏目',
'Add a new column' => '添加新栏目',
'Title' => '标题',
- 'Add Column' => '添加栏目',
- 'Project "%s"' => '项目 "%s"',
'Nobody assigned' => '无人被指派',
'Assigned to %s' => '指派给 %s',
'Remove a column' => '移除一个栏目',
@@ -87,16 +79,12 @@ return array(
'Language' => '语言',
'Webhook token:' => '页面钩子令牌:',
'API token:' => 'API 令牌:',
- 'More information' => '更多信息',
'Database size:' => '数据库大小:',
'Download the database' => '下载数据库',
'Optimize the database' => '优化数据库',
'(VACUUM command)' => '(VACUUM 指令)',
'(Gzip compressed Sqlite file)' => '(用Gzip压缩的Sqlite文件)',
- 'User settings' => '用户设置',
- 'My default project:' => '我的默认项目:',
'Close a task' => '关闭一个任务',
- 'Do you really want to close this task: "%s"?' => '你确定要关闭任务: "%s"?',
'Edit a task' => '修改一个任务',
'Column' => '栏目',
'Color' => '颜色',
@@ -121,19 +109,15 @@ return array(
'The password is required' => '需要密码',
'This value must be an integer' => '该值必须为整数',
'The username must be unique' => '用户名必须唯一',
- 'The username must be alphanumeric' => '用户名必须是英文字符或数字组成',
'The user id is required' => '用户id是必须的',
'Passwords don\'t match' => '密码不匹配',
'The confirmation is required' => '需要确认',
- 'The column is required' => '需要指定栏目',
'The project is required' => '需要指定项目',
- 'The color is required' => '需要指定颜色',
'The id is required' => '需要指定id',
'The project id is required' => '需要指定项目id',
'The project name is required' => '需要指定项目名称',
'This project must be unique' => '项目名称必须唯一',
'The title is required' => '需要指定标题',
- 'The language is required' => '需要指定语言',
'There is no active project, the first step is to create a new project.' => '尚无活跃项目,请首先创建一个新项目。',
'Settings saved successfully.' => '设置成功保存。',
'Unable to save your settings.' => '无法保存你的设置。',
@@ -173,9 +157,7 @@ return array(
'Date created' => '创建时间',
'Date completed' => '完成时间',
'Id' => '编号',
- 'No task' => '无任务',
'Completed tasks' => '已完成任务',
- 'List of projects' => '项目列表',
'Completed tasks for "%s"' => '"%s"已经完成的任务',
'%d closed tasks' => '%d个已关闭任务',
'No task for this project' => '该项目尚无任务',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => '抱歉,无法在数据库中找到该信息!',
'Page not found' => '页面未找到',
'Complexity' => '复杂度',
- 'limit' => '限制',
'Task limit' => '任务限制',
'Task count' => '任务数',
- 'This value must be greater than %d' => '该数值必须大于%d',
'Edit project access list' => '编辑项目存取列表',
- 'Edit users access' => '编辑用户存取权限',
'Allow this user' => '允许该用户',
- 'Only those users have access to this project:' => '只有这些用户有该项目的存取权限:',
'Don\'t forget that administrators have access to everything.' => '别忘了管理员有一切的权限。',
'Revoke' => '撤销',
'List of authorized users' => '已授权的用户列表',
'User' => '用户',
'Nobody have access to this project.' => '无用户可以访问此项目.',
- 'You are not allowed to access to this project.' => '您对该项目没有权限。',
'Comments' => '评论',
- 'Post comment' => '发表评论',
'Write your text in Markdown' => '用Markdown格式编写',
'Leave a comment' => '留言',
'Comment is required' => '必须得有评论',
'Leave a description' => '给一个描述',
'Comment added successfully.' => '评论成功添加。',
'Unable to create your comment.' => '无法创建评论。',
- 'The description is required' => '必须得有描述',
'Edit this task' => '编辑该任务',
'Due Date' => '到期时间',
'Invalid date' => '无效日期',
@@ -236,15 +211,12 @@ return array(
'Save this action' => '保存该动作',
'Do you really want to remove this action: "%s"?' => '确定要移除动作"%s"吗?',
'Remove an automatic action' => '移除一个自动动作',
- 'Close the task' => '关闭任务',
'Assign the task to a specific user' => '将该任务指派给一个用户',
'Assign the task to the person who does the action' => '将任务指派给产生该动作的用户',
'Duplicate the task to another project' => '复制该任务到另一项目',
'Move a task to another column' => '移动任务到另一栏目',
- 'Move a task to another position in the same column' => '将任务移到该栏目另一位置',
'Task modification' => '任务修改',
'Task creation' => '任务创建',
- 'Open a closed task' => '开启已关闭任务',
'Closing a task' => '正在关闭任务',
'Assign a color to a specific user' => '为特定用户指派颜色',
'Column title' => '栏目名称',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => '复制到另一项目',
'Duplicate' => '复制',
'link' => '连接',
- 'Update this comment' => '更新该评论',
'Comment updated successfully.' => '评论成功更新。',
'Unable to update your comment.' => '无法更新您的评论。',
'Remove a comment' => '移除评论',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => '无法移除该评论。',
'Do you really want to remove this comment?' => '确定要移除评论吗?',
'Only administrators or the creator of the comment can access to this page.' => '只有管理员或评论创建者可以进入该页面。',
- 'Details' => '细节',
'Current password for the user "%s"' => '用户"%s"的当前密码',
'The current password is required' => '需要输入当前密码',
'Wrong password' => '密码错误',
- 'Reset all tokens' => '重置所有令牌',
- 'All tokens have been regenerated.' => '所有令牌都重新生成了。',
'Unknown' => '未知',
'Last logins' => '上次登录',
'Login date' => '登录日期',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => '去除我的google帐号关联',
'Login with my Google Account' => '用我的google帐号登录',
'Project not found.' => '未发现项目',
- 'Task #%d' => '任务 #%d',
'Task removed successfully.' => '任务成功去除',
'Unable to remove this task.' => '无法移除该任务。',
'Remove a task' => '移除一个任务',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => '无法移除该分类。',
'Category modification for the project "%s"' => '为项目"%s"修改分类',
'Category Name' => '分类名称',
- 'Categories for the project "%s"' => '项目"%s"的分类',
'Add a new category' => '加入新分类',
'Do you really want to remove this category: "%s"?' => '确定要移除分类"%s"吗?',
'Filter by category' => '按分类过滤',
@@ -390,7 +356,6 @@ return array(
'Modification date' => '修改日期',
'Completion date' => '完成日期',
'Clone' => '克隆',
- 'Clone Project' => '复制项目',
'Project cloned successfully.' => '成功复制项目。',
'Unable to clone this project.' => '无法复制此项目',
'Email notifications' => '邮件通知',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => '新附件已添加"%s"',
'Comment updated' => '更新了评论',
'New comment posted by %s' => '%s 的新评论',
- 'List of due tasks for the project "%s"' => '项目"%s"的到期任务列表',
'New attachment' => '新建附件',
'New comment' => '新建评论',
'New subtask' => '新建子任务',
@@ -415,21 +379,15 @@ return array(
'Task updated' => '任务更新',
'Task closed' => '任务关闭',
'Task opened' => '任务开启',
- '[%s][Due tasks]' => '[%s][到期任务]',
- '[Kanboard] Notification' => '[Kanboard] 通知',
'I want to receive notifications only for those projects:' => '我仅需要收到下面项目的通知:',
'view the task on Kanboard' => '在看板中查看此任务',
'Public access' => '公开访问',
- 'Category management' => '分类管理',
'User management' => '用户管理',
'Active tasks' => '活动任务',
'Disable public access' => '停止公开访问',
'Enable public access' => '开启公开访问',
- 'Active projects' => '活动项目',
- 'Inactive projects' => '不活动项目',
'Public access disabled' => '已经禁止公开访问',
'Do you really want to disable this project: "%s"?' => '确认要禁用项目"%s"吗?',
- 'Do you really want to duplicate this project: "%s"?' => '确认要复制项目"%s"吗?',
'Do you really want to enable this project: "%s"?' => '确认要启用项目"%s"吗?',
'Project activation' => '项目启动',
'Move the task to another project' => '移动任务到其它项目',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => '任务分配变更',
'%s change the assignee of the task #%d to %s' => '%s 将任务 #%d 分配给了 %s',
'%s changed the assignee of the task %s to %s' => '%s 将任务 %s 分配给 %s',
- 'Column Change' => '栏目变更',
- 'Position Change' => '位置变更',
- 'Assignee Change' => '负责人变更',
'New password for the user "%s"' => '用户"%s"的新密码',
'Choose an event' => '选择一个事件',
'Github commit received' => '收到了Github提交',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => '所有人都可以访问此项目',
'Webhooks' => '网络钩子',
'API' => '应用程序接口',
- 'Integration' => '整合',
'Github webhooks' => 'Github 网络钩子',
'Help on Github webhooks' => 'Github 网络钩子帮助',
'Create a comment from an external provider' => '从外部创建一个评论',
'Github issue comment created' => '已经创建了Github问题评论',
- 'Configure' => '配置',
'Project management' => '项目管理',
'My projects' => '我的项目',
'Columns' => '栏目',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '"%s"的用户分析',
'Clone this project' => '复制此项目',
'Column removed successfully.' => '成功删除了栏目。',
- 'Edit Project' => '编辑项目',
'Github Issue' => 'Github 任务报告',
'Not enough data to show the graph.' => '数据不足,无法绘图。',
'Previous' => '后退',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => '全部泳道',
'All colors' => '全部颜色',
'All status' => '全部状态',
- 'Add a comment logging moving the task between columns' => '在不同栏目间移动任务时添加一个评论',
'Moved to column %s' => '移动到栏目 %s',
'Change description' => '修改描述',
'User dashboard' => '用户仪表板',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '',
+ // 'User that will receive the email' => '',
+ // 'Email subject' => '',
+ // 'Date' => '',
+ // 'By @%s on Bitbucket' => '',
+ // 'Bitbucket Issue' => '',
+ // 'Commit made by @%s on Bitbucket' => '',
+ // 'Commit made by @%s on Github' => '',
+ // 'By @%s on Github' => '',
+ // 'Commit made by @%s on Gitlab' => '',
+ // 'Add a comment log when moving the task between columns' => '',
+ // 'Move the task to another column when the category is changed' => '',
+ // 'Send a task by email to someone' => '',
+ // 'Reopen a task' => '',
+ // 'Bitbucket issue opened' => '',
+ // 'Bitbucket issue closed' => '',
+ // 'Bitbucket issue reopened' => '',
+ // 'Bitbucket issue assignee change' => '',
+ // 'Bitbucket issue comment created' => '',
+ // 'Column change' => '',
+ // 'Position change' => '',
+ // 'Swimlane change' => '',
+ // 'Assignee change' => '',
+ // '[%s] Overdue tasks' => '',
+ // 'Notification' => '',
+ // '%s moved the task #%d to the first swimlane' => '',
+ // '%s moved the task #%d to the swimlane "%s"' => '',
+ // 'Swimlane' => '',
+ // 'Budget overview' => '',
+ // 'Type' => '',
+ // 'There is not enough data to show something.' => '',
+ // 'Gravatar' => '',
+ // 'Hipchat' => '',
+ // 'Slack' => '',
+ // '%s moved the task %s to the first swimlane' => '',
+ // '%s moved the task %s to the swimlane "%s"' => '',
+ // 'This report contains all subtasks information for the given date range.' => '',
+ // 'This report contains all tasks information for the given date range.' => '',
+ // 'Project activities for %s' => '',
+ // 'view the board on Kanboard' => '',
+ // 'The task have been moved to the first swimlane' => '',
+ // 'The task have been moved to another swimlane:' => '',
+ // 'Overdue tasks for the project "%s"' => '',
+ // 'There is no completed tasks at the moment.' => '',
+ // 'New title: %s' => '',
+ // 'The task is not assigned anymore' => '',
+ // 'New assignee: %s' => '',
+ // 'There is no category now' => '',
+ // 'New category: %s' => '',
+ // 'New color: %s' => '',
+ // 'New complexity: %d' => '',
+ // 'The due date have been removed' => '',
+ // 'There is no description anymore' => '',
+ // 'Recurrence settings have been modified' => '',
+ // 'Time spent changed: %sh' => '',
+ // 'Time estimated changed: %sh' => '',
+ // 'The field "%s" have been updated' => '',
+ // 'The description have been modified' => '',
+ // 'Do you really want to close the task "%s" as well as all subtasks?' => '',
+ // 'Swimlane: %s' => '',
+ // 'Project calendar' => '',
+ // 'I want to receive notifications for:' => '',
+ // 'All tasks' => '',
+ // 'Only for tasks assigned to me' => '',
+ // 'Only for tasks created by me' => '',
+ // 'Only for tasks created by me and assigned to me' => '',
+ // '%A' => '',
+ // '%b %e, %Y, %k:%M %p' => '',
+ // 'New due date: %B %e, %Y' => '',
+ // 'Start date changed: %B %e, %Y' => '',
+ // '%k:%M %p' => '',
);