Add cli command to compare locales + cleanup translation files

This commit is contained in:
Frederic Guillot
2015-06-21 15:45:26 -04:00
parent ff7189971e
commit 9b78126289
22 changed files with 1285 additions and 864 deletions

View File

@@ -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;
}
}

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Ingen bruger', 'No user' => 'Ingen bruger',
'Forbidden' => 'Forbudt', 'Forbidden' => 'Forbudt',
'Access Forbidden' => 'Adgang nægtet', 'Access Forbidden' => 'Adgang nægtet',
'Only administrators can access to this page.' => 'Kun administratorer har adgang til denne side.',
'Edit user' => 'Rediger bruger', 'Edit user' => 'Rediger bruger',
'Logout' => 'Log ud', 'Logout' => 'Log ud',
'Bad username or password' => 'Forkert brugernavn eller adgangskode', 'Bad username or password' => 'Forkert brugernavn eller adgangskode',
'users' => 'Brugere',
'projects' => 'Projekter',
'Edit project' => 'Rediger projekt', 'Edit project' => 'Rediger projekt',
'Name' => 'Navn', 'Name' => 'Navn',
'Activated' => 'Aktiveret',
'Projects' => 'Projekter', 'Projects' => 'Projekter',
'No project' => 'Intet projekt', 'No project' => 'Intet projekt',
'Project' => 'Projekt', 'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Handlinger', 'Actions' => 'Handlinger',
'Inactive' => 'Inaktiv', 'Inactive' => 'Inaktiv',
'Active' => 'Aktiv', 'Active' => 'Aktiv',
'Column %d' => 'Kolonne %d',
'Add this column' => 'Tilføj denne kolonne', 'Add this column' => 'Tilføj denne kolonne',
'%d tasks on the board' => '%d Opgaver på boardet', '%d tasks on the board' => '%d Opgaver på boardet',
'%d tasks in total' => '%d Opgaver i alt', '%d tasks in total' => '%d Opgaver i alt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nyt projekt', 'New project' => 'Nyt projekt',
'Do you really want to remove this project: "%s"?' => 'Vil du virkelig fjerne dette projekt: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Vil du virkelig fjerne dette projekt: "%s"?',
'Remove project' => 'Fjern projekt', 'Remove project' => 'Fjern projekt',
'Boards' => 'Boards',
'Edit the board for "%s"' => 'Rediger boardet for "%s"', 'Edit the board for "%s"' => 'Rediger boardet for "%s"',
'All projects' => 'Alle Projekter', 'All projects' => 'Alle Projekter',
'Change columns' => 'Ændre kolonner', 'Change columns' => 'Ændre kolonner',
'Add a new column' => 'Tilføj en ny kolonne', 'Add a new column' => 'Tilføj en ny kolonne',
'Title' => 'Titel', 'Title' => 'Titel',
'Add Column' => 'Tilføj kolonne',
'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Ingen ansvarlig', 'Nobody assigned' => 'Ingen ansvarlig',
'Assigned to %s' => 'Ansvarlig: %s', 'Assigned to %s' => 'Ansvarlig: %s',
'Remove a column' => 'Fjern en kolonne', 'Remove a column' => 'Fjern en kolonne',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Sprog', 'Language' => 'Sprog',
'Webhook token:' => 'Webhook token:', 'Webhook token:' => 'Webhook token:',
'API token:' => 'API Token:', 'API token:' => 'API Token:',
'More information' => 'Mere Information',
'Database size:' => 'Databasestørrelse:', 'Database size:' => 'Databasestørrelse:',
'Download the database' => 'Download databasen', 'Download the database' => 'Download databasen',
'Optimize the database' => 'Optimer databasen', 'Optimize the database' => 'Optimer databasen',
'(VACUUM command)' => '(VACUUM kommando)', '(VACUUM command)' => '(VACUUM kommando)',
'(Gzip compressed Sqlite file)' => '(Gzip-komprimeret Sqlite fil)', '(Gzip compressed Sqlite file)' => '(Gzip-komprimeret Sqlite fil)',
'User settings' => 'Brugerindstillinger',
'My default project:' => 'Mit standard projekt:',
'Close a task' => 'Luk en opgave', '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', 'Edit a task' => 'Rediger en opgave',
'Column' => 'Kolonne', 'Column' => 'Kolonne',
'Color' => 'Farve', 'Color' => 'Farve',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Adgangskode er krævet', 'The password is required' => 'Adgangskode er krævet',
'This value must be an integer' => 'Denne værdig skal være et tal', '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 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', 'The user id is required' => 'Bruger id er krævet',
'Passwords don\'t match' => 'Adgangskoderne stemmer ikke overens', 'Passwords don\'t match' => 'Adgangskoderne stemmer ikke overens',
'The confirmation is required' => 'Verifikation er nødvendigt', '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 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 id is required' => 'Id\'et er krævet',
'The project id is required' => 'Projektets id er krævet', 'The project id is required' => 'Projektets id er krævet',
'The project name is required' => 'Projektets navn er krævet', 'The project name is required' => 'Projektets navn er krævet',
'This project must be unique' => 'Projektets navn skal være unikt', 'This project must be unique' => 'Projektets navn skal være unikt',
'The title is required' => 'Titel er krævet', '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.', '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.', 'Settings saved successfully.' => 'Indstillinger gemt.',
'Unable to save your settings.' => 'Indstillinger kunne ikke gemmes.', 'Unable to save your settings.' => 'Indstillinger kunne ikke gemmes.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Dato for oprettelse', 'Date created' => 'Dato for oprettelse',
'Date completed' => 'Dato for fuldført', 'Date completed' => 'Dato for fuldført',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'Ingen opgave',
'Completed tasks' => 'Fuldførte opgaver', 'Completed tasks' => 'Fuldførte opgaver',
'List of projects' => 'Liste over projekter',
'Completed tasks for "%s"' => 'Fuldførte opgaver for "%s"', 'Completed tasks for "%s"' => 'Fuldførte opgaver for "%s"',
'%d closed tasks' => '%d lukket opgavet', '%d closed tasks' => '%d lukket opgavet',
'No task for this project' => 'Ingen opgaver i dette projekt', '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!', 'Sorry, I didn\'t find this information in my database!' => 'Denne information kunne ikke findes i databasen!',
'Page not found' => 'Siden er ikke fundet', 'Page not found' => 'Siden er ikke fundet',
'Complexity' => 'Kompleksitet', 'Complexity' => 'Kompleksitet',
'limit' => 'Begrænsning',
'Task limit' => 'Opgave begrænsning', 'Task limit' => 'Opgave begrænsning',
// 'Task count' => '', // '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 project access list' => 'Rediger adgangstilladelser for projektet',
'Edit users access' => 'Rediger brugertilladelser',
'Allow this user' => 'Tillad denne bruger', '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.', 'Don\'t forget that administrators have access to everything.' => 'Glem ikke at administratorer har adgang til alt.',
'Revoke' => 'Fjern', 'Revoke' => 'Fjern',
'List of authorized users' => 'Liste over autoriserede brugere', 'List of authorized users' => 'Liste over autoriserede brugere',
'User' => 'Bruger', 'User' => 'Bruger',
'Nobody have access to this project.' => 'Ingen har adgang til dette projekt.', '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', 'Comments' => 'Kommentarer',
'Post comment' => 'Skriv en kommentar',
'Write your text in Markdown' => 'Skriv din tekst i markdown', 'Write your text in Markdown' => 'Skriv din tekst i markdown',
'Leave a comment' => 'Efterlad en kommentar', 'Leave a comment' => 'Efterlad en kommentar',
'Comment is required' => 'Kommentar er krævet', 'Comment is required' => 'Kommentar er krævet',
'Leave a description' => 'Efterlad en beskrivelse...', 'Leave a description' => 'Efterlad en beskrivelse...',
'Comment added successfully.' => 'Kommentaren er tilføjet.', 'Comment added successfully.' => 'Kommentaren er tilføjet.',
'Unable to create your comment.' => 'Din kommentar kunne ikke oprettes.', 'Unable to create your comment.' => 'Din kommentar kunne ikke oprettes.',
'The description is required' => 'Beskrivelsen er krævet',
'Edit this task' => 'Rediger denne opgave', 'Edit this task' => 'Rediger denne opgave',
'Due Date' => 'Forfaldsdato', 'Due Date' => 'Forfaldsdato',
'Invalid date' => 'Ugyldig dato', 'Invalid date' => 'Ugyldig dato',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Gem denne handling', 'Save this action' => 'Gem denne handling',
'Do you really want to remove this action: "%s"?' => 'Vil du virkelig slette denne handling: "%s"?', 'Do you really want to remove this action: "%s"?' => 'Vil du virkelig slette denne handling: "%s"?',
'Remove an automatic action' => 'Fjern en automatisk handling', '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 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', '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', '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 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 modification' => 'Opgave forandring',
'Task creation' => 'Opgave oprettelse', 'Task creation' => 'Opgave oprettelse',
'Open a closed task' => 'Åbne en lukket opgave',
'Closing a task' => 'Lukke en opgave', 'Closing a task' => 'Lukke en opgave',
'Assign a color to a specific user' => 'Tildel en farve til en bestemt bruger', 'Assign a color to a specific user' => 'Tildel en farve til en bestemt bruger',
'Column title' => 'Kolonne titel', 'Column title' => 'Kolonne titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopier til et andet projekt', 'Duplicate to another project' => 'Kopier til et andet projekt',
'Duplicate' => 'Kopier', 'Duplicate' => 'Kopier',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Opdater denne kommentar',
'Comment updated successfully.' => 'Kommentar opdateret.', 'Comment updated successfully.' => 'Kommentar opdateret.',
'Unable to update your comment.' => 'Din kommentar kunne ikke opdateres.', 'Unable to update your comment.' => 'Din kommentar kunne ikke opdateres.',
'Remove a comment' => 'Fjern en kommentar', 'Remove a comment' => 'Fjern en kommentar',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Kommentaren kunne ikke fjernes.', 'Unable to remove this comment.' => 'Kommentaren kunne ikke fjernes.',
'Do you really want to remove this comment?' => 'Vil du virkelig fjerne denne kommentar?', '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.', '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"', 'Current password for the user "%s"' => 'Aktuelle adgangskode for brugeren "%s"',
'The current password is required' => 'Den aktuelle adgangskode er krævet', 'The current password is required' => 'Den aktuelle adgangskode er krævet',
'Wrong password' => 'Forkert adgangskode', 'Wrong password' => 'Forkert adgangskode',
'Reset all tokens' => 'Nulstil alle tokens',
'All tokens have been regenerated.' => 'Alle tokens er blevet regenereret.',
'Unknown' => 'Ukendt', 'Unknown' => 'Ukendt',
'Last logins' => 'Sidste login', 'Last logins' => 'Sidste login',
'Login date' => 'Login dato', 'Login date' => 'Login dato',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Fjern forbindelsen til min Google-konto', 'Unlink my Google Account' => 'Fjern forbindelsen til min Google-konto',
'Login with my Google Account' => 'Login med min Google-konto', 'Login with my Google Account' => 'Login med min Google-konto',
'Project not found.' => 'Projekt ikke fundet.', 'Project not found.' => 'Projekt ikke fundet.',
'Task #%d' => 'Opgave %d',
'Task removed successfully.' => 'Opgaven er fjernet.', 'Task removed successfully.' => 'Opgaven er fjernet.',
'Unable to remove this task.' => 'Opgaven kunne ikke fjernes.', 'Unable to remove this task.' => 'Opgaven kunne ikke fjernes.',
'Remove a task' => 'Fjern en opgave', 'Remove a task' => 'Fjern en opgave',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Kategorien kunne ikke fjernes.', 'Unable to remove this category.' => 'Kategorien kunne ikke fjernes.',
'Category modification for the project "%s"' => 'Forandring af kategori for projektet "%s"', 'Category modification for the project "%s"' => 'Forandring af kategori for projektet "%s"',
'Category Name' => 'Kategorinavn', 'Category Name' => 'Kategorinavn',
'Categories for the project "%s"' => 'Kategorier i projektet "%s"',
'Add a new category' => 'Tilfæj en ny kategori', '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"?', 'Do you really want to remove this category: "%s"?' => 'Vil du virkelig fjerne denne kategori: "%s"?',
'Filter by category' => 'Filter efter kategori', 'Filter by category' => 'Filter efter kategori',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Ændringsdato', 'Modification date' => 'Ændringsdato',
'Completion date' => 'Afslutningsdato', 'Completion date' => 'Afslutningsdato',
'Clone' => 'Kopier', 'Clone' => 'Kopier',
'Clone Project' => 'Kopier projekt',
'Project cloned successfully.' => 'Projektet er kopieret.', 'Project cloned successfully.' => 'Projektet er kopieret.',
'Unable to clone this project.' => 'Projektet kunne ikke kopieres', 'Unable to clone this project.' => 'Projektet kunne ikke kopieres',
'Email notifications' => 'Email notifikationer', 'Email notifications' => 'Email notifikationer',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Ny vedhæftning tilføjet "%s"', 'New attachment added "%s"' => 'Ny vedhæftning tilføjet "%s"',
'Comment updated' => 'Kommentar opdateret', 'Comment updated' => 'Kommentar opdateret',
'New comment posted by %s' => 'Ny kommentar af %s', '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 attachment' => '',
// 'New comment' => '', // 'New comment' => '',
// 'New subtask' => '', // 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '', // 'Task updated' => '',
// 'Task closed' => '', // 'Task closed' => '',
// 'Task opened' => '', // '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:', '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', 'view the task on Kanboard' => 'se opgaven på Kanboard',
'Public access' => 'Offentlig adgang', 'Public access' => 'Offentlig adgang',
'Category management' => 'Kategorier',
'User management' => 'Brugerstyring', 'User management' => 'Brugerstyring',
'Active tasks' => 'Aktive opgaver', 'Active tasks' => 'Aktive opgaver',
'Disable public access' => 'Deaktiver offentlig adgang', 'Disable public access' => 'Deaktiver offentlig adgang',
'Enable public access' => 'Aktivér offentlig adgang', 'Enable public access' => 'Aktivér offentlig adgang',
'Active projects' => 'Aktive Projekter',
'Inactive projects' => 'Inaktive projekter',
'Public access disabled' => 'Offentlig adgang deaktiveret', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Vil du virkelig aktiverer dette projekt: "%s"?',
'Project activation' => 'Projekt aktivering', 'Project activation' => 'Projekt aktivering',
'Move the task to another project' => 'Flyt opgaven til et andet projekt', 'Move the task to another project' => 'Flyt opgaven til et andet projekt',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Opgaven ansvarlig ændring', '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 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', '%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"', 'New password for the user "%s"' => 'Ny adgangskode for brugeren "%s"',
'Choose an event' => 'Vælg et event', 'Choose an event' => 'Vælg et event',
'Github commit received' => 'Github commit modtaget', 'Github commit received' => 'Github commit modtaget',
@@ -553,12 +508,10 @@ return array(
// 'Everybody have access to this project.' => '', // 'Everybody have access to this project.' => '',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
// 'Integration' => '',
// 'Github webhooks' => '', // 'Github webhooks' => '',
// 'Help on Github webhooks' => '', // 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '', // 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '', // 'Github issue comment created' => '',
// 'Configure' => '',
// 'Project management' => '', // 'Project management' => '',
// 'My projects' => '', // 'My projects' => '',
// 'Columns' => '', // 'Columns' => '',
@@ -576,7 +529,6 @@ return array(
// 'User repartition for "%s"' => '', // 'User repartition for "%s"' => '',
// 'Clone this project' => '', // 'Clone this project' => '',
// 'Column removed successfully.' => '', // 'Column removed successfully.' => '',
// 'Edit Project' => '',
// 'Github Issue' => '', // 'Github Issue' => '',
// 'Not enough data to show the graph.' => '', // 'Not enough data to show the graph.' => '',
// 'Previous' => '', // 'Previous' => '',
@@ -657,7 +609,6 @@ return array(
// 'All swimlanes' => '', // 'All swimlanes' => '',
// 'All colors' => '', // 'All colors' => '',
// 'All status' => '', // 'All status' => '',
// 'Add a comment logging moving the task between columns' => '',
// 'Moved to column %s' => '', // 'Moved to column %s' => '',
// 'Change description' => '', // 'Change description' => '',
// 'User dashboard' => '', // 'User dashboard' => '',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Kein Benutzer', 'No user' => 'Kein Benutzer',
'Forbidden' => 'Verboten', 'Forbidden' => 'Verboten',
'Access Forbidden' => 'Zugriff verboten', 'Access Forbidden' => 'Zugriff verboten',
'Only administrators can access to this page.' => 'Nur Administratoren haben Zugriff zu dieser Seite.',
'Edit user' => 'Benutzer bearbeiten', 'Edit user' => 'Benutzer bearbeiten',
'Logout' => 'Abmelden', 'Logout' => 'Abmelden',
'Bad username or password' => 'Falscher Benutzername oder Passwort', 'Bad username or password' => 'Falscher Benutzername oder Passwort',
'users' => 'Benutzer',
'projects' => 'Projekte',
'Edit project' => 'Projekt bearbeiten', 'Edit project' => 'Projekt bearbeiten',
'Name' => 'Name', 'Name' => 'Name',
'Activated' => 'Aktiviert',
'Projects' => 'Projekte', 'Projects' => 'Projekte',
'No project' => 'Keine Projekte', 'No project' => 'Keine Projekte',
'Project' => 'Projekt', 'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Aktionen', 'Actions' => 'Aktionen',
'Inactive' => 'Inaktiv', 'Inactive' => 'Inaktiv',
'Active' => 'Aktiv', 'Active' => 'Aktiv',
'Column %d' => 'Spalte %d',
'Add this column' => 'Diese Spalte hinzufügen', 'Add this column' => 'Diese Spalte hinzufügen',
'%d tasks on the board' => '%d Aufgaben auf dieser Pinnwand', '%d tasks on the board' => '%d Aufgaben auf dieser Pinnwand',
'%d tasks in total' => '%d Aufgaben insgesamt', '%d tasks in total' => '%d Aufgaben insgesamt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Neues Projekt', 'New project' => 'Neues Projekt',
'Do you really want to remove this project: "%s"?' => 'Soll dieses Projekt wirklich gelöscht werden: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Soll dieses Projekt wirklich gelöscht werden: "%s"?',
'Remove project' => 'Projekt löschen', 'Remove project' => 'Projekt löschen',
'Boards' => 'Pinnwände',
'Edit the board for "%s"' => 'Pinnwand für "%s" bearbeiten', 'Edit the board for "%s"' => 'Pinnwand für "%s" bearbeiten',
'All projects' => 'Alle Projekte', 'All projects' => 'Alle Projekte',
'Change columns' => 'Spalten ändern', 'Change columns' => 'Spalten ändern',
'Add a new column' => 'Neue Spalte hinzufügen', 'Add a new column' => 'Neue Spalte hinzufügen',
'Title' => 'Titel', 'Title' => 'Titel',
'Add Column' => 'Neue Spalte',
'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nicht zugeordnet', 'Nobody assigned' => 'Nicht zugeordnet',
'Assigned to %s' => 'Zuständig: %s', 'Assigned to %s' => 'Zuständig: %s',
'Remove a column' => 'Spalte löschen', 'Remove a column' => 'Spalte löschen',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Sprache', 'Language' => 'Sprache',
'Webhook token:' => 'Webhook Token:', 'Webhook token:' => 'Webhook Token:',
'API token:' => 'API Token:', 'API token:' => 'API Token:',
'More information' => 'Mehr Informationen',
'Database size:' => 'Datenbankgröße:', 'Database size:' => 'Datenbankgröße:',
'Download the database' => 'Datenbank herunterladen', 'Download the database' => 'Datenbank herunterladen',
'Optimize the database' => 'Datenbank optimieren', 'Optimize the database' => 'Datenbank optimieren',
'(VACUUM command)' => '(VACUUM Befehl)', '(VACUUM command)' => '(VACUUM Befehl)',
'(Gzip compressed Sqlite file)' => '(Gzip-komprimierte Sqlite Datei)', '(Gzip compressed Sqlite file)' => '(Gzip-komprimierte Sqlite Datei)',
'User settings' => 'Benutzereinstellungen',
'My default project:' => 'Standardprojekt:',
'Close a task' => 'Aufgabe abschließen', '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', 'Edit a task' => 'Aufgabe bearbeiten',
'Column' => 'Spalte', 'Column' => 'Spalte',
'Color' => 'Farbe', 'Color' => 'Farbe',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Das Passwort wird benötigt', 'The password is required' => 'Das Passwort wird benötigt',
'This value must be an integer' => 'Dieser Wert muss eine ganze Zahl sein', '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 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', 'The user id is required' => 'Die Benutzer ID ist anzugeben',
'Passwords don\'t match' => 'Passwörter nicht gleich', 'Passwords don\'t match' => 'Passwörter nicht gleich',
'The confirmation is required' => 'Die Bestätigung ist erforderlich', '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 project is required' => 'Das Projekt ist anzugeben',
'The color is required' => 'Die Farbe ist anzugeben',
'The id is required' => 'Die ID ist anzugeben', 'The id is required' => 'Die ID ist anzugeben',
'The project id is required' => 'Die Projekt ID ist anzugeben', 'The project id is required' => 'Die Projekt ID ist anzugeben',
'The project name is required' => 'Der Projektname ist anzugeben', 'The project name is required' => 'Der Projektname ist anzugeben',
'This project must be unique' => 'Der Projektname muss eindeutig sein', 'This project must be unique' => 'Der Projektname muss eindeutig sein',
'The title is required' => 'Der Titel ist anzugeben', '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.', '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.', 'Settings saved successfully.' => 'Einstellungen erfolgreich gespeichert.',
'Unable to save your settings.' => 'Speichern der Einstellungen nicht möglich.', 'Unable to save your settings.' => 'Speichern der Einstellungen nicht möglich.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Erstellt am', 'Date created' => 'Erstellt am',
'Date completed' => 'Abgeschlossen am', 'Date completed' => 'Abgeschlossen am',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'Keine Aufgabe',
'Completed tasks' => 'Abgeschlossene Aufgaben', 'Completed tasks' => 'Abgeschlossene Aufgaben',
'List of projects' => 'Liste der Projekte',
'Completed tasks for "%s"' => 'Abgeschlossene Aufgaben für "%s"', 'Completed tasks for "%s"' => 'Abgeschlossene Aufgaben für "%s"',
'%d closed tasks' => '%d abgeschlossene Aufgaben', '%d closed tasks' => '%d abgeschlossene Aufgaben',
'No task for this project' => 'Keine Aufgaben in diesem Projekt', '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!', 'Sorry, I didn\'t find this information in my database!' => 'Diese Information wurde in der Datenbank nicht gefunden!',
'Page not found' => 'Seite nicht gefunden', 'Page not found' => 'Seite nicht gefunden',
'Complexity' => 'Komplexität', 'Complexity' => 'Komplexität',
'limit' => 'Limit',
'Task limit' => 'Maximale Anzahl von Aufgaben', 'Task limit' => 'Maximale Anzahl von Aufgaben',
'Task count' => 'Aufgabenanzahl', '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 project access list' => 'Zugriffsberechtigungen des Projektes bearbeiten',
'Edit users access' => 'Benutzerzugriff ändern',
'Allow this user' => 'Diesen Benutzer autorisieren', '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.', 'Don\'t forget that administrators have access to everything.' => 'Nicht vergessen: Administratoren haben überall Zugriff.',
'Revoke' => 'Entfernen', 'Revoke' => 'Entfernen',
'List of authorized users' => 'Liste der autorisierten Benutzer', 'List of authorized users' => 'Liste der autorisierten Benutzer',
'User' => 'Benutzer', 'User' => 'Benutzer',
'Nobody have access to this project.' => 'Niemand hat Zugriff auf dieses Projekt.', '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', 'Comments' => 'Kommentare',
'Post comment' => 'Kommentieren',
'Write your text in Markdown' => 'Schreibe deinen Text in Markdown-Syntax', 'Write your text in Markdown' => 'Schreibe deinen Text in Markdown-Syntax',
'Leave a comment' => 'Kommentar eingeben', 'Leave a comment' => 'Kommentar eingeben',
'Comment is required' => 'Ein Kommentar wird benötigt', 'Comment is required' => 'Ein Kommentar wird benötigt',
'Leave a description' => 'Beschreibung eingeben', 'Leave a description' => 'Beschreibung eingeben',
'Comment added successfully.' => 'Kommentar erfolgreich hinzugefügt.', 'Comment added successfully.' => 'Kommentar erfolgreich hinzugefügt.',
'Unable to create your comment.' => 'Hinzufügen eines Kommentars nicht möglich.', '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', 'Edit this task' => 'Aufgabe bearbeiten',
'Due Date' => 'Fällig am', 'Due Date' => 'Fällig am',
'Invalid date' => 'Ungültiges Datum', 'Invalid date' => 'Ungültiges Datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Aktion speichern', 'Save this action' => 'Aktion speichern',
'Do you really want to remove this action: "%s"?' => 'Soll diese Aktion wirklich gelöscht werden: "%s"?', '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', '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 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', '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', '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 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 modification' => 'Aufgabe ändern',
'Task creation' => 'Aufgabe erstellen', 'Task creation' => 'Aufgabe erstellen',
'Open a closed task' => 'Abgeschlossene Aufgabe wieder eröffnen',
'Closing a task' => 'Aufgabe abschließen', 'Closing a task' => 'Aufgabe abschließen',
'Assign a color to a specific user' => 'Einem Benutzer eine Farbe zuordnen', 'Assign a color to a specific user' => 'Einem Benutzer eine Farbe zuordnen',
'Column title' => 'Spaltentitel', 'Column title' => 'Spaltentitel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'In ein anderes Projekt duplizieren', 'Duplicate to another project' => 'In ein anderes Projekt duplizieren',
'Duplicate' => 'Duplizieren', 'Duplicate' => 'Duplizieren',
'link' => 'Link', 'link' => 'Link',
'Update this comment' => 'Kommentar aktualisieren',
'Comment updated successfully.' => 'Kommentar erfolgreich aktualisiert.', 'Comment updated successfully.' => 'Kommentar erfolgreich aktualisiert.',
'Unable to update your comment.' => 'Aktualisierung des Kommentars nicht möglich.', 'Unable to update your comment.' => 'Aktualisierung des Kommentars nicht möglich.',
'Remove a comment' => 'Kommentar löschen', 'Remove a comment' => 'Kommentar löschen',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Löschen des Kommentars nicht möglich.', '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?', '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.', '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"', 'Current password for the user "%s"' => 'Aktuelles Passwort des Benutzers "%s"',
'The current password is required' => 'Das aktuelle Passwort wird benötigt', 'The current password is required' => 'Das aktuelle Passwort wird benötigt',
'Wrong password' => 'Falsches Passwort', 'Wrong password' => 'Falsches Passwort',
'Reset all tokens' => 'Alle Tokens zurücksetzen',
'All tokens have been regenerated.' => 'Alle Tokens wurden zurückgesetzt.',
'Unknown' => 'Unbekannt', 'Unknown' => 'Unbekannt',
'Last logins' => 'Letzte Anmeldungen', 'Last logins' => 'Letzte Anmeldungen',
'Login date' => 'Anmeldedatum', 'Login date' => 'Anmeldedatum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Verbindung mit meinem Google Account trennen', 'Unlink my Google Account' => 'Verbindung mit meinem Google Account trennen',
'Login with my Google Account' => 'Anmelden mit meinem Google Account', 'Login with my Google Account' => 'Anmelden mit meinem Google Account',
'Project not found.' => 'Das Projekt wurde nicht gefunden.', 'Project not found.' => 'Das Projekt wurde nicht gefunden.',
'Task #%d' => 'Aufgabe Nr. %d',
'Task removed successfully.' => 'Aufgabe erfolgreich gelöscht.', 'Task removed successfully.' => 'Aufgabe erfolgreich gelöscht.',
'Unable to remove this task.' => 'Löschen der Aufgabe nicht möglich.', 'Unable to remove this task.' => 'Löschen der Aufgabe nicht möglich.',
'Remove a task' => 'Aufgabe löschen', 'Remove a task' => 'Aufgabe löschen',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Löschen der Kategorie nicht möglich.', '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 modification for the project "%s"' => 'Kategorie für das Projekt "%s" bearbeiten',
'Category Name' => 'Kategoriename', 'Category Name' => 'Kategoriename',
'Categories for the project "%s"' => 'Kategorien des Projektes "%s"',
'Add a new category' => 'Neue Kategorie', 'Add a new category' => 'Neue Kategorie',
'Do you really want to remove this category: "%s"?' => 'Soll diese Kategorie wirklich gelöscht werden: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Soll diese Kategorie wirklich gelöscht werden: "%s"?',
'Filter by category' => 'Kategorie filtern', 'Filter by category' => 'Kategorie filtern',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Änderungsdatum', 'Modification date' => 'Änderungsdatum',
'Completion date' => 'Abschlussdatum', 'Completion date' => 'Abschlussdatum',
'Clone' => 'duplizieren', 'Clone' => 'duplizieren',
'Clone Project' => 'Projekt duplizieren',
'Project cloned successfully.' => 'Projekt wurde dupliziert.', 'Project cloned successfully.' => 'Projekt wurde dupliziert.',
'Unable to clone this project.' => 'Duplizieren dieses Projekts schlug fehl.', 'Unable to clone this project.' => 'Duplizieren dieses Projekts schlug fehl.',
'Email notifications' => 'E-Mail Benachrichtigungen', 'Email notifications' => 'E-Mail Benachrichtigungen',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Neuer Anhang "%s" wurde hinzugefügt.', 'New attachment added "%s"' => 'Neuer Anhang "%s" wurde hinzugefügt.',
'Comment updated' => 'Kommentar wurde aktualisiert', 'Comment updated' => 'Kommentar wurde aktualisiert',
'New comment posted by %s' => 'Neuer Kommentar verfasst durch %s', '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 attachment' => 'Neuer Anhang',
'New comment' => 'Neuer Kommentar', 'New comment' => 'Neuer Kommentar',
'New subtask' => 'Neue Teilaufgabe', 'New subtask' => 'Neue Teilaufgabe',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Aufgabe aktualisiert', 'Task updated' => 'Aufgabe aktualisiert',
'Task closed' => 'Aufgabe geschlossen', 'Task closed' => 'Aufgabe geschlossen',
'Task opened' => 'Aufgabe geöffnet', '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:', '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', 'view the task on Kanboard' => 'diese Aufgabe auf dem Kanboard zeigen',
'Public access' => 'Öffentlicher Zugriff', 'Public access' => 'Öffentlicher Zugriff',
'Category management' => 'Kategorien verwalten',
'User management' => 'Benutzer verwalten', 'User management' => 'Benutzer verwalten',
'Active tasks' => 'Aktive Aufgaben', 'Active tasks' => 'Aktive Aufgaben',
'Disable public access' => 'Öffentlichen Zugriff deaktivieren', 'Disable public access' => 'Öffentlichen Zugriff deaktivieren',
'Enable public access' => 'Öffentlichen Zugriff aktivieren', 'Enable public access' => 'Öffentlichen Zugriff aktivieren',
'Active projects' => 'Aktive Projekte',
'Inactive projects' => 'Inaktive Projekte',
'Public access disabled' => 'Öffentlicher Zugriff deaktiviert', '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 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"', 'Do you really want to enable this project: "%s"?' => 'Möchten Sie dieses Projekt wirklich aktivieren: "%s"',
'Project activation' => 'Projektaktivierung', 'Project activation' => 'Projektaktivierung',
'Move the task to another project' => 'Aufgabe in ein anderes Projekt verschieben', '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', '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 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', '%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"', 'New password for the user "%s"' => 'Neues Passwort des Benutzers "%s"',
'Choose an event' => 'Aktion wählen', 'Choose an event' => 'Aktion wählen',
'Github commit received' => 'Github commit empfangen', 'Github commit received' => 'Github commit empfangen',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Jeder hat Zugriff zu diesem Projekt', 'Everybody have access to this project.' => 'Jeder hat Zugriff zu diesem Projekt',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integration',
'Github webhooks' => 'Github Webhook', 'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Hilfe für Github Webhooks', 'Help on Github webhooks' => 'Hilfe für Github Webhooks',
'Create a comment from an external provider' => 'Kommentar eines externen Providers hinzufügen', 'Create a comment from an external provider' => 'Kommentar eines externen Providers hinzufügen',
'Github issue comment created' => 'Github Fehler Kommentar hinzugefügt', 'Github issue comment created' => 'Github Fehler Kommentar hinzugefügt',
'Configure' => 'Einstellungen',
'Project management' => 'Projektmanagement', 'Project management' => 'Projektmanagement',
'My projects' => 'Meine Projekte', 'My projects' => 'Meine Projekte',
'Columns' => 'Spalten', 'Columns' => 'Spalten',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Benutzerverteilung für "%s"', 'User repartition for "%s"' => 'Benutzerverteilung für "%s"',
'Clone this project' => 'Projekt kopieren', 'Clone this project' => 'Projekt kopieren',
'Column removed successfully.' => 'Spalte erfolgreich entfernt.', 'Column removed successfully.' => 'Spalte erfolgreich entfernt.',
'Edit Project' => 'Projekt bearbeiten',
'Github Issue' => 'Github Issue', 'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Nicht genügend Daten, um die Grafik zu zeigen.', 'Not enough data to show the graph.' => 'Nicht genügend Daten, um die Grafik zu zeigen.',
'Previous' => 'Vorherige', 'Previous' => 'Vorherige',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alle Swimlanes', 'All swimlanes' => 'Alle Swimlanes',
'All colors' => 'Alle Farben', 'All colors' => 'Alle Farben',
'All status' => 'Alle Status', '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', 'Moved to column %s' => 'In Spalte %s verschoben',
'Change description' => 'Beschreibung ändern', 'Change description' => 'Beschreibung ändern',
'User dashboard' => 'Benutzer Dashboard', 'User dashboard' => 'Benutzer Dashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Ningún usuario', 'No user' => 'Ningún usuario',
'Forbidden' => 'Acceso denegado', 'Forbidden' => 'Acceso denegado',
'Access 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', 'Edit user' => 'Editar un usuario',
'Logout' => 'Salir', 'Logout' => 'Salir',
'Bad username or password' => 'Usuario o contraseña incorecto', 'Bad username or password' => 'Usuario o contraseña incorecto',
'users' => 'usuarios',
'projects' => 'proyectos',
'Edit project' => 'Editar el proyecto', 'Edit project' => 'Editar el proyecto',
'Name' => 'Nombre', 'Name' => 'Nombre',
'Activated' => 'Activado',
'Projects' => 'Proyectos', 'Projects' => 'Proyectos',
'No project' => 'Ningún proyecto', 'No project' => 'Ningún proyecto',
'Project' => 'Proyecto', 'Project' => 'Proyecto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Acciones', 'Actions' => 'Acciones',
'Inactive' => 'Inactivo', 'Inactive' => 'Inactivo',
'Active' => 'Activo', 'Active' => 'Activo',
'Column %d' => 'Columna %d',
'Add this column' => 'Añadir esta columna', 'Add this column' => 'Añadir esta columna',
'%d tasks on the board' => '%d tareas en el tablero', '%d tasks on the board' => '%d tareas en el tablero',
'%d tasks in total' => '%d tareas en total', '%d tasks in total' => '%d tareas en total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nuevo proyecto', 'New project' => 'Nuevo proyecto',
'Do you really want to remove this project: "%s"?' => '¿De verdad que deseas eliminar este proyecto: « %s » ?', 'Do you really want to remove this project: "%s"?' => '¿De verdad que deseas eliminar este proyecto: « %s » ?',
'Remove project' => 'Suprimir el proyecto', 'Remove project' => 'Suprimir el proyecto',
'Boards' => 'Tableros',
'Edit the board for "%s"' => 'Modificar el tablero para « %s »', 'Edit the board for "%s"' => 'Modificar el tablero para « %s »',
'All projects' => 'Todos los proyectos', 'All projects' => 'Todos los proyectos',
'Change columns' => 'Cambiar las columnas', 'Change columns' => 'Cambiar las columnas',
'Add a new column' => 'Añadir una nueva columna', 'Add a new column' => 'Añadir una nueva columna',
'Title' => 'Titulo', 'Title' => 'Titulo',
'Add Column' => 'Nueva columna',
'Project "%s"' => 'Proyecto « %s »',
'Nobody assigned' => 'Nadie asignado', 'Nobody assigned' => 'Nadie asignado',
'Assigned to %s' => 'Asignada a %s', 'Assigned to %s' => 'Asignada a %s',
'Remove a column' => 'Suprimir esta columna', 'Remove a column' => 'Suprimir esta columna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Idioma', 'Language' => 'Idioma',
'Webhook token:' => 'Ficha de seguridad (token) para los disparadores Web (webhooks):', 'Webhook token:' => 'Ficha de seguridad (token) para los disparadores Web (webhooks):',
'API token:' => 'Ficha de seguridad (token) para API:', 'API token:' => 'Ficha de seguridad (token) para API:',
'More information' => 'Más informaciones',
'Database size:' => 'Tamaño de la base de datos:', 'Database size:' => 'Tamaño de la base de datos:',
'Download the database' => 'Descargar la base de datos', 'Download the database' => 'Descargar la base de datos',
'Optimize the database' => 'Optimizar la base de datos', 'Optimize the database' => 'Optimizar la base de datos',
'(VACUUM command)' => '(Comando VACUUM)', '(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(Archivo Sqlite comprimido en Gzip)', '(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', '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', 'Edit a task' => 'Editar una tarea',
'Column' => 'Columna', 'Column' => 'Columna',
'Color' => 'Color', 'Color' => 'Color',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'La contraseña es obligatoria', 'The password is required' => 'La contraseña es obligatoria',
'This value must be an integer' => 'Este valor debe ser un entero', '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 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', 'The user id is required' => 'El identificador del usuario es obligatorio',
'Passwords don\'t match' => 'Las contraseñas no coinciden', 'Passwords don\'t match' => 'Las contraseñas no coinciden',
'The confirmation is required' => 'La confirmación es obligatoria', '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 project is required' => 'El proyecto es obligatorio',
'The color is required' => 'El color es obligatorio',
'The id is required' => 'El identificador es obligatorio', 'The id is required' => 'El identificador es obligatorio',
'The project id is required' => 'El identificador del proyecto es obligatorio', 'The project id is required' => 'El identificador del proyecto es obligatorio',
'The project name is required' => 'El nombre 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', 'This project must be unique' => 'El nombre del proyecto debe ser único',
'The title is required' => 'El titulo es obligatorio', '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.', '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.', 'Settings saved successfully.' => 'Parámetros guardados correctamente.',
'Unable to save your settings.' => 'No se pueden guardar sus parámetros.', '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 created' => 'Fecha de creación',
'Date completed' => 'Fecha de terminación', 'Date completed' => 'Fecha de terminación',
'Id' => 'Identificador', 'Id' => 'Identificador',
'No task' => 'Ninguna tarea',
'Completed tasks' => 'Tareas completadas', 'Completed tasks' => 'Tareas completadas',
'List of projects' => 'Lista de los proyectos',
'Completed tasks for "%s"' => 'Tareas completadas por « %s »', 'Completed tasks for "%s"' => 'Tareas completadas por « %s »',
'%d closed tasks' => '%d tareas completadas', '%d closed tasks' => '%d tareas completadas',
'No task for this project' => 'Ninguna tarea para este proyecto', '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!', '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', 'Page not found' => 'Página no encontrada',
'Complexity' => 'Complejidad', 'Complexity' => 'Complejidad',
'limit' => 'límite',
'Task limit' => 'Número máximo de tareas', 'Task limit' => 'Número máximo de tareas',
'Task count' => 'Contador 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 project access list' => 'Editar los permisos del proyecto',
'Edit users access' => 'Editar los permisos de usuario',
'Allow this user' => 'Autorizar este 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.', 'Don\'t forget that administrators have access to everything.' => 'No olvide que los administradores tienen acceso a todo.',
'Revoke' => 'Revocar', 'Revoke' => 'Revocar',
'List of authorized users' => 'Lista de los usuarios autorizados', 'List of authorized users' => 'Lista de los usuarios autorizados',
'User' => 'Usuario', 'User' => 'Usuario',
'Nobody have access to this project.' => 'Nadie tiene acceso a este proyecto', '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', 'Comments' => 'Comentarios',
'Post comment' => 'Commentar',
'Write your text in Markdown' => 'Redacta el texto en Markdown', 'Write your text in Markdown' => 'Redacta el texto en Markdown',
'Leave a comment' => 'Dejar un comentario', 'Leave a comment' => 'Dejar un comentario',
'Comment is required' => 'El comentario es obligatorio', 'Comment is required' => 'El comentario es obligatorio',
'Leave a description' => 'Dejar una descripción', 'Leave a description' => 'Dejar una descripción',
'Comment added successfully.' => 'El comentario ha sido añadido correctamente.', 'Comment added successfully.' => 'El comentario ha sido añadido correctamente.',
'Unable to create your comment.' => 'No se puede crear este comentario.', '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', 'Edit this task' => 'Editar esta tarea',
'Due Date' => 'Fecha límite', 'Due Date' => 'Fecha límite',
'Invalid date' => 'Fecha no válida', 'Invalid date' => 'Fecha no válida',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Guardar esta acción', 'Save this action' => 'Guardar esta acción',
'Do you really want to remove this action: "%s"?' => '¿Realmente desea suprimir esta acción « %s » ?', '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', '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 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', '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', '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 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 modification' => 'Modificación de una tarea',
'Task creation' => 'Creació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', 'Closing a task' => 'Cerrar una tarea',
'Assign a color to a specific user' => 'Asignar un color a un usuario específico', 'Assign a color to a specific user' => 'Asignar un color a un usuario específico',
'Column title' => 'Título de la columna', 'Column title' => 'Título de la columna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicar a otro proyecto', 'Duplicate to another project' => 'Duplicar a otro proyecto',
'Duplicate' => 'Duplicar', 'Duplicate' => 'Duplicar',
'link' => 'vinculación', 'link' => 'vinculación',
'Update this comment' => 'Actualizar este comentario',
'Comment updated successfully.' => 'El comentario ha sido actualizado correctamente.', 'Comment updated successfully.' => 'El comentario ha sido actualizado correctamente.',
'Unable to update your comment.' => 'No se puede actualizar este comentario.', 'Unable to update your comment.' => 'No se puede actualizar este comentario.',
'Remove a comment' => 'Suprimir un comentario', 'Remove a comment' => 'Suprimir un comentario',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'No se puede suprimir este comentario.', 'Unable to remove this comment.' => 'No se puede suprimir este comentario.',
'Do you really want to remove this comment?' => '¿Desea 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.', '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 »', 'Current password for the user "%s"' => 'Contraseña actual para el usuario: « %s »',
'The current password is required' => 'La contraseña es obligatoria', 'The current password is required' => 'La contraseña es obligatoria',
'Wrong password' => 'contraseña incorrecta', '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', 'Unknown' => 'Desconocido',
'Last logins' => 'Últimos ingresos', 'Last logins' => 'Últimos ingresos',
'Login date' => 'Fecha de ingreso', 'Login date' => 'Fecha de ingreso',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Desvincular de mi Cuenta en Google', 'Unlink my Google Account' => 'Desvincular de mi Cuenta en Google',
'Login with my Google Account' => 'Ingresar con mi Cuenta en Google', 'Login with my Google Account' => 'Ingresar con mi Cuenta en Google',
'Project not found.' => 'Proyecto no hallado.', 'Project not found.' => 'Proyecto no hallado.',
'Task #%d' => 'Tarea número %d',
'Task removed successfully.' => 'Tarea suprimida correctamente.', 'Task removed successfully.' => 'Tarea suprimida correctamente.',
'Unable to remove this task.' => 'No pude suprimir esta tarea.', 'Unable to remove this task.' => 'No pude suprimir esta tarea.',
'Remove a task' => 'Borrar una tarea', 'Remove a task' => 'Borrar una tarea',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'No pude suprimir esta categoría.', '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 modification for the project "%s"' => 'Modificación de categoría pra el proyecto "%s"',
'Category Name' => 'Nombre de Categoría', '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', '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"?', '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', 'Filter by category' => 'Filtrar mendiante categoría',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Fecha de modificación', 'Modification date' => 'Fecha de modificación',
'Completion date' => 'Fecha de terminación', 'Completion date' => 'Fecha de terminación',
'Clone' => 'Clonar', 'Clone' => 'Clonar',
'Clone Project' => 'Clonar proyecto',
'Project cloned successfully.' => 'Proyecto clonado correctamente', 'Project cloned successfully.' => 'Proyecto clonado correctamente',
'Unable to clone this project.' => 'Impsible clonar proyecto', 'Unable to clone this project.' => 'Impsible clonar proyecto',
'Email notifications' => 'Notificaciones correo electrónico', 'Email notifications' => 'Notificaciones correo electrónico',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nuevo adjunto agregado "%s"', 'New attachment added "%s"' => 'Nuevo adjunto agregado "%s"',
'Comment updated' => 'Comentario actualizado', 'Comment updated' => 'Comentario actualizado',
'New comment posted by %s' => 'Nuevo comentario agregado por %s', '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 attachment' => 'Nuevo adjunto',
'New comment' => 'Nuevo comentario', 'New comment' => 'Nuevo comentario',
'New subtask' => 'Nueva subtarea', 'New subtask' => 'Nueva subtarea',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Tarea actualizada', 'Task updated' => 'Tarea actualizada',
'Task closed' => 'Tarea cerrada', 'Task closed' => 'Tarea cerrada',
'Task opened' => 'Tarea abierta', '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:', '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', 'view the task on Kanboard' => 'ver la tarea en Kanboard',
'Public access' => 'Acceso público', 'Public access' => 'Acceso público',
'Category management' => 'Gestión de Categorías',
'User management' => 'Gestión de Usuarios', 'User management' => 'Gestión de Usuarios',
'Active tasks' => 'Tareas activas', 'Active tasks' => 'Tareas activas',
'Disable public access' => 'Desactivar acceso público', 'Disable public access' => 'Desactivar acceso público',
'Enable public access' => 'Activar 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', '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 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"?', 'Do you really want to enable this project: "%s"?' => '¿Realmente deseas activar este proyecto: "%s"?',
'Project activation' => 'Activación de Proyecto', 'Project activation' => 'Activación de Proyecto',
'Move the task to another project' => 'Mover la tarea a otro 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', '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 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', '%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"', 'New password for the user "%s"' => 'Nueva contraseña para el usuario "%s"',
'Choose an event' => 'Escoga un evento', 'Choose an event' => 'Escoga un evento',
'Github commit received' => 'Envío a Github recibido', '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', 'Everybody have access to this project.' => 'Cualquier tiene acceso a este proyecto',
'Webhooks' => 'Disparadores Web (Webhooks)', 'Webhooks' => 'Disparadores Web (Webhooks)',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integración',
'Github webhooks' => 'Disparadores Web (Webhooks) de Github', 'Github webhooks' => 'Disparadores Web (Webhooks) de Github',
'Help on Github webhooks' => 'Ayuda con los Disparadores Web (Webhook) 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', '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', 'Github issue comment created' => 'Creado el comentario del problema en Github',
'Configure' => 'Configurar',
'Project management' => 'Administración del proyecto', 'Project management' => 'Administración del proyecto',
'My projects' => 'Mis proyectos', 'My projects' => 'Mis proyectos',
'Columns' => 'Columnas', 'Columns' => 'Columnas',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Repartición para "%s"', 'User repartition for "%s"' => 'Repartición para "%s"',
'Clone this project' => 'Clonar este proyecto', 'Clone this project' => 'Clonar este proyecto',
'Column removed successfully.' => 'Columna removida correctamente', 'Column removed successfully.' => 'Columna removida correctamente',
'Edit Project' => 'Editar Proyecto',
'Github Issue' => 'Problema Github', 'Github Issue' => 'Problema Github',
'Not enough data to show the graph.' => 'No hay suficiente información para mostrar el gráfico', 'Not enough data to show the graph.' => 'No hay suficiente información para mostrar el gráfico',
'Previous' => 'Anterior', 'Previous' => 'Anterior',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Todos los carriles', 'All swimlanes' => 'Todos los carriles',
'All colors' => 'Todos los colores', 'All colors' => 'Todos los colores',
'All status' => 'Todos los estados', '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', 'Moved to column %s' => 'Movido a columna %s',
'Change description' => 'Cambiar descripción', 'Change description' => 'Cambiar descripción',
'User dashboard' => 'Tablero de usuario', 'User dashboard' => 'Tablero de usuario',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
'Unable to update this user.' => 'Imposible actualizar este usuario.', '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.', '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Ei käyttäjää', 'No user' => 'Ei käyttäjää',
'Forbidden' => 'Estetty', 'Forbidden' => 'Estetty',
'Access Forbidden' => 'Pääsy 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ää', 'Edit user' => 'Muokkaa käyttäjää',
'Logout' => 'Kirjaudu ulos', 'Logout' => 'Kirjaudu ulos',
'Bad username or password' => 'Väärä käyttäjätunnus tai salasana', 'Bad username or password' => 'Väärä käyttäjätunnus tai salasana',
'users' => 'käyttäjät',
'projects' => 'projektit',
'Edit project' => 'Muokkaa projektia', 'Edit project' => 'Muokkaa projektia',
'Name' => 'Nimi', 'Name' => 'Nimi',
'Activated' => 'Aktivoitu',
'Projects' => 'Projektit', 'Projects' => 'Projektit',
'No project' => 'Ei projektia', 'No project' => 'Ei projektia',
'Project' => 'Projekti', 'Project' => 'Projekti',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Toiminnot', 'Actions' => 'Toiminnot',
'Inactive' => 'Ei aktiivinen', 'Inactive' => 'Ei aktiivinen',
'Active' => 'Aktiivinen', 'Active' => 'Aktiivinen',
'Column %d' => 'Sarake %d',
'Add this column' => 'Lisää tämä sarake', 'Add this column' => 'Lisää tämä sarake',
'%d tasks on the board' => '%d tehtävää taululla', '%d tasks on the board' => '%d tehtävää taululla',
'%d tasks in total' => '%d tehtävää yhteensä', '%d tasks in total' => '%d tehtävää yhteensä',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Uusi projekti', 'New project' => 'Uusi projekti',
'Do you really want to remove this project: "%s"?' => 'Haluatko varmasti poistaa projektin: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Haluatko varmasti poistaa projektin: "%s"?',
'Remove project' => 'Poista projekti', 'Remove project' => 'Poista projekti',
'Boards' => 'Taulut',
'Edit the board for "%s"' => 'Muokkaa taulua projektille "%s"', 'Edit the board for "%s"' => 'Muokkaa taulua projektille "%s"',
'All projects' => 'Kaikki projektit', 'All projects' => 'Kaikki projektit',
'Change columns' => 'Muokkaa sarakkeita', 'Change columns' => 'Muokkaa sarakkeita',
'Add a new column' => 'Lisää uusi sarake', 'Add a new column' => 'Lisää uusi sarake',
'Title' => 'Nimi', 'Title' => 'Nimi',
'Add Column' => 'Lisää sarake',
'Project "%s"' => 'Projekti "%s"',
'Nobody assigned' => 'Ei suorittajaa', 'Nobody assigned' => 'Ei suorittajaa',
'Assigned to %s' => 'Tekijä: %s', 'Assigned to %s' => 'Tekijä: %s',
'Remove a column' => 'Poista sarake', 'Remove a column' => 'Poista sarake',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Kieli', 'Language' => 'Kieli',
'Webhook token:' => 'Webhooks avain:', 'Webhook token:' => 'Webhooks avain:',
// 'API token:' => '', // 'API token:' => '',
'More information' => 'Lisätietoja',
'Database size:' => 'Tietokannan koko:', 'Database size:' => 'Tietokannan koko:',
'Download the database' => 'Lataa tietokanta', 'Download the database' => 'Lataa tietokanta',
'Optimize the database' => 'Optimoi tietokanta', 'Optimize the database' => 'Optimoi tietokanta',
'(VACUUM command)' => '(VACUUM-komento)', '(VACUUM command)' => '(VACUUM-komento)',
'(Gzip compressed Sqlite file)' => '(Gzip-pakattu Sqlite-tiedosto)', '(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ä', '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ää', 'Edit a task' => 'Muokkaa tehtävää',
'Column' => 'Sarake', 'Column' => 'Sarake',
'Color' => 'Väri', 'Color' => 'Väri',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Salasana vaaditaan', 'The password is required' => 'Salasana vaaditaan',
'This value must be an integer' => 'Tämän arvon täytyy olla numero', '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 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', 'The user id is required' => 'Käyttäjän id on pakollinen',
// 'Passwords don\'t match' => '', // 'Passwords don\'t match' => '',
'The confirmation is required' => 'Varmistus vaaditaan', 'The confirmation is required' => 'Varmistus vaaditaan',
'The column is required' => 'Sarake on pakollinen',
'The project is required' => 'Projekti on pakollinen', 'The project is required' => 'Projekti on pakollinen',
'The color is required' => 'Väri on pakollinen',
'The id is required' => 'ID vaaditaan', 'The id is required' => 'ID vaaditaan',
'The project id is required' => 'Projektin ID on pakollinen', 'The project id is required' => 'Projektin ID on pakollinen',
'The project name is required' => 'Projektin nimi on pakollinen', 'The project name is required' => 'Projektin nimi on pakollinen',
'This project must be unique' => 'Projektin nimi täytyy olla uniikki', 'This project must be unique' => 'Projektin nimi täytyy olla uniikki',
'The title is required' => 'Otsikko vaaditaan', '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.', '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.', 'Settings saved successfully.' => 'Asetukset tallennettu onnistuneesti.',
'Unable to save your settings.' => 'Asetusten tallentaminen epäonnistui.', 'Unable to save your settings.' => 'Asetusten tallentaminen epäonnistui.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Luomispäivä', 'Date created' => 'Luomispäivä',
'Date completed' => 'Valmistumispäivä', 'Date completed' => 'Valmistumispäivä',
'Id' => 'Id', 'Id' => 'Id',
'No task' => 'Ei tehtävää',
'Completed tasks' => 'Valmiit tehtävät', 'Completed tasks' => 'Valmiit tehtävät',
'List of projects' => 'Projektit',
'Completed tasks for "%s"' => 'Suoritetut tehtävät projektille %s', 'Completed tasks for "%s"' => 'Suoritetut tehtävät projektille %s',
'%d closed tasks' => '%d suljettua tehtävää', '%d closed tasks' => '%d suljettua tehtävää',
'No task for this project' => 'Ei tehtävää tälle projektille', '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', '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', 'Page not found' => 'Sivua ei löydy',
'Complexity' => 'Monimutkaisuus', 'Complexity' => 'Monimutkaisuus',
'limit' => 'raja',
'Task limit' => 'Tehtävien maksimimäärä', 'Task limit' => 'Tehtävien maksimimäärä',
'Task count' => 'Tehtävien mää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 project access list' => 'Muuta projektin käyttäjiä',
'Edit users access' => 'Muuta käyttäjien pääsyä',
'Allow this user' => 'Salli tämä projekti', '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.', 'Don\'t forget that administrators have access to everything.' => 'Muista että ylläpitäjät pääsevät kaikkialle.',
'Revoke' => 'Poista', 'Revoke' => 'Poista',
'List of authorized users' => 'Sallittujen käyttäjien lista', 'List of authorized users' => 'Sallittujen käyttäjien lista',
'User' => 'Käyttäjät', 'User' => 'Käyttäjät',
// 'Nobody have access to this project.' => '', // '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', 'Comments' => 'Kommentit',
'Post comment' => 'Lisää kommentti',
'Write your text in Markdown' => 'Kirjoita kommenttisi Markdownilla', 'Write your text in Markdown' => 'Kirjoita kommenttisi Markdownilla',
'Leave a comment' => 'Lisää kommentti', 'Leave a comment' => 'Lisää kommentti',
'Comment is required' => 'Kommentti vaaditaan', 'Comment is required' => 'Kommentti vaaditaan',
'Leave a description' => 'Lisää kuvaus', 'Leave a description' => 'Lisää kuvaus',
'Comment added successfully.' => 'Kommentti lisättiin onnistuneesti.', 'Comment added successfully.' => 'Kommentti lisättiin onnistuneesti.',
'Unable to create your comment.' => 'Kommentin lisäys epäonnistui.', 'Unable to create your comment.' => 'Kommentin lisäys epäonnistui.',
'The description is required' => 'Kuvaus vaaditaan',
'Edit this task' => 'Muokkaa tehtävää', 'Edit this task' => 'Muokkaa tehtävää',
'Due Date' => 'Deadline', 'Due Date' => 'Deadline',
'Invalid date' => 'Virheellinen päiväys', 'Invalid date' => 'Virheellinen päiväys',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Tallenna toiminto', 'Save this action' => 'Tallenna toiminto',
'Do you really want to remove this action: "%s"?' => 'Oletko varma että haluat poistaa toiminnon "%s"?', 'Do you really want to remove this action: "%s"?' => 'Oletko varma että haluat poistaa toiminnon "%s"?',
'Remove an automatic action' => 'Poista automaattintn toiminto', '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 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', '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', '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 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 modification' => 'Tehtävän muokkaus',
'Task creation' => 'Tehtävän luominen', 'Task creation' => 'Tehtävän luominen',
'Open a closed task' => 'Avaa jo suljettu tehtävä',
'Closing a task' => 'Tehtävää suljetaan', 'Closing a task' => 'Tehtävää suljetaan',
'Assign a color to a specific user' => 'Valitse väri käyttäjälle', 'Assign a color to a specific user' => 'Valitse väri käyttäjälle',
'Column title' => 'Sarakkeen nimi', 'Column title' => 'Sarakkeen nimi',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopioi toiseen projektiin', 'Duplicate to another project' => 'Kopioi toiseen projektiin',
'Duplicate' => 'Monista', 'Duplicate' => 'Monista',
'link' => 'linkki', 'link' => 'linkki',
'Update this comment' => 'Muuta projektia',
'Comment updated successfully.' => 'Kommentti päivitettiin onnistuneesti.', 'Comment updated successfully.' => 'Kommentti päivitettiin onnistuneesti.',
'Unable to update your comment.' => 'Kommentin päivitys epäonnistui.', 'Unable to update your comment.' => 'Kommentin päivitys epäonnistui.',
'Remove a comment' => 'Poista kommentti', 'Remove a comment' => 'Poista kommentti',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Kommentin poistaminen epäonnistui.', 'Unable to remove this comment.' => 'Kommentin poistaminen epäonnistui.',
'Do you really want to remove this comment?' => 'Haluatko varmasti poistaa tämän kommentin?', '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.', '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', 'Current password for the user "%s"' => 'Käyttäjän "%s" salasana',
'The current password is required' => 'Salasana vaaditaan', 'The current password is required' => 'Salasana vaaditaan',
'Wrong password' => 'Väärä salasana', 'Wrong password' => 'Väärä salasana',
'Reset all tokens' => 'Resetoi kaikki tokenit',
'All tokens have been regenerated.' => 'Kaikki tokenit luotiin uudelleen.',
'Unknown' => 'Tuntematon', 'Unknown' => 'Tuntematon',
'Last logins' => 'Viimeisimmät kirjautumiset', 'Last logins' => 'Viimeisimmät kirjautumiset',
'Login date' => 'Kirjautumispäivä', 'Login date' => 'Kirjautumispäivä',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Poista Google-tilin linkitys', 'Unlink my Google Account' => 'Poista Google-tilin linkitys',
'Login with my Google Account' => 'Kirjaudu Google tunnuksella', 'Login with my Google Account' => 'Kirjaudu Google tunnuksella',
'Project not found.' => 'Projektia ei löytynyt.', 'Project not found.' => 'Projektia ei löytynyt.',
'Task #%d' => 'Tehtävä #%d',
'Task removed successfully.' => 'Tehtävä poistettiin onnistuneesti.', 'Task removed successfully.' => 'Tehtävä poistettiin onnistuneesti.',
'Unable to remove this task.' => 'Tehtävän poistaminen epäonnistui.', 'Unable to remove this task.' => 'Tehtävän poistaminen epäonnistui.',
'Remove a task' => 'Poista tehtävä', 'Remove a task' => 'Poista tehtävä',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Kategorian poisto epäonnistui.', 'Unable to remove this category.' => 'Kategorian poisto epäonnistui.',
'Category modification for the project "%s"' => 'Kategorian muutos projektissa "%s"', 'Category modification for the project "%s"' => 'Kategorian muutos projektissa "%s"',
'Category Name' => 'Kategorian nimi', 'Category Name' => 'Kategorian nimi',
'Categories for the project "%s"' => 'Kategoriat projektille "%s"',
'Add a new category' => 'Lisää uusi kategoria', 'Add a new category' => 'Lisää uusi kategoria',
'Do you really want to remove this category: "%s"?' => 'Haluatko varmasti poistaa kategorian: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Haluatko varmasti poistaa kategorian: "%s"?',
'Filter by category' => 'Rajaa kategorian mukaan', 'Filter by category' => 'Rajaa kategorian mukaan',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Muokkauspäivä', 'Modification date' => 'Muokkauspäivä',
'Completion date' => 'Valmistumispäivä', 'Completion date' => 'Valmistumispäivä',
'Clone' => 'Kahdenna', 'Clone' => 'Kahdenna',
'Clone Project' => 'Kahdenna projekti',
'Project cloned successfully.' => 'Projekti kahdennettu onnistuneesti', 'Project cloned successfully.' => 'Projekti kahdennettu onnistuneesti',
'Unable to clone this project.' => 'Projektin kahdennus epäonnistui', 'Unable to clone this project.' => 'Projektin kahdennus epäonnistui',
'Email notifications' => 'Sähköposti-ilmoitukset', 'Email notifications' => 'Sähköposti-ilmoitukset',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Uusi liite lisätty "%s"', 'New attachment added "%s"' => 'Uusi liite lisätty "%s"',
'Comment updated' => 'Kommentti päivitetty', 'Comment updated' => 'Kommentti päivitetty',
'New comment posted by %s' => '%s lisäsi uuden kommentin', 'New comment posted by %s' => '%s lisäsi uuden kommentin',
// 'List of due tasks for the project "%s"' => '',
// 'New attachment' => '', // 'New attachment' => '',
// 'New comment' => '', // 'New comment' => '',
// 'New subtask' => '', // 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '', // 'Task updated' => '',
// 'Task closed' => '', // 'Task closed' => '',
// 'Task opened' => '', // 'Task opened' => '',
// '[%s][Due tasks]' => '',
// '[Kanboard] Notification' => '',
'I want to receive notifications only for those projects:' => 'Haluan vastaanottaa ilmoituksia ainoastaan näistä projekteista:', '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', 'view the task on Kanboard' => 'katso tehtävää Kanboardissa',
'Public access' => 'Julkinen käyttöoikeus', 'Public access' => 'Julkinen käyttöoikeus',
'Category management' => 'Kategorioiden hallinta',
'User management' => 'Käyttäjähallinta', 'User management' => 'Käyttäjähallinta',
'Active tasks' => 'Aktiiviset tehtävät', 'Active tasks' => 'Aktiiviset tehtävät',
'Disable public access' => 'Poista käytöstä julkinen käyttöoikeus', 'Disable public access' => 'Poista käytöstä julkinen käyttöoikeus',
'Enable public access' => 'Ota käyttöön ', '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ä', '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 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"', 'Do you really want to enable this project: "%s"?' => 'Haluatko varmasti aktivoida projektinen "%s"',
'Project activation' => 'Projektin aktivointi', 'Project activation' => 'Projektin aktivointi',
'Move the task to another project' => 'Siirrä tehtävä toiseen projektiin', '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', '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 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', '%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"', 'New password for the user "%s"' => 'Uusi salasana käyttäjälle "%s"',
'Choose an event' => 'Valitse toiminta', 'Choose an event' => 'Valitse toiminta',
'Github commit received' => 'Github-kommitti vastaanotettu', 'Github commit received' => 'Github-kommitti vastaanotettu',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Kaikilla on käyttöoikeus projektiin.', 'Everybody have access to this project.' => 'Kaikilla on käyttöoikeus projektiin.',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
'Integration' => 'Integraatio',
// 'Github webhooks' => '', // 'Github webhooks' => '',
// 'Help on Github webhooks' => '', // 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '', // 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '', // 'Github issue comment created' => '',
'Configure' => 'Konfiguroi',
'Project management' => 'Projektin hallinta', 'Project management' => 'Projektin hallinta',
'My projects' => 'Minun projektini', 'My projects' => 'Minun projektini',
'Columns' => 'Sarakkeet', 'Columns' => 'Sarakkeet',
@@ -576,7 +529,6 @@ return array(
// 'User repartition for "%s"' => '', // 'User repartition for "%s"' => '',
'Clone this project' => 'Kahdenna projekti', 'Clone this project' => 'Kahdenna projekti',
'Column removed successfully.' => 'Sarake poistettu onnstuneesti.', 'Column removed successfully.' => 'Sarake poistettu onnstuneesti.',
'Edit Project' => 'Muokkaa projektia',
'Github Issue' => 'Github-issue', 'Github Issue' => 'Github-issue',
'Not enough data to show the graph.' => 'Ei riittävästi dataa graafin näyttämiseksi.', 'Not enough data to show the graph.' => 'Ei riittävästi dataa graafin näyttämiseksi.',
'Previous' => 'Edellinen', 'Previous' => 'Edellinen',
@@ -657,7 +609,6 @@ return array(
// 'All swimlanes' => '', // 'All swimlanes' => '',
// 'All colors' => '', // 'All colors' => '',
// 'All status' => '', // 'All status' => '',
// 'Add a comment logging moving the task between columns' => '',
// 'Moved to column %s' => '', // 'Moved to column %s' => '',
// 'Change description' => '', // 'Change description' => '',
// 'User dashboard' => '', // 'User dashboard' => '',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Aucun utilisateur', 'No user' => 'Aucun utilisateur',
'Forbidden' => 'Accès interdit', 'Forbidden' => 'Accès interdit',
'Access 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', 'Edit user' => 'Modifier un utilisateur',
'Logout' => 'Déconnexion', 'Logout' => 'Déconnexion',
'Bad username or password' => 'Identifiant ou mot de passe incorrect', 'Bad username or password' => 'Identifiant ou mot de passe incorrect',
'users' => 'utilisateurs',
'projects' => 'projets',
'Edit project' => 'Modifier le projet', 'Edit project' => 'Modifier le projet',
'Name' => 'Nom', 'Name' => 'Nom',
'Activated' => 'Actif',
'Projects' => 'Projets', 'Projects' => 'Projets',
'No project' => 'Aucun projet', 'No project' => 'Aucun projet',
'Project' => 'Projet', 'Project' => 'Projet',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Actions', 'Actions' => 'Actions',
'Inactive' => 'Inactif', 'Inactive' => 'Inactif',
'Active' => 'Actif', 'Active' => 'Actif',
'Column %d' => 'Colonne %d',
'Add this column' => 'Ajouter cette colonne', 'Add this column' => 'Ajouter cette colonne',
'%d tasks on the board' => '%d tâches sur le tableau', '%d tasks on the board' => '%d tâches sur le tableau',
'%d tasks in total' => '%d tâches au total', '%d tasks in total' => '%d tâches au total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nouveau projet', 'New project' => 'Nouveau projet',
'Do you really want to remove this project: "%s"?' => 'Voulez-vous vraiment supprimer ce projet : « %s » ?', 'Do you really want to remove this project: "%s"?' => 'Voulez-vous vraiment supprimer ce projet : « %s » ?',
'Remove project' => 'Supprimer le projet', 'Remove project' => 'Supprimer le projet',
'Boards' => 'Tableaux',
'Edit the board for "%s"' => 'Modifier le tableau pour « %s »', 'Edit the board for "%s"' => 'Modifier le tableau pour « %s »',
'All projects' => 'Tous les projets', 'All projects' => 'Tous les projets',
'Change columns' => 'Changer les colonnes', 'Change columns' => 'Changer les colonnes',
'Add a new column' => 'Ajouter une nouvelle colonne', 'Add a new column' => 'Ajouter une nouvelle colonne',
'Title' => 'Titre', 'Title' => 'Titre',
'Add Column' => 'Nouvelle colonne',
'Project "%s"' => 'Projet « %s »',
'Nobody assigned' => 'Personne assigné', 'Nobody assigned' => 'Personne assigné',
'Assigned to %s' => 'Assigné à %s', 'Assigned to %s' => 'Assigné à %s',
'Remove a column' => 'Supprimer une colonne', 'Remove a column' => 'Supprimer une colonne',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Langue', 'Language' => 'Langue',
'Webhook token:' => 'Jeton de securité pour les webhooks :', 'Webhook token:' => 'Jeton de securité pour les webhooks :',
'API token:' => 'Jeton de securité pour l\'API :', 'API token:' => 'Jeton de securité pour l\'API :',
'More information' => 'Plus d\'informations',
'Database size:' => 'Taille de la base de données :', 'Database size:' => 'Taille de la base de données :',
'Download the database' => 'Télécharger 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', 'Optimize the database' => 'Optimiser la base de données',
'(VACUUM command)' => '(Commande VACUUM)', '(VACUUM command)' => '(Commande VACUUM)',
'(Gzip compressed Sqlite file)' => '(Fichier Sqlite compressé en Gzip)', '(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', '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', 'Edit a task' => 'Modifier une tâche',
'Column' => 'Colonne', 'Column' => 'Colonne',
'Color' => 'Couleur', 'Color' => 'Couleur',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Le mot de passe est obligatoire', 'The password is required' => 'Le mot de passe est obligatoire',
'This value must be an integer' => 'Cette valeur doit être un entier', '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 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', 'The user id is required' => 'L\'id de l\'utilisateur est obligatoire',
'Passwords don\'t match' => 'Les mots de passe ne correspondent pas', 'Passwords don\'t match' => 'Les mots de passe ne correspondent pas',
'The confirmation is required' => 'Le confirmation est requise', '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 project is required' => 'Le projet est obligatoire',
'The color is required' => 'La couleur est obligatoire',
'The id is required' => 'L\'identifiant est obligatoire', 'The id is required' => 'L\'identifiant est obligatoire',
'The project id is required' => 'L\'identifiant du projet est obligatoire', 'The project id is required' => 'L\'identifiant du projet est obligatoire',
'The project name is required' => 'Le nom 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', 'This project must be unique' => 'Le nom du projet doit être unique',
'The title is required' => 'Le titre est obligatoire', '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.', '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.', 'Settings saved successfully.' => 'Paramètres sauvegardés avec succès.',
'Unable to save your settings.' => 'Impossible de sauvegarder vos réglages.', 'Unable to save your settings.' => 'Impossible de sauvegarder vos réglages.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Date de création', 'Date created' => 'Date de création',
'Date completed' => 'Date de clôture', 'Date completed' => 'Date de clôture',
'Id' => 'Identifiant', 'Id' => 'Identifiant',
'No task' => 'Aucune tâche',
'Completed tasks' => 'Tâches terminées', 'Completed tasks' => 'Tâches terminées',
'List of projects' => 'Liste des projets',
'Completed tasks for "%s"' => 'Tâches terminées pour « %s »', 'Completed tasks for "%s"' => 'Tâches terminées pour « %s »',
'%d closed tasks' => '%d tâches terminées', '%d closed tasks' => '%d tâches terminées',
'No task for this project' => 'Aucune tâche pour ce projet', '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 !', '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', 'Page not found' => 'Page introuvable',
'Complexity' => 'Complexité', 'Complexity' => 'Complexité',
'limit' => 'limite',
'Task limit' => 'Tâches Max.', 'Task limit' => 'Tâches Max.',
'Task count' => 'Nombre de tâches', '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 project access list' => 'Modifier l\'accès au projet',
'Edit users access' => 'Modifier les utilisateurs autorisés',
'Allow this user' => 'Autoriser cet utilisateur', '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.', 'Don\'t forget that administrators have access to everything.' => 'N\'oubliez pas que les administrateurs ont accès à tout.',
'Revoke' => 'Révoquer', 'Revoke' => 'Révoquer',
'List of authorized users' => 'Liste des utilisateurs autorisés', 'List of authorized users' => 'Liste des utilisateurs autorisés',
'User' => 'Utilisateur', 'User' => 'Utilisateur',
'Nobody have access to this project.' => 'Personne n\'est autorisé à accéder au projet.', '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', 'Comments' => 'Commentaires',
'Post comment' => 'Commenter',
'Write your text in Markdown' => 'Écrivez votre texte en Markdown', 'Write your text in Markdown' => 'Écrivez votre texte en Markdown',
'Leave a comment' => 'Laissez un commentaire', 'Leave a comment' => 'Laissez un commentaire',
'Comment is required' => 'Le commentaire est obligatoire', 'Comment is required' => 'Le commentaire est obligatoire',
'Leave a description' => 'Laissez une description', 'Leave a description' => 'Laissez une description',
'Comment added successfully.' => 'Commentaire ajouté avec succès.', 'Comment added successfully.' => 'Commentaire ajouté avec succès.',
'Unable to create your comment.' => 'Impossible de sauvegarder votre commentaire.', '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', 'Edit this task' => 'Modifier cette tâche',
'Due Date' => 'Date d\'échéance', 'Due Date' => 'Date d\'échéance',
'Invalid date' => 'Date invalide', 'Invalid date' => 'Date invalide',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Sauvegarder cette action', 'Save this action' => 'Sauvegarder cette action',
'Do you really want to remove this action: "%s"?' => 'Voulez-vous vraiment supprimer cette action « %s » ?', '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', '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 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', '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', '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 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 modification' => 'Modification d\'une tâche',
'Task creation' => 'Création 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', 'Closing a task' => 'Fermeture d\'une tâche',
'Assign a color to a specific user' => 'Assigner une couleur à un utilisateur', 'Assign a color to a specific user' => 'Assigner une couleur à un utilisateur',
'Column title' => 'Titre de la colonne', 'Column title' => 'Titre de la colonne',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Dupliquer dans un autre projet', 'Duplicate to another project' => 'Dupliquer dans un autre projet',
'Duplicate' => 'Dupliquer', 'Duplicate' => 'Dupliquer',
'link' => 'lien', 'link' => 'lien',
'Update this comment' => 'Mettre à jour ce commentaire',
'Comment updated successfully.' => 'Commentaire mis à jour avec succès.', 'Comment updated successfully.' => 'Commentaire mis à jour avec succès.',
'Unable to update your comment.' => 'Impossible de supprimer votre commentaire.', 'Unable to update your comment.' => 'Impossible de supprimer votre commentaire.',
'Remove a comment' => 'Supprimer un commentaire', 'Remove a comment' => 'Supprimer un commentaire',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Impossible de supprimer ce commentaire.', 'Unable to remove this comment.' => 'Impossible de supprimer ce commentaire.',
'Do you really want to remove this comment?' => 'Voulez-vous vraiment 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.', '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 »', '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', 'The current password is required' => 'Le mot de passe actuel est obligatoire',
'Wrong password' => 'Mauvais mot de passe', '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', 'Unknown' => 'Inconnu',
'Last logins' => 'Dernières connexions', 'Last logins' => 'Dernières connexions',
'Login date' => 'Date de connexion', 'Login date' => 'Date de connexion',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ne plus utiliser mon compte Google', 'Unlink my Google Account' => 'Ne plus utiliser mon compte Google',
'Login with my Google Account' => 'Se connecter avec mon compte Google', 'Login with my Google Account' => 'Se connecter avec mon compte Google',
'Project not found.' => 'Projet introuvable.', 'Project not found.' => 'Projet introuvable.',
'Task #%d' => 'Tâche n°%d',
'Task removed successfully.' => 'Tâche supprimée avec succès.', 'Task removed successfully.' => 'Tâche supprimée avec succès.',
'Unable to remove this task.' => 'Impossible de supprimer cette tâche.', 'Unable to remove this task.' => 'Impossible de supprimer cette tâche.',
'Remove a task' => 'Supprimer une 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.', '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 modification for the project "%s"' => 'Modification d\'une catégorie pour le projet « %s »',
'Category Name' => 'Nom de la catégorie', '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', '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 » ?', 'Do you really want to remove this category: "%s"?' => 'Voulez-vous vraiment supprimer cette catégorie « %s » ?',
'Filter by category' => 'Filtrer par catégorie', 'Filter by category' => 'Filtrer par catégorie',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Date de modification', 'Modification date' => 'Date de modification',
'Completion date' => 'Date de complétion', 'Completion date' => 'Date de complétion',
'Clone' => 'Clone', 'Clone' => 'Clone',
'Clone Project' => 'Cloner le projet',
'Project cloned successfully.' => 'Projet cloné avec succès.', 'Project cloned successfully.' => 'Projet cloné avec succès.',
'Unable to clone this project.' => 'Impossible de cloner ce projet.', 'Unable to clone this project.' => 'Impossible de cloner ce projet.',
'Email notifications' => 'Notifications par email', 'Email notifications' => 'Notifications par email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nouvelle pièce-jointe ajoutée « %s »', 'New attachment added "%s"' => 'Nouvelle pièce-jointe ajoutée « %s »',
'Comment updated' => 'Commentaire ajouté', 'Comment updated' => 'Commentaire ajouté',
'New comment posted by %s' => 'Nouveau commentaire ajouté par « %s »', '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 attachment' => 'Nouveau document',
'New comment' => 'Nouveau commentaire', 'New comment' => 'Nouveau commentaire',
'Comment updated' => 'Commentaire mis à jour', 'Comment updated' => 'Commentaire mis à jour',
@@ -417,21 +381,15 @@ return array(
'Task updated' => 'Tâche mise à jour', 'Task updated' => 'Tâche mise à jour',
'Task closed' => 'Tâche fermée', 'Task closed' => 'Tâche fermée',
'Task opened' => 'Tâche ouverte', '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 :', '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', 'view the task on Kanboard' => 'voir la tâche sur Kanboard',
'Public access' => 'Accès public', 'Public access' => 'Accès public',
'Category management' => 'Gestion des catégories',
'User management' => 'Gestion des utilisateurs', 'User management' => 'Gestion des utilisateurs',
'Active tasks' => 'Tâches actives', 'Active tasks' => 'Tâches actives',
'Disable public access' => 'Désactiver l\'accès public', 'Disable public access' => 'Désactiver l\'accès public',
'Enable public access' => 'Activer 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é', '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 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 » ?', 'Do you really want to enable this project: "%s"?' => 'Voulez-vous vraiment activer ce projet : « %s » ?',
'Project activation' => 'Activation du projet', 'Project activation' => 'Activation du projet',
'Move the task to another project' => 'Déplacer la tâche vers un autre 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', '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 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', '%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 »', 'New password for the user "%s"' => 'Nouveau mot de passe pour l\'utilisateur « %s »',
'Choose an event' => 'Choisir un événement', '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 opened' => 'Ouverture d\'un ticket sur Github',
'Github issue closed' => 'Fermeture d\'un ticket sur Github', 'Github issue closed' => 'Fermeture d\'un ticket sur Github',
'Github issue reopened' => 'Réouverture 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.', 'Everybody have access to this project.' => 'Tout le monde a acccès à ce projet.',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Intégration',
'Github webhooks' => 'Webhook Github', 'Github webhooks' => 'Webhook Github',
'Help on Github webhooks' => 'Aide sur les webhooks 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', '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', 'Github issue comment created' => 'Commentaire créé sur un ticket Github',
'Configure' => 'Configurer',
'Project management' => 'Gestion des projets', 'Project management' => 'Gestion des projets',
'My projects' => 'Mes projets', 'My projects' => 'Mes projets',
'Columns' => 'Colonnes', 'Columns' => 'Colonnes',
@@ -578,7 +531,6 @@ return array(
'User repartition for "%s"' => 'Répartition des utilisateurs pour « %s »', 'User repartition for "%s"' => 'Répartition des utilisateurs pour « %s »',
'Clone this project' => 'Cloner ce projet', 'Clone this project' => 'Cloner ce projet',
'Column removed successfully.' => 'Colonne supprimée avec succès.', 'Column removed successfully.' => 'Colonne supprimée avec succès.',
'Edit Project' => 'Modifier le projet',
'Github Issue' => 'Ticket Github', 'Github Issue' => 'Ticket Github',
'Not enough data to show the graph.' => 'Pas assez de données pour afficher le graphique.', 'Not enough data to show the graph.' => 'Pas assez de données pour afficher le graphique.',
'Previous' => 'Précédent', '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.', '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 »', '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)', '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 opened' => 'Ouverture d\'un ticket sur Gitlab',
'Gitlab issue closed' => 'Fermeture d\'un ticket sur Gitlab', 'Gitlab issue closed' => 'Fermeture d\'un ticket sur Gitlab',
'Gitlab webhooks' => 'Webhook Gitlab', 'Gitlab webhooks' => 'Webhook Gitlab',
@@ -659,7 +611,6 @@ return array(
'All swimlanes' => 'Toutes les swimlanes', 'All swimlanes' => 'Toutes les swimlanes',
'All colors' => 'Toutes les couleurs', 'All colors' => 'Toutes les couleurs',
'All status' => 'Tous les états', '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', 'Moved to column %s' => 'Tâche déplacée à la colonne %s',
'Change description' => 'Changer la description', 'Change description' => 'Changer la description',
'User dashboard' => 'Tableau de bord de l\'utilisateur', 'User dashboard' => 'Tableau de bord de l\'utilisateur',
@@ -680,7 +631,7 @@ return array(
'Disable login form' => 'Désactiver le formulaire d\'authentification', 'Disable login form' => 'Désactiver le formulaire d\'authentification',
'Show/hide calendar' => 'Afficher/cacher le calendrier', 'Show/hide calendar' => 'Afficher/cacher le calendrier',
'User calendar' => 'Calendrier de l\'utilisateur', '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', 'Bitbucket webhooks' => 'Webhook Bitbucket',
'Help on Bitbucket webhooks' => 'Aide sur les webhooks Bitbucket', 'Help on Bitbucket webhooks' => 'Aide sur les webhooks Bitbucket',
'Start' => 'Début', '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 »', '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', 'Calendar settings' => 'Paramètres du calendrier',
'Project calendar view' => 'Vue en mode projet 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 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 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', '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', 'Two factor authentication enabled' => 'Authentification à deux facteurs activée',
'Unable to update this user.' => 'Impossible de mettre à jour cet utilisateur.', '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.', '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',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Nincs felhasználó', 'No user' => 'Nincs felhasználó',
'Forbidden' => 'tiltott', 'Forbidden' => 'tiltott',
'Access Forbidden' => 'Hozzáférés megtagadva', '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', 'Edit user' => 'Felhasználó módosítása',
'Logout' => 'Kilépés', 'Logout' => 'Kilépés',
'Bad username or password' => 'Rossz felhasználónév vagy jelszó', 'Bad username or password' => 'Rossz felhasználónév vagy jelszó',
'users' => 'felhasználók',
'projects' => 'projektek',
'Edit project' => 'Projekt szerkesztése', 'Edit project' => 'Projekt szerkesztése',
'Name' => 'Név', 'Name' => 'Név',
'Activated' => 'Aktiválva',
'Projects' => 'Projektek', 'Projects' => 'Projektek',
'No project' => 'Nincs projekt', 'No project' => 'Nincs projekt',
'Project' => 'Projekt', 'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Műveletek', 'Actions' => 'Műveletek',
'Inactive' => 'Inaktív', 'Inactive' => 'Inaktív',
'Active' => 'Aktív', 'Active' => 'Aktív',
'Column %d' => 'Oszlop %d',
'Add this column' => 'Oszlop hozzáadása', 'Add this column' => 'Oszlop hozzáadása',
'%d tasks on the board' => '%d feladat a táblán', '%d tasks on the board' => '%d feladat a táblán',
'%d tasks in total' => 'Összesen %d feladat', '%d tasks in total' => 'Összesen %d feladat',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Új projekt', 'New project' => 'Új projekt',
'Do you really want to remove this project: "%s"?' => 'Valóban törölni akarja ezt a projektet: "%s"?', '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', 'Remove project' => 'Projekt törlése',
'Boards' => 'Táblák',
'Edit the board for "%s"' => 'Tábla szerkesztése: "%s"', 'Edit the board for "%s"' => 'Tábla szerkesztése: "%s"',
'All projects' => 'Minden projekt', 'All projects' => 'Minden projekt',
'Change columns' => 'Oszlop módosítása', 'Change columns' => 'Oszlop módosítása',
'Add a new column' => 'Új oszlop', 'Add a new column' => 'Új oszlop',
'Title' => 'Cím', 'Title' => 'Cím',
'Add Column' => 'Oszlopot hozzáad',
'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nincs felelős', 'Nobody assigned' => 'Nincs felelős',
'Assigned to %s' => 'Felelős: %s', 'Assigned to %s' => 'Felelős: %s',
'Remove a column' => 'Oszlop törlése', 'Remove a column' => 'Oszlop törlése',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Nyelv', 'Language' => 'Nyelv',
'Webhook token:' => 'Webhook token:', 'Webhook token:' => 'Webhook token:',
'API token:' => 'API token:', 'API token:' => 'API token:',
'More information' => 'További információ',
'Database size:' => 'Adatbázis méret:', 'Database size:' => 'Adatbázis méret:',
'Download the database' => 'Adatbázis letöltése', 'Download the database' => 'Adatbázis letöltése',
'Optimize the database' => 'Adatbázis optimalizálása', 'Optimize the database' => 'Adatbázis optimalizálása',
'(VACUUM command)' => '(VACUUM parancs)', '(VACUUM command)' => '(VACUUM parancs)',
'(Gzip compressed Sqlite file)' => '(Gzip tömörített SQLite fájl)', '(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', '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', 'Edit a task' => 'Feladat módosítása',
'Column' => 'Oszlop', 'Column' => 'Oszlop',
'Color' => 'Szín', 'Color' => 'Szín',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Jelszó szükséges', 'The password is required' => 'Jelszó szükséges',
'This value must be an integer' => 'Ez az érték csak egész szám lehet', '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 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', 'The user id is required' => 'A felhasználói azonosítót meg kell adni',
'Passwords don\'t match' => 'A jelszavak nem egyeznek', 'Passwords don\'t match' => 'A jelszavak nem egyeznek',
'The confirmation is required' => 'Megerősítés szükséges', '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 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 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 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', 'The project name is required' => 'A projekt nevét meg kell adni',
'This project must be unique' => 'A projekt nevének egyedinek kell lennie', 'This project must be unique' => 'A projekt nevének egyedinek kell lennie',
'The title is required' => 'A címet meg kell adni', '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.', '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.', 'Settings saved successfully.' => 'A beállítások sikeresen mentve.',
'Unable to save your settings.' => 'A beállítások mentése sikertelen.', '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 created' => 'Létrehozás időpontja',
'Date completed' => 'Befejezés időpontja', 'Date completed' => 'Befejezés időpontja',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'Nincs feladat',
'Completed tasks' => 'Elvégzett feladatok', 'Completed tasks' => 'Elvégzett feladatok',
'List of projects' => 'Projektek listája',
'Completed tasks for "%s"' => 'Elvégzett feladatok: %s', 'Completed tasks for "%s"' => 'Elvégzett feladatok: %s',
'%d closed tasks' => '%d lezárt feladat', '%d closed tasks' => '%d lezárt feladat',
'No task for this project' => 'Nincs feladat ebben a projektben', '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!', '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ó', 'Page not found' => 'Az oldal nem található',
'Complexity' => 'Bonyolultság', 'Complexity' => 'Bonyolultság',
'limit' => 'határ',
'Task limit' => 'Maximális számú feladat', 'Task limit' => 'Maximális számú feladat',
'Task count' => 'Feladatok száma', '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 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', '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.', 'Don\'t forget that administrators have access to everything.' => 'Ne felejtsük el: a rendszergazdák mindenhez hozzáférnek.',
'Revoke' => 'Visszavon', 'Revoke' => 'Visszavon',
'List of authorized users' => 'Az engedélyezett felhasználók', 'List of authorized users' => 'Az engedélyezett felhasználók',
'User' => 'Felhasználó', 'User' => 'Felhasználó',
'Nobody have access to this project.' => 'Senkinek sincs hozzáférése a projekthez.', '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', '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', 'Write your text in Markdown' => 'Írja be a szöveget Markdown szintaxissal',
'Leave a comment' => 'Írjon hozzászólást ...', 'Leave a comment' => 'Írjon hozzászólást ...',
'Comment is required' => 'A hozzászólás mező kötelező', 'Comment is required' => 'A hozzászólás mező kötelező',
'Leave a description' => 'Írjon leírást ...', 'Leave a description' => 'Írjon leírást ...',
'Comment added successfully.' => 'Hozzászólás sikeresen elküldve.', '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.', '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', 'Edit this task' => 'Feladat módosítása',
'Due Date' => 'Határidő', 'Due Date' => 'Határidő',
'Invalid date' => 'Érvénytelen dátum', 'Invalid date' => 'Érvénytelen dátum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Intézkedés mentése', '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"?', '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', '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 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', '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', '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 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 modification' => 'Feladat módosítása',
'Task creation' => 'Feladat létrehozása', 'Task creation' => 'Feladat létrehozása',
'Open a closed task' => 'Lezárt feladat felnyitása',
'Closing a task' => 'Feladat lezárása', 'Closing a task' => 'Feladat lezárása',
'Assign a color to a specific user' => 'Szín hozzárendelése a felhasználóhoz', 'Assign a color to a specific user' => 'Szín hozzárendelése a felhasználóhoz',
'Column title' => 'Oszlopfejléc', 'Column title' => 'Oszlopfejléc',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Másolás másik projektbe', 'Duplicate to another project' => 'Másolás másik projektbe',
'Duplicate' => 'Másolás', 'Duplicate' => 'Másolás',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Hozzászólás frissítése',
'Comment updated successfully.' => 'Megjegyzés sikeresen frissítve.', 'Comment updated successfully.' => 'Megjegyzés sikeresen frissítve.',
'Unable to update your comment.' => 'Megjegyzés frissítése sikertelen.', 'Unable to update your comment.' => 'Megjegyzés frissítése sikertelen.',
'Remove a comment' => 'Megjegyzés törlése', '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.', '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?', '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.', '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"', 'Current password for the user "%s"' => 'Felhasználó jelenlegi jelszava: "%s"',
'The current password is required' => 'A jelenlegi jelszót meg kell adni', 'The current password is required' => 'A jelenlegi jelszót meg kell adni',
'Wrong password' => 'Hibás jelszó', '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', 'Unknown' => 'Ismeretlen',
'Last logins' => 'Legutóbbi bejelentkezések', 'Last logins' => 'Legutóbbi bejelentkezések',
'Login date' => 'Bejelentkezés dátuma', 'Login date' => 'Bejelentkezés dátuma',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Válaszd le a Google fiókomat', 'Unlink my Google Account' => 'Válaszd le a Google fiókomat',
'Login with my Google Account' => 'Jelentkezzen be Google fiókkal', 'Login with my Google Account' => 'Jelentkezzen be Google fiókkal',
'Project not found.' => 'A projekt nem található.', 'Project not found.' => 'A projekt nem található.',
'Task #%d' => 'Feladat #%d.',
'Task removed successfully.' => 'Feladat sikeresen törölve.', 'Task removed successfully.' => 'Feladat sikeresen törölve.',
'Unable to remove this task.' => 'A feladatot nem lehet törölni.', 'Unable to remove this task.' => 'A feladatot nem lehet törölni.',
'Remove a task' => 'Feladat törlése', '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.', '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 modification for the project "%s"' => 'Kategória módosítása a projektben "%s"',
'Category Name' => 'Kategória neve', 'Category Name' => 'Kategória neve',
'Categories for the project "%s"' => 'Projekt kategóriák "%s"',
'Add a new category' => 'Új kategória', '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"?', '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', 'Filter by category' => 'Szűrés kategória szerint',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Módosítás dátuma', 'Modification date' => 'Módosítás dátuma',
'Completion date' => 'Befejezés határideje', 'Completion date' => 'Befejezés határideje',
'Clone' => 'Másolat', 'Clone' => 'Másolat',
'Clone Project' => 'Projekt másolása',
'Project cloned successfully.' => 'A projekt sikeresen másolva.', 'Project cloned successfully.' => 'A projekt sikeresen másolva.',
'Unable to clone this project.' => 'A projekt másolása sikertelen.', 'Unable to clone this project.' => 'A projekt másolása sikertelen.',
'Email notifications' => 'E-mail értesítések', 'Email notifications' => 'E-mail értesítések',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Új melléklet "%s" hozzáadva.', 'New attachment added "%s"' => 'Új melléklet "%s" hozzáadva.',
'Comment updated' => 'Megjegyzés frissítve', 'Comment updated' => 'Megjegyzés frissítve',
'New comment posted by %s' => 'Új megjegyzés %s', '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 attachment' => 'Új melléklet',
'New comment' => 'Új megjegyzés', 'New comment' => 'Új megjegyzés',
'New subtask' => 'Új részfeladat', 'New subtask' => 'Új részfeladat',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Feladat frissítve', 'Task updated' => 'Feladat frissítve',
'Task closed' => 'Feladat lezárva', 'Task closed' => 'Feladat lezárva',
'Task opened' => 'Feladat megnyitva', '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:', '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', 'view the task on Kanboard' => 'feladat megtekintése a Kanboardon',
'Public access' => 'Nyilvános hozzáférés', 'Public access' => 'Nyilvános hozzáférés',
'Category management' => 'Kategóriák kezelése',
'User management' => 'Felhasználók kezelése', 'User management' => 'Felhasználók kezelése',
'Active tasks' => 'Aktív feladatok', 'Active tasks' => 'Aktív feladatok',
'Disable public access' => 'Nyilvános hozzáférés letiltása', 'Disable public access' => 'Nyilvános hozzáférés letiltása',
'Enable public access' => 'Nyilvános hozzáférés engedélyezése', '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', '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 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"', 'Do you really want to enable this project: "%s"?' => 'Tényleg szeretné engedélyezni ezt a projektet: "%s"',
'Project activation' => 'Projekt aktiválás', 'Project activation' => 'Projekt aktiválás',
'Move the task to another project' => 'Feladat áthelyezése másik projektbe', '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', '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 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', '%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', 'New password for the user "%s"' => 'Felhasználó új jelszava: %s',
'Choose an event' => 'Válasszon eseményt', 'Choose an event' => 'Válasszon eseményt',
'Github commit received' => 'GitHub commit érkezett', 'Github commit received' => 'GitHub commit érkezett',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Mindenki elérheti a projektet', 'Everybody have access to this project.' => 'Mindenki elérheti a projektet',
'Webhooks' => 'Webhook', 'Webhooks' => 'Webhook',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integráció',
'Github webhooks' => 'Github webhooks', 'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Github Webhook súgó', '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', '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', 'Github issue comment created' => 'Github issue megjegyzés létrehozva',
'Configure' => 'Beállítások',
'Project management' => 'Projekt menedzsment', 'Project management' => 'Projekt menedzsment',
'My projects' => 'Projektjeim', 'My projects' => 'Projektjeim',
'Columns' => 'Oszlopok', 'Columns' => 'Oszlopok',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Felhasználó újrafelosztás: %s', 'User repartition for "%s"' => 'Felhasználó újrafelosztás: %s',
'Clone this project' => 'Projekt másolása', 'Clone this project' => 'Projekt másolása',
'Column removed successfully.' => 'Oszlop sikeresen törölve.', 'Column removed successfully.' => 'Oszlop sikeresen törölve.',
'Edit Project' => 'Projekt szerkesztése',
'Github Issue' => 'Github issue', 'Github Issue' => 'Github issue',
'Not enough data to show the graph.' => 'Nincs elég adat a grafikonhoz.', 'Not enough data to show the graph.' => 'Nincs elég adat a grafikonhoz.',
'Previous' => 'Előző', 'Previous' => 'Előző',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Minden folyamat', 'All swimlanes' => 'Minden folyamat',
'All colors' => 'Minden szín', 'All colors' => 'Minden szín',
'All status' => 'Minden állapot', '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', 'Moved to column %s' => '%s oszlopba áthelyezve',
'Change description' => 'Leírás szerkesztés', 'Change description' => 'Leírás szerkesztés',
'User dashboard' => 'Felhasználói vezérlőpult', 'User dashboard' => 'Felhasználói vezérlőpult',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Nessun utente', 'No user' => 'Nessun utente',
'Forbidden' => 'Vietato', 'Forbidden' => 'Vietato',
'Access Forbidden' => 'Accesso 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', 'Edit user' => 'Modificare un utente',
'Logout' => 'Uscire', 'Logout' => 'Uscire',
'Bad username or password' => 'Utente o password errati', 'Bad username or password' => 'Utente o password errati',
'users' => 'utenti',
'projects' => 'progetti',
'Edit project' => 'Modificare progetto', 'Edit project' => 'Modificare progetto',
'Name' => 'Nome', 'Name' => 'Nome',
'Activated' => 'Attivo',
'Projects' => 'Progetti', 'Projects' => 'Progetti',
'No project' => 'Nessun progetto', 'No project' => 'Nessun progetto',
'Project' => 'Progetto', 'Project' => 'Progetto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Azioni', 'Actions' => 'Azioni',
'Inactive' => 'Inattivo', 'Inactive' => 'Inattivo',
'Active' => 'Attivo', 'Active' => 'Attivo',
'Column %d' => 'Colonna %d',
'Add this column' => 'Aggiungere questa colonna', 'Add this column' => 'Aggiungere questa colonna',
'%d tasks on the board' => '%d compiti sulla bacheca', '%d tasks on the board' => '%d compiti sulla bacheca',
'%d tasks in total' => '%d compiti in totale', '%d tasks in total' => '%d compiti in totale',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nuovo progetto', 'New project' => 'Nuovo progetto',
'Do you really want to remove this project: "%s"?' => 'Veramente vuoi eliminare questo progetto: « %s » ?', 'Do you really want to remove this project: "%s"?' => 'Veramente vuoi eliminare questo progetto: « %s » ?',
'Remove project' => 'Cancellare il progetto', 'Remove project' => 'Cancellare il progetto',
'Boards' => 'Bacheche',
'Edit the board for "%s"' => 'Modificare la bacheca per « %s »', 'Edit the board for "%s"' => 'Modificare la bacheca per « %s »',
'All projects' => 'Tutti i progetti', 'All projects' => 'Tutti i progetti',
'Change columns' => 'Cambiare le colonne', 'Change columns' => 'Cambiare le colonne',
'Add a new column' => 'Aggiungere una nuova colonna', 'Add a new column' => 'Aggiungere una nuova colonna',
'Title' => 'Titolo', 'Title' => 'Titolo',
'Add Column' => 'Aggiungere colonna',
'Project "%s"' => 'progetto « %s »',
'Nobody assigned' => 'Nessuno assegnato', 'Nobody assigned' => 'Nessuno assegnato',
'Assigned to %s' => 'Assegnato a %s', 'Assigned to %s' => 'Assegnato a %s',
'Remove a column' => 'Cancellare questa colonna', 'Remove a column' => 'Cancellare questa colonna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Lingua', 'Language' => 'Lingua',
'Webhook token:' => 'Identificatore (token) per i webhooks :', 'Webhook token:' => 'Identificatore (token) per i webhooks :',
'API token:' => 'Token dell\'API:', 'API token:' => 'Token dell\'API:',
'More information' => 'Più informazioni',
'Database size:' => 'Dimensioni della base dati:', 'Database size:' => 'Dimensioni della base dati:',
'Download the database' => 'Scaricare la base dati', 'Download the database' => 'Scaricare la base dati',
'Optimize the database' => 'Ottimizare la base dati', 'Optimize the database' => 'Ottimizare la base dati',
'(VACUUM command)' => '(Comando VACUUM)', '(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(File Sqlite compresso in Gzip)', '(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', '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', 'Edit a task' => 'Modificare un compito',
'Column' => 'colonna', 'Column' => 'colonna',
'Color' => 'Colore', 'Color' => 'Colore',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Si richiede una password', 'The password is required' => 'Si richiede una password',
'This value must be an integer' => 'questo valore deve essere un intero', '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 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', 'The user id is required' => 'Si richiede l\'identificatore dell\'utente',
'Passwords don\'t match' => 'Le password non corrispondono', 'Passwords don\'t match' => 'Le password non corrispondono',
'The confirmation is required' => 'Si richiede una conferma', '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 project is required' => 'Si richiede il progetto',
'The color is required' => 'Si richiede il colore',
'The id is required' => 'Si richiede l\'identificatore', 'The id is required' => 'Si richiede l\'identificatore',
'The project id is required' => 'Si richiede l\'identificatore del progetto', 'The project id is required' => 'Si richiede l\'identificatore del progetto',
'The project name is required' => 'Si richiede il nome 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', 'This project must be unique' => 'Il nome del progetto deve essere unico',
'The title is required' => 'Si richiede un titolo', '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.', '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.', 'Settings saved successfully.' => 'Impostazioni salvate correttamente.',
'Unable to save your settings.' => 'Non si possono salvare le impostazioni.', 'Unable to save your settings.' => 'Non si possono salvare le impostazioni.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Data di creazione', 'Date created' => 'Data di creazione',
'Date completed' => 'Data di termine', 'Date completed' => 'Data di termine',
'Id' => 'Identificatore', 'Id' => 'Identificatore',
'No task' => 'Nessun compito',
'Completed tasks' => 'Compiti fatti', 'Completed tasks' => 'Compiti fatti',
'List of projects' => 'Lista di progetti',
'Completed tasks for "%s"' => 'Compiti fatti da « %s »', 'Completed tasks for "%s"' => 'Compiti fatti da « %s »',
'%d closed tasks' => '%d compiti chiusi', '%d closed tasks' => '%d compiti chiusi',
'No task for this project' => 'Nessun compito per questo progetto', '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!', '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', 'Page not found' => 'Pagina non trovata',
'Complexity' => 'Complessità', 'Complexity' => 'Complessità',
'limit' => 'limite',
'Task limit' => 'Numero massimo di compiti', 'Task limit' => 'Numero massimo di compiti',
'Task count' => 'Numero 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 project access list' => 'Modificare i permessi del progetto',
'Edit users access' => 'Modificare i permessi degli utenti',
'Allow this user' => 'Permettere a questo utente', '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.', 'Don\'t forget that administrators have access to everything.' => 'Non dimenticare che gli amministratori hanno accesso a tutto.',
'Revoke' => 'Revocare', 'Revoke' => 'Revocare',
'List of authorized users' => 'Lista di utenti autorizzati', 'List of authorized users' => 'Lista di utenti autorizzati',
'User' => 'Utente', 'User' => 'Utente',
'Nobody have access to this project.' => 'Nessuno ha accesso a questo progetto.', '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', 'Comments' => 'Commenti',
'Post comment' => 'Mandare commento',
'Write your text in Markdown' => 'Scrivi il testo in Markdown', 'Write your text in Markdown' => 'Scrivi il testo in Markdown',
'Leave a comment' => 'Lasciare un commento', 'Leave a comment' => 'Lasciare un commento',
'Comment is required' => 'Si richiede un commento', 'Comment is required' => 'Si richiede un commento',
'Leave a description' => 'Lasciare una descrizione', 'Leave a description' => 'Lasciare una descrizione',
'Comment added successfully.' => 'Commenti aggiunti correttamente.', 'Comment added successfully.' => 'Commenti aggiunti correttamente.',
'Unable to create your comment.' => 'Non si può creare questo commento.', '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', 'Edit this task' => 'Modificare questo compito',
'Due Date' => 'Data di scadenza', 'Due Date' => 'Data di scadenza',
'Invalid date' => 'Data sbagliata', 'Invalid date' => 'Data sbagliata',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Salvare questa azione', 'Save this action' => 'Salvare questa azione',
'Do you really want to remove this action: "%s"?' => 'Veramente vuole cancellare questa azione « %s » ?', 'Do you really want to remove this action: "%s"?' => 'Veramente vuole cancellare questa azione « %s » ?',
'Remove an automatic action' => 'Cancellare un\'azione automatica', '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 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', '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', '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 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 modification' => 'Modifica di un compito',
'Task creation' => 'Creazione di un compito', 'Task creation' => 'Creazione di un compito',
'Open a closed task' => 'Riaprire un compito',
'Closing a task' => 'Chiudere un compito', 'Closing a task' => 'Chiudere un compito',
'Assign a color to a specific user' => 'Assegna un colore ad un utente specifico', 'Assign a color to a specific user' => 'Assegna un colore ad un utente specifico',
'Column title' => 'Titolo della colonna', 'Column title' => 'Titolo della colonna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicare in un altro progetto', 'Duplicate to another project' => 'Duplicare in un altro progetto',
'Duplicate' => 'Duplicare', 'Duplicate' => 'Duplicare',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Aggiornare questo commento',
'Comment updated successfully.' => 'Commento aggiornato correttamente.', 'Comment updated successfully.' => 'Commento aggiornato correttamente.',
'Unable to update your comment.' => 'Non si può aggiornare questo commento.', 'Unable to update your comment.' => 'Non si può aggiornare questo commento.',
'Remove a comment' => 'Cancellare un commento', 'Remove a comment' => 'Cancellare un commento',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Non si può cancellare questo commento.', 'Unable to remove this comment.' => 'Non si può cancellare questo commento.',
'Do you really want to remove this comment?' => 'Desidera 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.', '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 »', 'Current password for the user "%s"' => 'Password attuale per l\'utente: « %s »',
'The current password is required' => 'Si richiede la password attuale', 'The current password is required' => 'Si richiede la password attuale',
'Wrong password' => 'password sbagliata', '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', 'Unknown' => 'Sconociuto',
'Last logins' => 'Ultimi ingressi', 'Last logins' => 'Ultimi ingressi',
'Login date' => 'Data di ingresso', 'Login date' => 'Data di ingresso',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Scollegare il mio account di Google', 'Unlink my Google Account' => 'Scollegare il mio account di Google',
'Login with my Google Account' => 'Entra con il mio Account di Google', 'Login with my Google Account' => 'Entra con il mio Account di Google',
'Project not found.' => 'progetto non trovato.', 'Project not found.' => 'progetto non trovato.',
'Task #%d' => 'Compito numero %d',
'Task removed successfully.' => 'Compito cancellato correttamente.', 'Task removed successfully.' => 'Compito cancellato correttamente.',
'Unable to remove this task.' => 'Non si può cancellare questo compito.', 'Unable to remove this task.' => 'Non si può cancellare questo compito.',
'Remove a task' => 'Cancellare un compito', 'Remove a task' => 'Cancellare un compito',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Non si può cancellare questa categoria.', '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 modification for the project "%s"' => 'Modifica di categoria per il progetto "%s"',
'Category Name' => 'Nome di categoria', 'Category Name' => 'Nome di categoria',
'Categories for the project "%s"' => 'Categorie per il progetto "%s"',
'Add a new category' => 'Aggiungere una nuova categoria', 'Add a new category' => 'Aggiungere una nuova categoria',
'Do you really want to remove this category: "%s"?' => 'Vuoi veramente cancellare questa categoria: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Vuoi veramente cancellare questa categoria: "%s"?',
'Filter by category' => 'Filtrare attraverso categoria', 'Filter by category' => 'Filtrare attraverso categoria',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data di modifica', 'Modification date' => 'Data di modifica',
'Completion date' => 'Data di termine', 'Completion date' => 'Data di termine',
'Clone' => 'Clona', 'Clone' => 'Clona',
'Clone Project' => 'Clona il progetto',
'Project cloned successfully.' => 'Progetto clonato con successo.', 'Project cloned successfully.' => 'Progetto clonato con successo.',
'Unable to clone this project.' => 'Impossibile clonare questo progetto', 'Unable to clone this project.' => 'Impossibile clonare questo progetto',
'Email notifications' => 'Notifiche email', 'Email notifications' => 'Notifiche email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nuovo allegato aggiunto « %s »', 'New attachment added "%s"' => 'Nuovo allegato aggiunto « %s »',
'Comment updated' => 'Commento aggiornato', 'Comment updated' => 'Commento aggiornato',
'New comment posted by %s' => 'Nuovo commento aggiunto da « %s »', '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 attachment' => 'Nuovo allegato',
'New comment' => 'Nuovo commento', 'New comment' => 'Nuovo commento',
'New subtask' => 'Nuovo sotto-compito', 'New subtask' => 'Nuovo sotto-compito',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Compito aggiornato', 'Task updated' => 'Compito aggiornato',
'Task closed' => 'Compito chiuso', 'Task closed' => 'Compito chiuso',
'Task opened' => 'Compito aperto', '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:', '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', 'view the task on Kanboard' => 'vedi il compito su Kanboard',
'Public access' => 'Accesso pubblico', 'Public access' => 'Accesso pubblico',
'Category management' => 'Gestione delle categorie',
'User management' => 'Gestione utenti', 'User management' => 'Gestione utenti',
'Active tasks' => 'Compiti attivi', 'Active tasks' => 'Compiti attivi',
'Disable public access' => 'Disabilita l\'accesso pubblico', 'Disable public access' => 'Disabilita l\'accesso pubblico',
'Enable public access' => 'Abilita l\'accesso pubblico', 'Enable public access' => 'Abilita l\'accesso pubblico',
'Active projects' => 'Progetti attivi',
'Inactive projects' => 'Progetti inattivi',
'Public access disabled' => 'Accesso pubblico disattivato', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Vuoi davvero abilitare questo progetto: "%s"?',
'Project activation' => 'Attivazione progetto', 'Project activation' => 'Attivazione progetto',
'Move the task to another project' => 'Muovi il compito in un altro 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', '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 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', '%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"', 'New password for the user "%s"' => 'Nuova password per l\'utente "%s"',
'Choose an event' => 'Scegli un evento', 'Choose an event' => 'Scegli un evento',
'Github commit received' => 'Commit di Github ricevuto', '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', 'Everybody have access to this project.' => 'Tutti hanno accesso a questo progetto',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
'Integration' => 'Integrazione',
'Github webhooks' => 'Webhooks di Github', 'Github webhooks' => 'Webhooks di Github',
'Help on Github webhooks' => 'Guida ai 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', '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', 'Github issue comment created' => 'Commento ad un Issue di Github creato',
'Configure' => 'Configura',
'Project management' => 'Gestione del progetto', 'Project management' => 'Gestione del progetto',
'My projects' => 'I miei progetti', 'My projects' => 'I miei progetti',
'Columns' => 'Colonne', 'Columns' => 'Colonne',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Ripartizione utente per "%s"', 'User repartition for "%s"' => 'Ripartizione utente per "%s"',
'Clone this project' => 'Clona questo progetto', 'Clone this project' => 'Clona questo progetto',
'Column removed successfully.' => 'Colonna rimossa con successo', 'Column removed successfully.' => 'Colonna rimossa con successo',
'Edit Project' => 'Modifica progetto',
'Github Issue' => 'Issue di Github', 'Github Issue' => 'Issue di Github',
'Not enough data to show the graph.' => 'Non ci sono abbastanza dati per visualizzare il grafico.', 'Not enough data to show the graph.' => 'Non ci sono abbastanza dati per visualizzare il grafico.',
'Previous' => 'Precendete', 'Previous' => 'Precendete',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Tutte le corsie', 'All swimlanes' => 'Tutte le corsie',
'All colors' => 'Tutti i colori', 'All colors' => 'Tutti i colori',
'All status' => 'Tutti gli stati', '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"', 'Moved to column %s' => 'Spostato sulla colonna "%s"',
'Change description' => 'Cambia descrizione', 'Change description' => 'Cambia descrizione',
'User dashboard' => 'Bacheca utente', 'User dashboard' => 'Bacheca utente',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'ユーザがいません', 'No user' => 'ユーザがいません',
'Forbidden' => 'アクセス拒否', 'Forbidden' => 'アクセス拒否',
'Access Forbidden' => 'アクセスが拒否されました', 'Access Forbidden' => 'アクセスが拒否されました',
'Only administrators can access to this page.' => '管理者のみがこのページにアクセスできます。',
'Edit user' => 'ユーザを変更する', 'Edit user' => 'ユーザを変更する',
'Logout' => 'ログアウト', 'Logout' => 'ログアウト',
'Bad username or password' => 'ユーザ名またはパスワードが違います。', 'Bad username or password' => 'ユーザ名またはパスワードが違います。',
'users' => 'ユーザ',
'projects' => 'プロジェクト',
'Edit project' => 'プロジェクトを変更する', 'Edit project' => 'プロジェクトを変更する',
'Name' => '名前', 'Name' => '名前',
'Activated' => '有効',
'Projects' => 'プロジェクト', 'Projects' => 'プロジェクト',
'No project' => 'プロジェクトがありません', 'No project' => 'プロジェクトがありません',
'Project' => 'プロジェクト', 'Project' => 'プロジェクト',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'アクション', 'Actions' => 'アクション',
'Inactive' => '無効', 'Inactive' => '無効',
'Active' => '有効', 'Active' => '有効',
'Column %d' => 'カラム %d',
'Add this column' => 'カラムを追加する', 'Add this column' => 'カラムを追加する',
'%d tasks on the board' => '%d 個のタスク', '%d tasks on the board' => '%d 個のタスク',
'%d tasks in total' => '合計 %d 個のタスク', '%d tasks in total' => '合計 %d 個のタスク',
@@ -67,14 +62,11 @@ return array(
'New project' => 'プロジェクトを作る', 'New project' => 'プロジェクトを作る',
'Do you really want to remove this project: "%s"?' => 'プロジェクト「%s」を本当に削除しますか', 'Do you really want to remove this project: "%s"?' => 'プロジェクト「%s」を本当に削除しますか',
'Remove project' => 'プロジェクトの削除', 'Remove project' => 'プロジェクトの削除',
'Boards' => 'ボード',
'Edit the board for "%s"' => 'ボード「%s」を変更する', 'Edit the board for "%s"' => 'ボード「%s」を変更する',
'All projects' => 'すべてのプロジェクト', 'All projects' => 'すべてのプロジェクト',
'Change columns' => 'カラムの変更', 'Change columns' => 'カラムの変更',
'Add a new column' => 'カラムの追加', 'Add a new column' => 'カラムの追加',
'Title' => 'タイトル', 'Title' => 'タイトル',
'Add Column' => 'カラムの追加',
'Project "%s"' => 'プロジェクト「%s」',
'Nobody assigned' => '担当なし', 'Nobody assigned' => '担当なし',
'Assigned to %s' => '%sが担当', 'Assigned to %s' => '%sが担当',
'Remove a column' => 'カラムの削除', 'Remove a column' => 'カラムの削除',
@@ -87,16 +79,12 @@ return array(
'Language' => '言語', 'Language' => '言語',
'Webhook token:' => 'Webhook トークン:', 'Webhook token:' => 'Webhook トークン:',
'API token:' => 'API トークン:', 'API token:' => 'API トークン:',
'More information' => '詳細',
'Database size:' => 'データベースのサイズ:', 'Database size:' => 'データベースのサイズ:',
'Download the database' => 'データベースのダウンロード', 'Download the database' => 'データベースのダウンロード',
'Optimize the database' => 'データベースの最適化', 'Optimize the database' => 'データベースの最適化',
'(VACUUM command)' => '(VACUUM コマンド)', '(VACUUM command)' => '(VACUUM コマンド)',
'(Gzip compressed Sqlite file)' => '(GZip コマンドで圧縮された Sqlite ファイル)', '(Gzip compressed Sqlite file)' => '(GZip コマンドで圧縮された Sqlite ファイル)',
'User settings' => 'ユーザ設定',
'My default project:' => '自分のデフォルトプロジェクト:',
'Close a task' => 'タスクをクロースする', 'Close a task' => 'タスクをクロースする',
'Do you really want to close this task: "%s"?' => 'タスク「%s」をクローズしますか',
'Edit a task' => 'タスクを変更する', 'Edit a task' => 'タスクを変更する',
'Column' => 'カラム', 'Column' => 'カラム',
'Color' => '色', 'Color' => '色',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'パスワードが必要です', 'The password is required' => 'パスワードが必要です',
'This value must be an integer' => '整数で入力してください', 'This value must be an integer' => '整数で入力してください',
'The username must be unique' => 'ユーザ名がすでに使用されています', 'The username must be unique' => 'ユーザ名がすでに使用されています',
'The username must be alphanumeric' => 'ユーザ名は英数字で入力してください',
'The user id is required' => 'ユーザ ID が必要です', 'The user id is required' => 'ユーザ ID が必要です',
'Passwords don\'t match' => 'パスワードが一致しません', 'Passwords don\'t match' => 'パスワードが一致しません',
'The confirmation is required' => '確認用のパスワードを入力してください', 'The confirmation is required' => '確認用のパスワードを入力してください',
'The column is required' => 'カラムが必要です',
'The project is required' => 'プロジェクトが必要です', 'The project is required' => 'プロジェクトが必要です',
'The color is required' => '色が必要です',
'The id is required' => 'ID が必要です', 'The id is required' => 'ID が必要です',
'The project id is required' => 'プロジェクト ID が必要です', 'The project id is required' => 'プロジェクト ID が必要です',
'The project name is required' => 'プロジェクト名が必要です', 'The project name is required' => 'プロジェクト名が必要です',
'This project must be unique' => 'プロジェクト名がすでに使われています', 'This project must be unique' => 'プロジェクト名がすでに使われています',
'The title is required' => 'タイトルが必要です', 'The title is required' => 'タイトルが必要です',
'The language is required' => '言語が必要です',
'There is no active project, the first step is to create a new project.' => '有効なプロジェクトがありません。まず新しいプロジェクトを作ります。', 'There is no active project, the first step is to create a new project.' => '有効なプロジェクトがありません。まず新しいプロジェクトを作ります。',
'Settings saved successfully.' => '設定を保存しました。', 'Settings saved successfully.' => '設定を保存しました。',
'Unable to save your settings.' => '設定の保存に失敗しました。', 'Unable to save your settings.' => '設定の保存に失敗しました。',
@@ -173,9 +157,7 @@ return array(
'Date created' => '作成日', 'Date created' => '作成日',
'Date completed' => '完了日', 'Date completed' => '完了日',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'タスクなし',
'Completed tasks' => '完了したタスク', 'Completed tasks' => '完了したタスク',
'List of projects' => 'プロジェクトの一覧',
'Completed tasks for "%s"' => '「%s」の完了したタスク', 'Completed tasks for "%s"' => '「%s」の完了したタスク',
'%d closed tasks' => '%d 個のクローズしたタスク', '%d closed tasks' => '%d 個のクローズしたタスク',
'No task for this project' => 'このプロジェクトにタスクがありません', 'No task for this project' => 'このプロジェクトにタスクがありません',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'データベース上で情報が見つかりませんでした!', 'Sorry, I didn\'t find this information in my database!' => 'データベース上で情報が見つかりませんでした!',
'Page not found' => 'ページが見つかりません', 'Page not found' => 'ページが見つかりません',
'Complexity' => '複雑さ', 'Complexity' => '複雑さ',
'limit' => '制限',
'Task limit' => 'タスク数制限', 'Task limit' => 'タスク数制限',
'Task count' => 'タスク数', 'Task count' => 'タスク数',
'This value must be greater than %d' => '%d より大きな値を入力してください',
'Edit project access list' => 'プロジェクトのアクセス許可を変更', 'Edit project access list' => 'プロジェクトのアクセス許可を変更',
'Edit users access' => 'ユーザのアクセス許可を変更',
'Allow this user' => 'このユーザを許可する', 'Allow this user' => 'このユーザを許可する',
'Only those users have access to this project:' => 'これらのユーザのみがプロジェクトにアクセスできます:',
'Don\'t forget that administrators have access to everything.' => '管理者には全ての権限が与えられます。', 'Don\'t forget that administrators have access to everything.' => '管理者には全ての権限が与えられます。',
'Revoke' => '許可を取り下げる', 'Revoke' => '許可を取り下げる',
'List of authorized users' => '許可されたユーザ', 'List of authorized users' => '許可されたユーザ',
'User' => 'ユーザ', 'User' => 'ユーザ',
'Nobody have access to this project.' => 'だれもプロジェクトにアクセスできません。', 'Nobody have access to this project.' => 'だれもプロジェクトにアクセスできません。',
'You are not allowed to access to this project.' => 'プロジェクトへのアクセスが許可されていません。',
'Comments' => 'コメント', 'Comments' => 'コメント',
'Post comment' => 'コメントを書く',
'Write your text in Markdown' => 'Markdown 記法で書く', 'Write your text in Markdown' => 'Markdown 記法で書く',
'Leave a comment' => 'コメントを書く', 'Leave a comment' => 'コメントを書く',
'Comment is required' => 'コメントを入力してください', 'Comment is required' => 'コメントを入力してください',
'Leave a description' => '説明を書く', 'Leave a description' => '説明を書く',
'Comment added successfully.' => 'コメントを追加しました。', 'Comment added successfully.' => 'コメントを追加しました。',
'Unable to create your comment.' => 'コメントの追加に失敗しました。', 'Unable to create your comment.' => 'コメントの追加に失敗しました。',
'The description is required' => '説明を入力してください',
'Edit this task' => 'タスクを変更する', 'Edit this task' => 'タスクを変更する',
'Due Date' => '期限', 'Due Date' => '期限',
'Invalid date' => '日付が無効です', 'Invalid date' => '日付が無効です',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'このアクションを保存する', 'Save this action' => 'このアクションを保存する',
'Do you really want to remove this action: "%s"?' => '自動アクション「%s」を削除しますか', 'Do you really want to remove this action: "%s"?' => '自動アクション「%s」を削除しますか',
'Remove an automatic action' => '自動アクションの削除', 'Remove an automatic action' => '自動アクションの削除',
'Close the task' => 'タスクのクローズ',
'Assign the task to a specific user' => 'タスクの担当者を割り当てる', 'Assign the task to a specific user' => 'タスクの担当者を割り当てる',
'Assign the task to the person who does the action' => 'アクションを起こしたユーザを担当者にする', 'Assign the task to the person who does the action' => 'アクションを起こしたユーザを担当者にする',
'Duplicate the task to another project' => '別のプロジェクトにタスクを複製する', 'Duplicate the task to another project' => '別のプロジェクトにタスクを複製する',
'Move a task to another column' => 'タスクを別のカラムに移動する', 'Move a task to another column' => 'タスクを別のカラムに移動する',
'Move a task to another position in the same column' => 'カラム上でのタスクの順序を変える',
'Task modification' => 'タスクの変更', 'Task modification' => 'タスクの変更',
'Task creation' => 'タスクを作る', 'Task creation' => 'タスクを作る',
'Open a closed task' => 'タスクを再オープンする',
'Closing a task' => 'タスクをクローズする', 'Closing a task' => 'タスクをクローズする',
'Assign a color to a specific user' => '色をユーザに割り当てる', 'Assign a color to a specific user' => '色をユーザに割り当てる',
'Column title' => 'カラムのタイトル', 'Column title' => 'カラムのタイトル',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => '別のプロジェクトに複製する', 'Duplicate to another project' => '別のプロジェクトに複製する',
'Duplicate' => '複製する', 'Duplicate' => '複製する',
'link' => 'リンク', 'link' => 'リンク',
'Update this comment' => 'コメントを更新する',
'Comment updated successfully.' => 'コメントを更新しました。', 'Comment updated successfully.' => 'コメントを更新しました。',
'Unable to update your comment.' => 'コメントの更新に失敗しました。', 'Unable to update your comment.' => 'コメントの更新に失敗しました。',
'Remove a comment' => 'コメントを削除する', 'Remove a comment' => 'コメントを削除する',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'コメントの削除に失敗しました。', 'Unable to remove this comment.' => 'コメントの削除に失敗しました。',
'Do you really want 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.' => '管理者かコメントの作成者のみがこのページアクセスできます。', 'Only administrators or the creator of the comment can access to this page.' => '管理者かコメントの作成者のみがこのページアクセスできます。',
'Details' => '詳細',
'Current password for the user "%s"' => 'ユーザ「%s」の現在のパスワード', 'Current password for the user "%s"' => 'ユーザ「%s」の現在のパスワード',
'The current password is required' => '現在のパスワードを入力してください', 'The current password is required' => '現在のパスワードを入力してください',
'Wrong password' => 'パスワードが違います', 'Wrong password' => 'パスワードが違います',
'Reset all tokens' => '全てのトークンを再生成する',
'All tokens have been regenerated.' => '全てのトークンが再生成されました',
'Unknown' => '不明', 'Unknown' => '不明',
'Last logins' => 'ログインの一覧', 'Last logins' => 'ログインの一覧',
'Login date' => 'ログイン日時', 'Login date' => 'ログイン日時',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Google アカウントのリンクを解除する', 'Unlink my Google Account' => 'Google アカウントのリンクを解除する',
'Login with my Google Account' => 'Google アカウントでログインする', 'Login with my Google Account' => 'Google アカウントでログインする',
'Project not found.' => 'プロジェクトが見つかりません。', 'Project not found.' => 'プロジェクトが見つかりません。',
'Task #%d' => 'タスク #%d',
'Task removed successfully.' => 'タスクを削除しました。', 'Task removed successfully.' => 'タスクを削除しました。',
'Unable to remove this task.' => 'タスクの削除に失敗しました。', 'Unable to remove this task.' => 'タスクの削除に失敗しました。',
'Remove a task' => 'タスクの削除', 'Remove a task' => 'タスクの削除',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'カテゴリを削除できませんでした。', 'Unable to remove this category.' => 'カテゴリを削除できませんでした。',
'Category modification for the project "%s"' => 'プロジェクト「%s」のカテゴリの変更', 'Category modification for the project "%s"' => 'プロジェクト「%s」のカテゴリの変更',
'Category Name' => 'カテゴリ名', 'Category Name' => 'カテゴリ名',
'Categories for the project "%s"' => 'プロジェクト「%s」のカテゴリ',
'Add a new category' => 'カテゴリの追加', 'Add a new category' => 'カテゴリの追加',
'Do you really want to remove this category: "%s"?' => 'カテゴリ「%s」を削除しますか', 'Do you really want to remove this category: "%s"?' => 'カテゴリ「%s」を削除しますか',
'Filter by category' => 'カテゴリでフィルタリング', 'Filter by category' => 'カテゴリでフィルタリング',
@@ -390,7 +356,6 @@ return array(
'Modification date' => '変更日', 'Modification date' => '変更日',
'Completion date' => '完了日', 'Completion date' => '完了日',
'Clone' => '複製', 'Clone' => '複製',
'Clone Project' => 'プロジェクトの複製',
'Project cloned successfully.' => 'プロジェクトを複製しました。', 'Project cloned successfully.' => 'プロジェクトを複製しました。',
'Unable to clone this project.' => 'プロジェクトの複製に失敗しました。', 'Unable to clone this project.' => 'プロジェクトの複製に失敗しました。',
'Email notifications' => 'メール通知', 'Email notifications' => 'メール通知',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => '添付ファイル「%s」が追加されました', 'New attachment added "%s"' => '添付ファイル「%s」が追加されました',
'Comment updated' => 'コメントが更新されました', 'Comment updated' => 'コメントが更新されました',
'New comment posted by %s' => '「%s」の新しいコメントが追加されました', 'New comment posted by %s' => '「%s」の新しいコメントが追加されました',
'List of due tasks for the project "%s"' => 'プロジェクト「%s」の期限切れのタスク',
'New attachment' => '新しい添付ファイル', 'New attachment' => '新しい添付ファイル',
'New comment' => '新しいコメント', 'New comment' => '新しいコメント',
'New subtask' => '新しいサブタスク', 'New subtask' => '新しいサブタスク',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'タスクの更新', 'Task updated' => 'タスクの更新',
'Task closed' => 'タスクのクローズ', 'Task closed' => 'タスクのクローズ',
'Task opened' => 'タスクのオープン', 'Task opened' => 'タスクのオープン',
'[%s][Due tasks]' => '[%s][タスク期限切れ]',
'[Kanboard] Notification' => '[Kanboard] 通知',
'I want to receive notifications only for those projects:' => '以下のプロジェクトにのみ通知を受け取る:', 'I want to receive notifications only for those projects:' => '以下のプロジェクトにのみ通知を受け取る:',
'view the task on Kanboard' => 'Kanboard でタスクを見る', 'view the task on Kanboard' => 'Kanboard でタスクを見る',
'Public access' => '公開アクセス設定', 'Public access' => '公開アクセス設定',
'Category management' => 'カテゴリを管理する',
'User management' => 'ユーザを管理する', 'User management' => 'ユーザを管理する',
'Active tasks' => 'アクティブなタスク', 'Active tasks' => 'アクティブなタスク',
'Disable public access' => '公開アクセスを無効にする', 'Disable public access' => '公開アクセスを無効にする',
'Enable public access' => '公開アクセスを有効にする', 'Enable public access' => '公開アクセスを有効にする',
'Active projects' => 'プロジェクト',
'Inactive projects' => '無効化されたプロジェクト',
'Public access disabled' => '公開アクセスは無効化されています', 'Public access disabled' => '公開アクセスは無効化されています',
'Do you really want to disable this project: "%s"?' => '「%s」を無効にしますか', '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」を有効にしますか', 'Do you really want to enable this project: "%s"?' => '「%s」を有効にしますか',
'Project activation' => 'プロジェクトのアクティベーション', 'Project activation' => 'プロジェクトのアクティベーション',
'Move the task to another project' => 'タスクを別プロジェクトに移す', 'Move the task to another project' => 'タスクを別プロジェクトに移す',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => '担当者の変更', 'Task assignee change' => '担当者の変更',
'%s change the assignee of the task #%d to %s' => '%s がタスク #%d の担当を %s に変更しました', '%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 に変更しました', '%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」の新しいパスワード', 'New password for the user "%s"' => 'ユーザ「%s」の新しいパスワード',
'Choose an event' => 'イベントの選択', 'Choose an event' => 'イベントの選択',
'Github commit received' => 'Github のコミットを受け取った', 'Github commit received' => 'Github のコミットを受け取った',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => '誰でもこのプロジェクトにアクセスできます。', 'Everybody have access to this project.' => '誰でもこのプロジェクトにアクセスできます。',
'Webhooks' => 'Webhook', 'Webhooks' => 'Webhook',
'API' => 'API', 'API' => 'API',
'Integration' => '連携',
'Github webhooks' => 'Github Webhook', 'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Github webhook のヘルプ', 'Help on Github webhooks' => 'Github webhook のヘルプ',
'Create a comment from an external provider' => '外部サービスからコメントを作成する', 'Create a comment from an external provider' => '外部サービスからコメントを作成する',
'Github issue comment created' => 'Github Issue コメントが作られました', 'Github issue comment created' => 'Github Issue コメントが作られました',
'Configure' => '設定',
'Project management' => 'プロジェクト・マネジメント', 'Project management' => 'プロジェクト・マネジメント',
'My projects' => '自分のプロジェクト', 'My projects' => '自分のプロジェクト',
'Columns' => 'カラム', 'Columns' => 'カラム',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '「%s」の担当者分布', 'User repartition for "%s"' => '「%s」の担当者分布',
'Clone this project' => 'このプロジェクトを複製する', 'Clone this project' => 'このプロジェクトを複製する',
'Column removed successfully.' => 'カラムを削除しました', 'Column removed successfully.' => 'カラムを削除しました',
'Edit Project' => 'プロジェクトを編集する',
'Github Issue' => 'Github Issue', 'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'グラフを描画するには出たが足りません', 'Not enough data to show the graph.' => 'グラフを描画するには出たが足りません',
'Previous' => '戻る', 'Previous' => '戻る',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => '全てのスイムレーン', 'All swimlanes' => '全てのスイムレーン',
'All colors' => '全ての色', 'All colors' => '全ての色',
'All status' => '全てのステータス', 'All status' => '全てのステータス',
'Add a comment logging moving the task between columns' => 'カラム間のタスク移動をコメントに記録',
'Moved to column %s' => 'カラム %s へ移動しました', 'Moved to column %s' => 'カラム %s へ移動しました',
'Change description' => '説明を変更', 'Change description' => '説明を変更',
'User dashboard' => 'ユーザダッシュボード', 'User dashboard' => 'ユーザダッシュボード',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Geen gebruiker', 'No user' => 'Geen gebruiker',
'Forbidden' => 'Geweigerd', 'Forbidden' => 'Geweigerd',
'Access Forbidden' => 'Toegang geweigerd', 'Access Forbidden' => 'Toegang geweigerd',
'Only administrators can access to this page.' => 'Alleen administrators hebben toegang tot deze pagina.',
'Edit user' => 'Gebruiker bewerken', 'Edit user' => 'Gebruiker bewerken',
'Logout' => 'Uitloggen', 'Logout' => 'Uitloggen',
'Bad username or password' => 'Verkeerde gebruikersnaam of wachtwoord', 'Bad username or password' => 'Verkeerde gebruikersnaam of wachtwoord',
'users' => 'gebruikers',
'projects' => 'projecten',
'Edit project' => 'Project bewerken', 'Edit project' => 'Project bewerken',
'Name' => 'Naam', 'Name' => 'Naam',
'Activated' => 'Geactiveerd',
'Projects' => 'Projecten', 'Projects' => 'Projecten',
'No project' => 'Geen project', 'No project' => 'Geen project',
'Project' => 'Project', 'Project' => 'Project',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Acties', 'Actions' => 'Acties',
'Inactive' => 'Inactief', 'Inactive' => 'Inactief',
'Active' => 'Actief', 'Active' => 'Actief',
'Column %d' => 'Kolom %d',
'Add this column' => 'Deze kolom toevoegen', 'Add this column' => 'Deze kolom toevoegen',
'%d tasks on the board' => '%d taken op het bord', '%d tasks on the board' => '%d taken op het bord',
'%d tasks in total' => '%d taken in totaal', '%d tasks in total' => '%d taken in totaal',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nieuw project', 'New project' => 'Nieuw project',
'Do you really want to remove this project: "%s"?' => 'Weet u zeker dat u dit project wil verwijderen : « %s » ?', 'Do you really want to remove this project: "%s"?' => 'Weet u zeker dat u dit project wil verwijderen : « %s » ?',
'Remove project' => 'Project verwijderen', 'Remove project' => 'Project verwijderen',
'Boards' => 'Borden',
'Edit the board for "%s"' => 'Bord bewerken voor « %s »', 'Edit the board for "%s"' => 'Bord bewerken voor « %s »',
'All projects' => 'Alle projecten', 'All projects' => 'Alle projecten',
'Change columns' => 'Kolommen veranderen', 'Change columns' => 'Kolommen veranderen',
'Add a new column' => 'Kolom toevoegen', 'Add a new column' => 'Kolom toevoegen',
'Title' => 'Titel', 'Title' => 'Titel',
'Add Column' => 'Kolom toevoegen',
'Project "%s"' => 'Project « %s »',
'Nobody assigned' => 'Niemand toegewezen', 'Nobody assigned' => 'Niemand toegewezen',
'Assigned to %s' => 'Toegewezen aan %s', 'Assigned to %s' => 'Toegewezen aan %s',
'Remove a column' => 'Kolom verwijderen', 'Remove a column' => 'Kolom verwijderen',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Taal', 'Language' => 'Taal',
'Webhook token:' => 'Webhook token :', 'Webhook token:' => 'Webhook token :',
'API token:' => 'API token :', 'API token:' => 'API token :',
'More information' => 'Meer informatie',
'Database size:' => 'Database grootte :', 'Database size:' => 'Database grootte :',
'Download the database' => 'Download de database', 'Download the database' => 'Download de database',
'Optimize the database' => 'Optimaliseer de database', 'Optimize the database' => 'Optimaliseer de database',
'(VACUUM command)' => '(VACUUM commando)', '(VACUUM command)' => '(VACUUM commando)',
'(Gzip compressed Sqlite file)' => '(Gzip ingepakt Sqlite bestand)', '(Gzip compressed Sqlite file)' => '(Gzip ingepakt Sqlite bestand)',
'User settings' => 'Gebruikers instellingen',
'My default project:' => 'Mijn standaard project : ',
'Close a task' => 'Taak sluiten', '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', 'Edit a task' => 'Taak bewerken',
'Column' => 'Kolom', 'Column' => 'Kolom',
'Color' => 'Kleur', 'Color' => 'Kleur',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Het wachtwoord is verplicht', 'The password is required' => 'Het wachtwoord is verplicht',
'This value must be an integer' => 'Deze waarde dient een integer te zijn', '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 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', 'The user id is required' => 'Het gebruikers id is verplicht',
'Passwords don\'t match' => 'De wachtwoorden komen niet overeen', 'Passwords don\'t match' => 'De wachtwoorden komen niet overeen',
'The confirmation is required' => 'De bevestiging is verplicht', '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 project is required' => 'Het project is verplicht',
'The color is required' => 'De kleur is verplicht',
'The id is required' => 'Het id is verplicht', 'The id is required' => 'Het id is verplicht',
'The project id is required' => 'Het project id is verplicht', 'The project id is required' => 'Het project id is verplicht',
'The project name is required' => 'De projectnaam is verplicht', 'The project name is required' => 'De projectnaam is verplicht',
'This project must be unique' => 'Dit project moet uniek zijn', 'This project must be unique' => 'Dit project moet uniek zijn',
'The title is required' => 'De titel is verplicht', '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.', '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.', 'Settings saved successfully.' => 'Instellingen succesvol opgeslagen.',
'Unable to save your settings.' => 'Instellingen opslaan niet gelukt.', 'Unable to save your settings.' => 'Instellingen opslaan niet gelukt.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Datum aangemaakt', 'Date created' => 'Datum aangemaakt',
'Date completed' => 'Datum voltooid', 'Date completed' => 'Datum voltooid',
'Id' => 'Id', 'Id' => 'Id',
'No task' => 'Geen taak',
'Completed tasks' => 'Voltooide taken', 'Completed tasks' => 'Voltooide taken',
'List of projects' => 'Lijst van projecten',
'Completed tasks for "%s"' => 'Vooltooide taken voor « %s »', 'Completed tasks for "%s"' => 'Vooltooide taken voor « %s »',
'%d closed tasks' => '%d gesloten taken', '%d closed tasks' => '%d gesloten taken',
'No task for this project' => 'Geen taken voor dit project', '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 !', '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', 'Page not found' => 'Pagina niet gevonden',
'Complexity' => 'Complexiteit', 'Complexity' => 'Complexiteit',
'limit' => 'Limiet',
'Task limit' => 'Taak limiet.', 'Task limit' => 'Taak limiet.',
'Task count' => 'Aantal taken', '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 project access list' => 'Aanpassen toegangsrechten project',
'Edit users access' => 'Gebruikerstoegang aanpassen',
'Allow this user' => 'Deze gebruiker toestaan', '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.', 'Don\'t forget that administrators have access to everything.' => 'Vergeet niet dat administrators overal toegang hebben.',
'Revoke' => 'Intrekken', 'Revoke' => 'Intrekken',
'List of authorized users' => 'Lijst met geautoriseerde gebruikers', 'List of authorized users' => 'Lijst met geautoriseerde gebruikers',
'User' => 'Gebruiker', 'User' => 'Gebruiker',
'Nobody have access to this project.' => 'Niemand heeft toegang tot dit project', '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', 'Comments' => 'Commentaar',
'Post comment' => 'Commentaar toevoegen',
'Write your text in Markdown' => 'Schrijf uw tekst in Markdown', 'Write your text in Markdown' => 'Schrijf uw tekst in Markdown',
'Leave a comment' => 'Schrijf een commentaar', 'Leave a comment' => 'Schrijf een commentaar',
'Comment is required' => 'Commentaar is verplicht', 'Comment is required' => 'Commentaar is verplicht',
'Leave a description' => 'Schrijf een omschrijving', 'Leave a description' => 'Schrijf een omschrijving',
'Comment added successfully.' => 'Commentaar succesvol toegevoegd.', 'Comment added successfully.' => 'Commentaar succesvol toegevoegd.',
'Unable to create your comment.' => 'Commentaar toevoegen niet gelukt.', 'Unable to create your comment.' => 'Commentaar toevoegen niet gelukt.',
'The description is required' => 'Omschrijving is verplicht',
'Edit this task' => 'Deze taak aanpassen', 'Edit this task' => 'Deze taak aanpassen',
'Due Date' => 'Vervaldag', 'Due Date' => 'Vervaldag',
'Invalid date' => 'Ongeldige datum', 'Invalid date' => 'Ongeldige datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Actie opslaan', '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 » ?', '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', '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 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', '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', '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 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 modification' => 'Taak aanpassen',
'Task creation' => 'Taak aanmaken', 'Task creation' => 'Taak aanmaken',
'Open a closed task' => 'Gesloten taak openen',
'Closing a task' => 'Taak sluiten', 'Closing a task' => 'Taak sluiten',
'Assign a color to a specific user' => 'Wijs een kleur toe aan een gebruiker', 'Assign a color to a specific user' => 'Wijs een kleur toe aan een gebruiker',
'Column title' => 'Kolom titel', 'Column title' => 'Kolom titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Dupliceren in een ander project', 'Duplicate to another project' => 'Dupliceren in een ander project',
'Duplicate' => 'Dupliceren', 'Duplicate' => 'Dupliceren',
'link' => 'koppelen', 'link' => 'koppelen',
'Update this comment' => 'Commentaar aanpassen',
'Comment updated successfully.' => 'Commentaar succesvol aangepast.', 'Comment updated successfully.' => 'Commentaar succesvol aangepast.',
'Unable to update your comment.' => 'Commentaar aanpassen niet gelukt.', 'Unable to update your comment.' => 'Commentaar aanpassen niet gelukt.',
'Remove a comment' => 'Commentaar verwijderen', 'Remove a comment' => 'Commentaar verwijderen',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Commentaar verwijderen niet gelukt.', '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 ?', '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.', '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 »', 'Current password for the user "%s"' => 'Huidig wachtwoord voor gebruiker « %s »',
'The current password is required' => 'Huidig wachtwoord is verplicht', 'The current password is required' => 'Huidig wachtwoord is verplicht',
'Wrong password' => 'Onjuist wachtwoord', 'Wrong password' => 'Onjuist wachtwoord',
'Reset all tokens' => 'Alle tokens resetten',
'All tokens have been regenerated.' => 'Alle tokens zijn opnieuw gegenereerd.',
'Unknown' => 'Onbekend', 'Unknown' => 'Onbekend',
'Last logins' => 'Laatste logins', 'Last logins' => 'Laatste logins',
'Login date' => 'Login datum', 'Login date' => 'Login datum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Link met Google Account verwijderen', 'Unlink my Google Account' => 'Link met Google Account verwijderen',
'Login with my Google Account' => 'Inloggen met mijn Google Account', 'Login with my Google Account' => 'Inloggen met mijn Google Account',
'Project not found.' => 'Project niet gevonden.', 'Project not found.' => 'Project niet gevonden.',
'Task #%d' => 'Taak %d',
'Task removed successfully.' => 'Taak succesvol verwijderd.', 'Task removed successfully.' => 'Taak succesvol verwijderd.',
'Unable to remove this task.' => 'Taak verwijderen niet gelukt.', 'Unable to remove this task.' => 'Taak verwijderen niet gelukt.',
'Remove a task' => 'Taak verwijderen', 'Remove a task' => 'Taak verwijderen',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Categorie verwijderen niet gelukt.', 'Unable to remove this category.' => 'Categorie verwijderen niet gelukt.',
'Category modification for the project "%s"' => 'Categorie aanpassen voor project « %s »', 'Category modification for the project "%s"' => 'Categorie aanpassen voor project « %s »',
'Category Name' => 'Categorie naam', 'Category Name' => 'Categorie naam',
'Categories for the project "%s"' => 'Categorieën voor project « %s »',
'Add a new category' => 'Categorie toevoegen', '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 » ?', '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', 'Filter by category' => 'Filter op categorie',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Wijzigingsdatum', 'Modification date' => 'Wijzigingsdatum',
'Completion date' => 'Afgerond op', 'Completion date' => 'Afgerond op',
'Clone' => 'Kloon', 'Clone' => 'Kloon',
'Clone Project' => 'Project klonen',
'Project cloned successfully.' => 'Project succesvol gekloond.', 'Project cloned successfully.' => 'Project succesvol gekloond.',
'Unable to clone this project.' => 'Klonen van project niet gelukt.', 'Unable to clone this project.' => 'Klonen van project niet gelukt.',
'Email notifications' => 'Email notificatie', 'Email notifications' => 'Email notificatie',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nieuwe bijlage toegevoegd « %s »', 'New attachment added "%s"' => 'Nieuwe bijlage toegevoegd « %s »',
'Comment updated' => 'Commentaar aangepast', 'Comment updated' => 'Commentaar aangepast',
'New comment posted by %s' => 'Nieuw commentaar geplaatst door « %s »', '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 attachment' => 'Nieuwe bijlage',
'New comment' => 'Nieuw commentaar', 'New comment' => 'Nieuw commentaar',
'New subtask' => 'Nieuwe subtaak', 'New subtask' => 'Nieuwe subtaak',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Taak aangepast', 'Task updated' => 'Taak aangepast',
'Task closed' => 'Taak gesloten', 'Task closed' => 'Taak gesloten',
'Task opened' => 'Taak geopend', '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 :', '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', 'view the task on Kanboard' => 'taak bekijken op Kanboard',
'Public access' => 'Publieke toegang', 'Public access' => 'Publieke toegang',
'Category management' => 'Categorie management',
'User management' => 'Gebruikers management', 'User management' => 'Gebruikers management',
'Active tasks' => 'Actieve taken', 'Active tasks' => 'Actieve taken',
'Disable public access' => 'Publieke toegang uitschakelen', 'Disable public access' => 'Publieke toegang uitschakelen',
'Enable public access' => 'Publieke toegang inschakelen', 'Enable public access' => 'Publieke toegang inschakelen',
'Active projects' => 'Actieve projecten',
'Inactive projects' => 'Inactieve projecten',
'Public access disabled' => 'Publieke toegang uitgeschakeld', '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 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 » ?', 'Do you really want to enable this project: "%s"?' => 'Weet u zeker dat u dit project wil activeren : « %s » ?',
'Project activation' => 'Project activatie', 'Project activation' => 'Project activatie',
'Move the task to another project' => 'Taak verplaatsen naar een ander project', 'Move the task to another project' => 'Taak verplaatsen naar een ander project',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Taak toegewezene verandering', '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 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', '%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 »', 'New password for the user "%s"' => 'Nieuw wachtwoord voor gebruiker « %s »',
'Choose an event' => 'Kies een gebeurtenis', 'Choose an event' => 'Kies een gebeurtenis',
'Github commit received' => 'Github commentaar ontvangen', 'Github commit received' => 'Github commentaar ontvangen',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Iedereen heeft toegang tot dit project.', 'Everybody have access to this project.' => 'Iedereen heeft toegang tot dit project.',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integratue',
'Github webhooks' => 'Github webhooks', 'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Hulp bij 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', 'Create a comment from an external provider' => 'Voeg een commentaar toe van een externe provider',
'Github issue comment created' => 'Github issue commentaar aangemaakt', 'Github issue comment created' => 'Github issue commentaar aangemaakt',
'Configure' => 'Configureren',
'Project management' => 'Project management', 'Project management' => 'Project management',
'My projects' => 'Mijn projecten', 'My projects' => 'Mijn projecten',
'Columns' => 'Kolommen', 'Columns' => 'Kolommen',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Gebruikerverdeling voor « %s »', 'User repartition for "%s"' => 'Gebruikerverdeling voor « %s »',
'Clone this project' => 'Kloon dit project', 'Clone this project' => 'Kloon dit project',
'Column removed successfully.' => 'Kolom succesvol verwijderd.', 'Column removed successfully.' => 'Kolom succesvol verwijderd.',
'Edit Project' => 'Project aanpassen',
'Github Issue' => 'Github issue', 'Github Issue' => 'Github issue',
'Not enough data to show the graph.' => 'Niet genoeg data om de grafiek te laten zien.', 'Not enough data to show the graph.' => 'Niet genoeg data om de grafiek te laten zien.',
// 'Previous' => '', // 'Previous' => '',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alle swimlanes', 'All swimlanes' => 'Alle swimlanes',
'All colors' => 'Alle kleuren', 'All colors' => 'Alle kleuren',
'All status' => 'Alle statussen', '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', 'Moved to column %s' => 'Verplaatst naar kolom %s',
'Change description' => 'Verandering omschrijving', 'Change description' => 'Verandering omschrijving',
'User dashboard' => 'Gebruiker dashboard', 'User dashboard' => 'Gebruiker dashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Brak użytkowników', 'No user' => 'Brak użytkowników',
'Forbidden' => 'Zabroniony', 'Forbidden' => 'Zabroniony',
'Access Forbidden' => 'Dostęp 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', 'Edit user' => 'Edytuj użytkownika',
'Logout' => 'Wyloguj', 'Logout' => 'Wyloguj',
'Bad username or password' => 'Zła nazwa użytkownika lub hasło', 'Bad username or password' => 'Zła nazwa użytkownika lub hasło',
'users' => 'użytkownicy',
'projects' => 'projekty',
'Edit project' => 'Edytuj projekt', 'Edit project' => 'Edytuj projekt',
'Name' => 'Nazwa', 'Name' => 'Nazwa',
'Activated' => 'Aktywny',
'Projects' => 'Projekty', 'Projects' => 'Projekty',
'No project' => 'Brak projektów', 'No project' => 'Brak projektów',
'Project' => 'Projekt', 'Project' => 'Projekt',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Akcje', 'Actions' => 'Akcje',
'Inactive' => 'Nieaktywny', 'Inactive' => 'Nieaktywny',
'Active' => 'Aktywny', 'Active' => 'Aktywny',
'Column %d' => 'Kolumna %d',
'Add this column' => 'Dodaj kolumnę', 'Add this column' => 'Dodaj kolumnę',
'%d tasks on the board' => '%d zadań na tablicy', '%d tasks on the board' => '%d zadań na tablicy',
'%d tasks in total' => '%d wszystkich zadań', '%d tasks in total' => '%d wszystkich zadań',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nowy projekt', 'New project' => 'Nowy projekt',
'Do you really want to remove this project: "%s"?' => 'Na pewno chcesz usunąć projekt: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Na pewno chcesz usunąć projekt: "%s"?',
'Remove project' => 'Usuń projekt', 'Remove project' => 'Usuń projekt',
'Boards' => 'Tablice',
'Edit the board for "%s"' => 'Edytuj tablicę dla "%s"', 'Edit the board for "%s"' => 'Edytuj tablicę dla "%s"',
'All projects' => 'Wszystkie projekty', 'All projects' => 'Wszystkie projekty',
'Change columns' => 'Zmień kolumny', 'Change columns' => 'Zmień kolumny',
'Add a new column' => 'Dodaj nową kolumnę', 'Add a new column' => 'Dodaj nową kolumnę',
'Title' => 'Tytuł', 'Title' => 'Tytuł',
'Add Column' => 'Dodaj kolumnę',
'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Nikt nie przypisany', 'Nobody assigned' => 'Nikt nie przypisany',
'Assigned to %s' => 'Przypisane do %s', 'Assigned to %s' => 'Przypisane do %s',
'Remove a column' => 'Usuń kolumnę', 'Remove a column' => 'Usuń kolumnę',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Język', 'Language' => 'Język',
'Webhook token:' => 'Token :', 'Webhook token:' => 'Token :',
'API token:' => 'Token dla API', 'API token:' => 'Token dla API',
'More information' => 'Więcej informacji',
'Database size:' => 'Rozmiar bazy danych :', 'Database size:' => 'Rozmiar bazy danych :',
'Download the database' => 'Pobierz bazę danych', 'Download the database' => 'Pobierz bazę danych',
'Optimize the database' => 'Optymalizuj bazę danych', 'Optimize the database' => 'Optymalizuj bazę danych',
'(VACUUM command)' => '(komenda VACUUM)', '(VACUUM command)' => '(komenda VACUUM)',
'(Gzip compressed Sqlite file)' => '(baza danych spakowana Gzip)', '(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', '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', 'Edit a task' => 'Edytuj zadanie',
'Column' => 'Kolumna', 'Column' => 'Kolumna',
'Color' => 'Kolor', 'Color' => 'Kolor',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Hasło jest wymagane', 'The password is required' => 'Hasło jest wymagane',
'This value must be an integer' => 'Wartość musi być liczbą całkowitą', '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 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', 'The user id is required' => 'ID użytkownika jest wymagane',
'Passwords don\'t match' => 'Hasła nie pasują do siebie', 'Passwords don\'t match' => 'Hasła nie pasują do siebie',
'The confirmation is required' => 'Wymagane jest potwierdzenie', 'The confirmation is required' => 'Wymagane jest potwierdzenie',
'The column is required' => 'Kolumna jest wymagana',
'The project is required' => 'Projekt jest wymagany', 'The project is required' => 'Projekt jest wymagany',
'The color is required' => 'Kolor jest wymagany',
'The id is required' => 'ID jest wymagane', 'The id is required' => 'ID jest wymagane',
'The project id is required' => 'ID projektu jest wymagane', 'The project id is required' => 'ID projektu jest wymagane',
'The project name is required' => 'Nazwa projektu jest wymagana', 'The project name is required' => 'Nazwa projektu jest wymagana',
'This project must be unique' => 'Projekt musi być unikalny', 'This project must be unique' => 'Projekt musi być unikalny',
'The title is required' => 'Tutył jest wymagany', '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.', '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.', 'Settings saved successfully.' => 'Ustawienia zapisane.',
'Unable to save your settings.' => 'Nie udało się zapisać ustawień.', 'Unable to save your settings.' => 'Nie udało się zapisać ustawień.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Data utworzenia', 'Date created' => 'Data utworzenia',
'Date completed' => 'Data zakończenia', 'Date completed' => 'Data zakończenia',
'Id' => 'Id', 'Id' => 'Id',
'No task' => 'Brak zadań',
'Completed tasks' => 'Ukończone zadania', 'Completed tasks' => 'Ukończone zadania',
'List of projects' => 'Lista projektów',
'Completed tasks for "%s"' => 'Zadania zakończone dla "%s"', 'Completed tasks for "%s"' => 'Zadania zakończone dla "%s"',
'%d closed tasks' => '%d zamkniętych zadań', '%d closed tasks' => '%d zamkniętych zadań',
'No task for this project' => 'Brak zadań dla tego projektu', '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', 'Sorry, I didn\'t find this information in my database!' => 'Niestety nie znaleziono tej informacji w bazie danych',
'Page not found' => 'Strona nie istnieje', 'Page not found' => 'Strona nie istnieje',
'Complexity' => 'Poziom trudności', 'Complexity' => 'Poziom trudności',
'limit' => 'limit',
'Task limit' => 'Limit zadań', 'Task limit' => 'Limit zadań',
'Task count' => 'Liczba 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 project access list' => 'Edycja list dostępu dla projektu',
'Edit users access' => 'Edytuj dostęp',
'Allow this user' => 'Dodaj użytkownika', '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!', 'Don\'t forget that administrators have access to everything.' => 'Pamiętaj: Administratorzy mają zawsze dostęp do wszystkiego!',
'Revoke' => 'Odbierz dostęp', 'Revoke' => 'Odbierz dostęp',
'List of authorized users' => 'Lista użytkowników mających dostęp', 'List of authorized users' => 'Lista użytkowników mających dostęp',
'User' => 'Użytkownik', 'User' => 'Użytkownik',
'Nobody have access to this project.' => 'Żaden użytkownik nie ma dostępu do tego projektu', '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', 'Comments' => 'Komentarze',
'Post comment' => 'Dodaj komentarz',
'Write your text in Markdown' => 'Możesz użyć Markdown', 'Write your text in Markdown' => 'Możesz użyć Markdown',
'Leave a comment' => 'Zostaw komentarz', 'Leave a comment' => 'Zostaw komentarz',
'Comment is required' => 'Komentarz jest wymagany', 'Comment is required' => 'Komentarz jest wymagany',
'Leave a description' => 'Dodaj opis', 'Leave a description' => 'Dodaj opis',
'Comment added successfully.' => 'Komentarz dodany', 'Comment added successfully.' => 'Komentarz dodany',
'Unable to create your comment.' => 'Nie udało się dodać komentarza', 'Unable to create your comment.' => 'Nie udało się dodać komentarza',
'The description is required' => 'Opis jest wymagany',
'Edit this task' => 'Edytuj zadanie', 'Edit this task' => 'Edytuj zadanie',
'Due Date' => 'Termin', 'Due Date' => 'Termin',
'Invalid date' => 'Błędna data', 'Invalid date' => 'Błędna data',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Zapisz akcję', 'Save this action' => 'Zapisz akcję',
'Do you really want to remove this action: "%s"?' => 'Na pewno chcesz usunąć akcję "%s"?', 'Do you really want to remove this action: "%s"?' => 'Na pewno chcesz usunąć akcję "%s"?',
'Remove an automatic action' => 'Usuń akcję automatyczną', '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 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ę', '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', '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 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 modification' => 'Modyfikacja zadania',
'Task creation' => 'Tworzenie zadania', 'Task creation' => 'Tworzenie zadania',
'Open a closed task' => 'Otwarcie zamkniętego zadania',
'Closing a task' => 'Zamknięcie zadania', 'Closing a task' => 'Zamknięcie zadania',
'Assign a color to a specific user' => 'Przypisz kolor do wybranego użytkownika', 'Assign a color to a specific user' => 'Przypisz kolor do wybranego użytkownika',
'Column title' => 'Tytuł kolumny', 'Column title' => 'Tytuł kolumny',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Skopiuj do innego projektu', 'Duplicate to another project' => 'Skopiuj do innego projektu',
'Duplicate' => 'Utwórz kopię', 'Duplicate' => 'Utwórz kopię',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Zapisz komentarz',
'Comment updated successfully.' => 'Komentarz został zapisany.', 'Comment updated successfully.' => 'Komentarz został zapisany.',
'Unable to update your comment.' => 'Nie udało się zapisanie komentarza.', 'Unable to update your comment.' => 'Nie udało się zapisanie komentarza.',
'Remove a comment' => 'Usuń komentarz', 'Remove a comment' => 'Usuń komentarz',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Nie udało się usunąć komentarza.', '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?', '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.', '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"', 'Current password for the user "%s"' => 'Aktualne hasło dla użytkownika "%s"',
'The current password is required' => 'Wymanage jest aktualne hasło', 'The current password is required' => 'Wymanage jest aktualne hasło',
'Wrong password' => 'Błędne 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', 'Unknown' => 'Nieznany',
'Last logins' => 'Ostatnie logowania', 'Last logins' => 'Ostatnie logowania',
'Login date' => 'Data logowania', 'Login date' => 'Data logowania',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Rozłącz z kontem Google', 'Unlink my Google Account' => 'Rozłącz z kontem Google',
'Login with my Google Account' => 'Zaloguj przy pomocy konta Google', 'Login with my Google Account' => 'Zaloguj przy pomocy konta Google',
'Project not found.' => 'Projek nieznaleziony.', 'Project not found.' => 'Projek nieznaleziony.',
'Task #%d' => 'Zadanie #%d',
'Task removed successfully.' => 'Zadanie usunięto pomyślnie.', 'Task removed successfully.' => 'Zadanie usunięto pomyślnie.',
'Unable to remove this task.' => 'Nie można usunąć tego zadania.', 'Unable to remove this task.' => 'Nie można usunąć tego zadania.',
'Remove a task' => 'Usuń zadanie', 'Remove a task' => 'Usuń zadanie',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Nie można usunąć tej kategorii.', 'Unable to remove this category.' => 'Nie można usunąć tej kategorii.',
'Category modification for the project "%s"' => 'Zmiana kategorii projektu "%s"', 'Category modification for the project "%s"' => 'Zmiana kategorii projektu "%s"',
'Category Name' => 'Nazwa kategorii', 'Category Name' => 'Nazwa kategorii',
'Categories for the project "%s"' => 'Kategorie projektu "%s"',
'Add a new category' => 'Utwórz nową kategorię', 'Add a new category' => 'Utwórz nową kategorię',
'Do you really want to remove this category: "%s"?' => 'Czy na pewno chcesz usunąć kategorię: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Czy na pewno chcesz usunąć kategorię: "%s"?',
'Filter by category' => 'Filtruj według kategorii', 'Filter by category' => 'Filtruj według kategorii',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data modyfikacji', 'Modification date' => 'Data modyfikacji',
'Completion date' => 'Data ukończenia', 'Completion date' => 'Data ukończenia',
'Clone' => 'Sklonuj', 'Clone' => 'Sklonuj',
'Clone Project' => 'Sklonuj projekt',
'Project cloned successfully.' => 'Projekt sklonowany pomyślnie.', 'Project cloned successfully.' => 'Projekt sklonowany pomyślnie.',
'Unable to clone this project.' => 'Nie można sklonować projektu.', 'Unable to clone this project.' => 'Nie można sklonować projektu.',
'Email notifications' => 'Powiadomienia email', 'Email notifications' => 'Powiadomienia email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Nowy załącznik dodany "%s"', 'New attachment added "%s"' => 'Nowy załącznik dodany "%s"',
'Comment updated' => 'Komentarz zaktualizowany', 'Comment updated' => 'Komentarz zaktualizowany',
'New comment posted by %s' => 'Nowy komentarz dodany przez %s', '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 attachment' => 'Nowy załącznik',
'New comment' => 'Nowy Komentarz', 'New comment' => 'Nowy Komentarz',
'New subtask' => 'Nowe pod-zadanie', 'New subtask' => 'Nowe pod-zadanie',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Zaktualizowane zadanie', 'Task updated' => 'Zaktualizowane zadanie',
'Task closed' => 'Zadanie zamknięte', 'Task closed' => 'Zadanie zamknięte',
'Task opened' => 'Zadanie otwarte', '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:', 'I want to receive notifications only for those projects:' => 'Chcę otrzymywać powiadiomienia tylko dla tych projektów:',
'view the task on Kanboard' => 'Zobacz zadanie', 'view the task on Kanboard' => 'Zobacz zadanie',
'Public access' => 'Dostęp publiczny', 'Public access' => 'Dostęp publiczny',
'Category management' => 'Zarządzanie kategoriami',
'User management' => 'Zarządzanie użytkownikami', 'User management' => 'Zarządzanie użytkownikami',
'Active tasks' => 'Aktywne zadania', 'Active tasks' => 'Aktywne zadania',
'Disable public access' => 'Zablokuj dostęp publiczny', 'Disable public access' => 'Zablokuj dostęp publiczny',
'Enable public access' => 'Odblokuj 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', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Czy na pewno chcesz odblokować projekt: "%s"?',
'Project activation' => 'Aktywacja projekt', 'Project activation' => 'Aktywacja projekt',
'Move the task to another project' => 'Przenieś zadanie do innego projektu', 'Move the task to another project' => 'Przenieś zadanie do innego projektu',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Zmień osobę odpowiedzialną', '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 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', '%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"', 'New password for the user "%s"' => 'Nowe hasło użytkownika "%s"',
'Choose an event' => 'Wybierz zdarzenie', 'Choose an event' => 'Wybierz zdarzenie',
// 'Github commit received' => '', // 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Wszyscy mają dostęp do tego projektu.', 'Everybody have access to this project.' => 'Wszyscy mają dostęp do tego projektu.',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
'Integration' => 'Integracja',
// 'Github webhooks' => '', // 'Github webhooks' => '',
// 'Help on Github webhooks' => '', // 'Help on Github webhooks' => '',
'Create a comment from an external provider' => 'Utwórz komentarz od zewnętrznego dostawcy', 'Create a comment from an external provider' => 'Utwórz komentarz od zewnętrznego dostawcy',
// 'Github issue comment created' => '', // 'Github issue comment created' => '',
'Configure' => 'Konfiguruj',
'Project management' => 'Menadżer projektu', 'Project management' => 'Menadżer projektu',
'My projects' => 'Moje projekty', 'My projects' => 'Moje projekty',
'Columns' => 'Kolumny', 'Columns' => 'Kolumny',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Przydział użytkownika dla "%s"', 'User repartition for "%s"' => 'Przydział użytkownika dla "%s"',
'Clone this project' => 'Sklonuj ten projekt', 'Clone this project' => 'Sklonuj ten projekt',
'Column removed successfully.' => 'Kolumna usunięta pomyślnie.', 'Column removed successfully.' => 'Kolumna usunięta pomyślnie.',
'Edit Project' => 'Edytuj projekt',
// 'Github Issue' => '', // 'Github Issue' => '',
'Not enough data to show the graph.' => 'Za mało danych do utworzenia wykresu.', 'Not enough data to show the graph.' => 'Za mało danych do utworzenia wykresu.',
'Previous' => 'Poprzedni', 'Previous' => 'Poprzedni',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Wszystkie procesy', 'All swimlanes' => 'Wszystkie procesy',
'All colors' => 'Wszystkie kolory', 'All colors' => 'Wszystkie kolory',
'All status' => 'Wszystkie statusy', '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', 'Moved to column %s' => 'Przeniosiono do kolumny %s',
'Change description' => 'Zmień opis', 'Change description' => 'Zmień opis',
'User dashboard' => 'Panel użytkownika', 'User dashboard' => 'Panel użytkownika',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Uwierzytelnianie dwuetapowe włączone', 'Two factor authentication enabled' => 'Uwierzytelnianie dwuetapowe włączone',
'Unable to update this user.' => 'Nie można zaktualizować tego użytkownika', '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.', '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Sem usuário', 'No user' => 'Sem usuário',
'Forbidden' => 'Proibido', 'Forbidden' => 'Proibido',
'Access Forbidden' => 'Acesso negado', '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', 'Edit user' => 'Editar usuário',
'Logout' => 'Sair', 'Logout' => 'Sair',
'Bad username or password' => 'Usuário ou senha inválidos', 'Bad username or password' => 'Usuário ou senha inválidos',
'users' => 'usuários',
'projects' => 'projetos',
'Edit project' => 'Editar projeto', 'Edit project' => 'Editar projeto',
'Name' => 'Nome', 'Name' => 'Nome',
'Activated' => 'Ativado',
'Projects' => 'Projetos', 'Projects' => 'Projetos',
'No project' => 'Nenhum projeto', 'No project' => 'Nenhum projeto',
'Project' => 'Projeto', 'Project' => 'Projeto',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Ações', 'Actions' => 'Ações',
'Inactive' => 'Inativo', 'Inactive' => 'Inativo',
'Active' => 'Ativo', 'Active' => 'Ativo',
'Column %d' => 'Coluna %d',
'Add this column' => 'Adicionar esta coluna', 'Add this column' => 'Adicionar esta coluna',
'%d tasks on the board' => '%d tarefas no board', '%d tasks on the board' => '%d tarefas no board',
'%d tasks in total' => '%d tarefas no total', '%d tasks in total' => '%d tarefas no total',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Novo projeto', 'New project' => 'Novo projeto',
'Do you really want to remove this project: "%s"?' => 'Você realmente deseja remover este projeto: "%s" ?', 'Do you really want to remove this project: "%s"?' => 'Você realmente deseja remover este projeto: "%s" ?',
'Remove project' => 'Remover projeto', 'Remove project' => 'Remover projeto',
'Boards' => 'Boards',
'Edit the board for "%s"' => 'Editar o board para "%s"', 'Edit the board for "%s"' => 'Editar o board para "%s"',
'All projects' => 'Todos os projetos', 'All projects' => 'Todos os projetos',
'Change columns' => 'Modificar colunas', 'Change columns' => 'Modificar colunas',
'Add a new column' => 'Adicionar uma nova coluna', 'Add a new column' => 'Adicionar uma nova coluna',
'Title' => 'Título', 'Title' => 'Título',
'Add Column' => 'Adicionar Coluna',
'Project "%s"' => 'Projeto "%s"',
'Nobody assigned' => 'Ninguém designado', 'Nobody assigned' => 'Ninguém designado',
'Assigned to %s' => 'Designado para %s', 'Assigned to %s' => 'Designado para %s',
'Remove a column' => 'Remover uma coluna', 'Remove a column' => 'Remover uma coluna',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Idioma', 'Language' => 'Idioma',
'Webhook token:' => 'Token de webhooks:', 'Webhook token:' => 'Token de webhooks:',
'API token:' => 'API Token:', 'API token:' => 'API Token:',
'More information' => 'Mais informações',
'Database size:' => 'Tamanho do banco de dados:', 'Database size:' => 'Tamanho do banco de dados:',
'Download the database' => 'Download do banco de dados', 'Download the database' => 'Download do banco de dados',
'Optimize the database' => 'Otimizar o banco de dados', 'Optimize the database' => 'Otimizar o banco de dados',
'(VACUUM command)' => '(Comando VACUUM)', '(VACUUM command)' => '(Comando VACUUM)',
'(Gzip compressed Sqlite file)' => '(Arquivo Sqlite comprimido com Gzip)', '(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', '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', 'Edit a task' => 'Editar uma tarefa',
'Column' => 'Coluna', 'Column' => 'Coluna',
'Color' => 'Cor', 'Color' => 'Cor',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'A senha é obrigatória', 'The password is required' => 'A senha é obrigatória',
'This value must be an integer' => 'O valor deve ser um número inteiro', '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 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', 'The user id is required' => 'O ID de usuário é obrigatório',
'Passwords don\'t match' => 'As senhas não coincidem', 'Passwords don\'t match' => 'As senhas não coincidem',
'The confirmation is required' => 'A confirmação é obrigatória', '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 project is required' => 'O projeto é obrigatório',
'The color is required' => 'A cor é obrigatória',
'The id is required' => 'O ID é obrigatório', 'The id is required' => 'O ID é obrigatório',
'The project id is required' => 'O ID do projeto é obrigatório', 'The project id is required' => 'O ID do projeto é obrigatório',
'The project name is required' => 'O nome 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', 'This project must be unique' => 'Este projeto deve ser único',
'The title is required' => 'O título é obrigatório', '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.', '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.', 'Settings saved successfully.' => 'Configurações salvas com sucesso.',
'Unable to save your settings.' => 'Não é possível salvar suas configurações.', '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 created' => 'Data de criação',
'Date completed' => 'Data da finalização', 'Date completed' => 'Data da finalização',
'Id' => 'Id', 'Id' => 'Id',
'No task' => 'Nenhuma tarefa',
'Completed tasks' => 'Tarefas completadas', 'Completed tasks' => 'Tarefas completadas',
'List of projects' => 'Lista de projetos',
'Completed tasks for "%s"' => 'Tarefas completadas por "%s"', 'Completed tasks for "%s"' => 'Tarefas completadas por "%s"',
'%d closed tasks' => '%d tarefas finalizadas', '%d closed tasks' => '%d tarefas finalizadas',
'No task for this project' => 'Não há tarefa para este projeto', '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!', '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', 'Page not found' => 'Página não encontrada',
'Complexity' => 'Complexidade', 'Complexity' => 'Complexidade',
'limit' => 'limite',
'Task limit' => 'Limite da tarefa', 'Task limit' => 'Limite da tarefa',
'Task count' => 'Número de tarefas', '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 project access list' => 'Editar lista de acesso ao projeto',
'Edit users access' => 'Editar acesso de usuários',
'Allow this user' => 'Permitir este usuário', '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.', 'Don\'t forget that administrators have access to everything.' => 'Não esqueça que administradores têm acesso a tudo.',
'Revoke' => 'Revogar', 'Revoke' => 'Revogar',
'List of authorized users' => 'Lista de usuários autorizados', 'List of authorized users' => 'Lista de usuários autorizados',
'User' => 'Usuário', 'User' => 'Usuário',
'Nobody have access to this project.' => 'Ninguém tem acesso a este projeto.', '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', 'Comments' => 'Comentários',
'Post comment' => 'Postar comentário',
'Write your text in Markdown' => 'Escreva seu texto em Markdown', 'Write your text in Markdown' => 'Escreva seu texto em Markdown',
'Leave a comment' => 'Deixe um comentário', 'Leave a comment' => 'Deixe um comentário',
'Comment is required' => 'Comentário é obrigatório', 'Comment is required' => 'Comentário é obrigatório',
'Leave a description' => 'Deixe uma descrição', 'Leave a description' => 'Deixe uma descrição',
'Comment added successfully.' => 'Comentário adicionado com sucesso.', 'Comment added successfully.' => 'Comentário adicionado com sucesso.',
'Unable to create your comment.' => 'Não é possível criar o seu comentário.', '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', 'Edit this task' => 'Editar esta tarefa',
'Due Date' => 'Data de vencimento', 'Due Date' => 'Data de vencimento',
'Invalid date' => 'Data inválida', 'Invalid date' => 'Data inválida',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Salvar esta ação', 'Save this action' => 'Salvar esta ação',
'Do you really want to remove this action: "%s"?' => 'Você realmente deseja remover esta ação: "%s"?', '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', '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 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', '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', '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 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 modification' => 'Modificação de tarefa',
'Task creation' => 'Criação de tarefa', 'Task creation' => 'Criação de tarefa',
'Open a closed task' => 'Reabrir uma tarefa finalizada',
'Closing a task' => 'Finalizando uma tarefa', 'Closing a task' => 'Finalizando uma tarefa',
'Assign a color to a specific user' => 'Designar uma cor para um usuário específico', 'Assign a color to a specific user' => 'Designar uma cor para um usuário específico',
'Column title' => 'Título da coluna', 'Column title' => 'Título da coluna',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Duplicar para outro projeto', 'Duplicate to another project' => 'Duplicar para outro projeto',
'Duplicate' => 'Duplicar', 'Duplicate' => 'Duplicar',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Atualizar este comentário',
'Comment updated successfully.' => 'Comentário atualizado com sucesso.', 'Comment updated successfully.' => 'Comentário atualizado com sucesso.',
'Unable to update your comment.' => 'Não é possível atualizar o seu comentário.', 'Unable to update your comment.' => 'Não é possível atualizar o seu comentário.',
'Remove a comment' => 'Remover um 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.', '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?', '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.', '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"', 'Current password for the user "%s"' => 'Senha atual para o usuário "%s"',
'The current password is required' => 'A senha atual é obrigatória', 'The current password is required' => 'A senha atual é obrigatória',
'Wrong password' => 'Senha incorreta', 'Wrong password' => 'Senha incorreta',
'Reset all tokens' => 'Resetar todos os tokens',
'All tokens have been regenerated.' => 'Todos os tokens foram gerados novamente.',
'Unknown' => 'Desconhecido', 'Unknown' => 'Desconhecido',
'Last logins' => 'Últimos logins', 'Last logins' => 'Últimos logins',
'Login date' => 'Data de login', 'Login date' => 'Data de login',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Desvincular minha Conta do Google', 'Unlink my Google Account' => 'Desvincular minha Conta do Google',
'Login with my Google Account' => 'Entrar com minha Conta do Google', 'Login with my Google Account' => 'Entrar com minha Conta do Google',
'Project not found.' => 'Projeto não encontrado.', 'Project not found.' => 'Projeto não encontrado.',
'Task #%d' => 'Tarefa #%d',
'Task removed successfully.' => 'Tarefa removida com sucesso.', 'Task removed successfully.' => 'Tarefa removida com sucesso.',
'Unable to remove this task.' => 'Não foi possível remover esta tarefa.', 'Unable to remove this task.' => 'Não foi possível remover esta tarefa.',
'Remove a task' => 'Remover uma 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.', '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 modification for the project "%s"' => 'Modificação de categoria para o projeto "%s"',
'Category Name' => 'Nome da Categoria', 'Category Name' => 'Nome da Categoria',
'Categories for the project "%s"' => 'Categorias para o projeto "%s"',
'Add a new category' => 'Adicionar uma nova categoria', 'Add a new category' => 'Adicionar uma nova categoria',
'Do you really want to remove this category: "%s"?' => 'Você realmente deseja remover esta categoria: "%s"', 'Do you really want to remove this category: "%s"?' => 'Você realmente deseja remover esta categoria: "%s"',
'Filter by category' => 'Filtrar por categoria', 'Filter by category' => 'Filtrar por categoria',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Data da modificação', 'Modification date' => 'Data da modificação',
'Completion date' => 'Data da finalização', 'Completion date' => 'Data da finalização',
'Clone' => 'Clonar', 'Clone' => 'Clonar',
'Clone Project' => 'Clonar Projeto',
'Project cloned successfully.' => 'Projeto clonado com sucesso.', 'Project cloned successfully.' => 'Projeto clonado com sucesso.',
'Unable to clone this project.' => 'Não foi possível clonar este projeto.', 'Unable to clone this project.' => 'Não foi possível clonar este projeto.',
'Email notifications' => 'Notificações por email', 'Email notifications' => 'Notificações por email',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Novo anexo adicionado "%s"', 'New attachment added "%s"' => 'Novo anexo adicionado "%s"',
'Comment updated' => 'Comentário atualizado', 'Comment updated' => 'Comentário atualizado',
'New comment posted by %s' => 'Novo comentário postado por %s', '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 attachment' => 'Novo anexo',
'New comment' => 'Novo comentário', 'New comment' => 'Novo comentário',
'New subtask' => 'Nova subtarefa', 'New subtask' => 'Nova subtarefa',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Tarefa alterada', 'Task updated' => 'Tarefa alterada',
'Task closed' => 'Tarefa finalizada', 'Task closed' => 'Tarefa finalizada',
'Task opened' => 'Tarefa aberta', '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:', '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', 'view the task on Kanboard' => 'ver a tarefa no Kanboard',
'Public access' => 'Acesso público', 'Public access' => 'Acesso público',
'Category management' => 'Gerenciamento de categorias',
'User management' => 'Gerenciamento de usuários', 'User management' => 'Gerenciamento de usuários',
'Active tasks' => 'Tarefas ativas', 'Active tasks' => 'Tarefas ativas',
'Disable public access' => 'Desabilitar o acesso público', 'Disable public access' => 'Desabilitar o acesso público',
'Enable public access' => 'Habilitar 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', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Você realmente deseja habilitar este projeto: "%s"?',
'Project activation' => 'Ativação do projeto', 'Project activation' => 'Ativação do projeto',
'Move the task to another project' => 'Mover a tarefa para outro 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', '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 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', '%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"', 'New password for the user "%s"' => 'Nova senha para o usuário "%s"',
'Choose an event' => 'Escolher um evento', 'Choose an event' => 'Escolher um evento',
'Github commit received' => 'Github commit received', 'Github commit received' => 'Github commit received',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Todos possuem acesso a este projeto.', 'Everybody have access to this project.' => 'Todos possuem acesso a este projeto.',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integração',
'Github webhooks' => 'Github webhooks', 'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Ajuda para o 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', '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', 'Github issue comment created' => 'Github issue comment created',
'Configure' => 'Configurar',
'Project management' => 'Gerenciamento de projetos', 'Project management' => 'Gerenciamento de projetos',
'My projects' => 'Meus projetos', 'My projects' => 'Meus projetos',
'Columns' => 'Colunas', 'Columns' => 'Colunas',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Redistribuição de usuário para "%s"', 'User repartition for "%s"' => 'Redistribuição de usuário para "%s"',
'Clone this project' => 'Clonar este projeto', 'Clone this project' => 'Clonar este projeto',
'Column removed successfully.' => 'Coluna removida com sucesso.', 'Column removed successfully.' => 'Coluna removida com sucesso.',
'Edit Project' => 'Editar projeto',
'Github Issue' => 'Github Issue', 'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Não há dados suficientes para mostrar o gráfico.', 'Not enough data to show the graph.' => 'Não há dados suficientes para mostrar o gráfico.',
'Previous' => 'Anterior', 'Previous' => 'Anterior',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Todos os swimlane', 'All swimlanes' => 'Todos os swimlane',
'All colors' => 'Todas as cores', 'All colors' => 'Todas as cores',
'All status' => 'Todos os status', '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', 'Moved to column %s' => 'Mover para a coluna %s',
'Change description' => 'Modificar a descrição', 'Change description' => 'Modificar a descrição',
'User dashboard' => 'Painel de Controle do usuário', 'User dashboard' => 'Painel de Controle do usuário',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Autenticação à fator duplo activado', 'Two factor authentication enabled' => 'Autenticação à fator duplo activado',
'Unable to update this user.' => 'Impossível de atualizar esse usuário.', 'Unable to update this user.' => 'Impossível de atualizar esse usuário.',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Нет пользователя', 'No user' => 'Нет пользователя',
'Forbidden' => 'Запрещено', 'Forbidden' => 'Запрещено',
'Access Forbidden' => 'Доступ запрещен', 'Access Forbidden' => 'Доступ запрещен',
'Only administrators can access to this page.' => 'Только администраторы могут войти на эту страницу.',
'Edit user' => 'Изменить пользователя', 'Edit user' => 'Изменить пользователя',
'Logout' => 'Выйти', 'Logout' => 'Выйти',
'Bad username or password' => 'Неверное имя пользователя или пароль', 'Bad username or password' => 'Неверное имя пользователя или пароль',
'users' => 'пользователи',
'projects' => 'проекты',
'Edit project' => 'Изменить проект', 'Edit project' => 'Изменить проект',
'Name' => 'Имя', 'Name' => 'Имя',
'Activated' => 'Активен',
'Projects' => 'Проекты', 'Projects' => 'Проекты',
'No project' => 'Нет проекта', 'No project' => 'Нет проекта',
'Project' => 'Проект', 'Project' => 'Проект',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Действия', 'Actions' => 'Действия',
'Inactive' => 'Неактивен', 'Inactive' => 'Неактивен',
'Active' => 'Активен', 'Active' => 'Активен',
'Column %d' => 'Колонка %d',
'Add this column' => 'Добавить колонку', 'Add this column' => 'Добавить колонку',
'%d tasks on the board' => 'Задач на доске - %d', '%d tasks on the board' => 'Задач на доске - %d',
'%d tasks in total' => 'Задач всего - %d', '%d tasks in total' => 'Задач всего - %d',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Новый проект', 'New project' => 'Новый проект',
'Do you really want to remove this project: "%s"?' => 'Вы точно хотите удалить проект: « %s » ?', 'Do you really want to remove this project: "%s"?' => 'Вы точно хотите удалить проект: « %s » ?',
'Remove project' => 'Удалить проект', 'Remove project' => 'Удалить проект',
'Boards' => 'Доски',
'Edit the board for "%s"' => 'Изменить доску для « %s »', 'Edit the board for "%s"' => 'Изменить доску для « %s »',
'All projects' => 'Все проекты', 'All projects' => 'Все проекты',
'Change columns' => 'Изменить колонки', 'Change columns' => 'Изменить колонки',
'Add a new column' => 'Добавить новую колонку', 'Add a new column' => 'Добавить новую колонку',
'Title' => 'Название', 'Title' => 'Название',
'Add Column' => 'Добавить колонку',
'Project "%s"' => 'Проект « %s »',
'Nobody assigned' => 'Никто не назначен', 'Nobody assigned' => 'Никто не назначен',
'Assigned to %s' => 'Исполнитель: %s', 'Assigned to %s' => 'Исполнитель: %s',
'Remove a column' => 'Удалить колонку', 'Remove a column' => 'Удалить колонку',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Язык', 'Language' => 'Язык',
'Webhook token:' => 'Webhooks токен :', 'Webhook token:' => 'Webhooks токен :',
'API token:' => 'API токен :', 'API token:' => 'API токен :',
'More information' => 'Подробнее',
'Database size:' => 'Размер базы данных :', 'Database size:' => 'Размер базы данных :',
'Download the database' => 'Скачать базу данных', 'Download the database' => 'Скачать базу данных',
'Optimize the database' => 'Оптимизировать базу данных', 'Optimize the database' => 'Оптимизировать базу данных',
'(VACUUM command)' => '(Команда VACUUM)', '(VACUUM command)' => '(Команда VACUUM)',
'(Gzip compressed Sqlite file)' => '(Сжать GZip файл SQLite)', '(Gzip compressed Sqlite file)' => '(Сжать GZip файл SQLite)',
'User settings' => 'Настройки пользователя',
'My default project:' => 'Мой проект по умолчанию:',
'Close a task' => 'Закрыть задачу', 'Close a task' => 'Закрыть задачу',
'Do you really want to close this task: "%s"?' => 'Вы точно хотите закрыть задачу: « %s » ?',
'Edit a task' => 'Изменить задачу', 'Edit a task' => 'Изменить задачу',
'Column' => 'Колонка', 'Column' => 'Колонка',
'Color' => 'Цвет', 'Color' => 'Цвет',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Требуется пароль', 'The password is required' => 'Требуется пароль',
'This value must be an integer' => 'Это значение должно быть целым', 'This value must be an integer' => 'Это значение должно быть целым',
'The username must be unique' => 'Требуется уникальное имя пользователя', 'The username must be unique' => 'Требуется уникальное имя пользователя',
'The username must be alphanumeric' => 'Имя пользователя должно быть буквенно-цифровым',
'The user id is required' => 'Требуется ID пользователя', 'The user id is required' => 'Требуется ID пользователя',
'Passwords don\'t match' => 'Пароли не совпадают', 'Passwords don\'t match' => 'Пароли не совпадают',
'The confirmation is required' => 'Требуется подтверждение', 'The confirmation is required' => 'Требуется подтверждение',
'The column is required' => 'Требуется колонка',
'The project is required' => 'Требуется проект', 'The project is required' => 'Требуется проект',
'The color is required' => 'Требуется цвет',
'The id is required' => 'Требуется ID', 'The id is required' => 'Требуется ID',
'The project id is required' => 'Требуется ID проекта', 'The project id is required' => 'Требуется ID проекта',
'The project name is required' => 'Требуется имя проекта', 'The project name is required' => 'Требуется имя проекта',
'This project must be unique' => 'Проект должен быть уникальным', 'This project must be unique' => 'Проект должен быть уникальным',
'The title is required' => 'Требуется заголовок', 'The title is required' => 'Требуется заголовок',
'The language is required' => 'Требуется язык',
'There is no active project, the first step is to create a new project.' => 'Нет активного проекта, сначала создайте новый проект.', 'There is no active project, the first step is to create a new project.' => 'Нет активного проекта, сначала создайте новый проект.',
'Settings saved successfully.' => 'Параметры успешно сохранены.', 'Settings saved successfully.' => 'Параметры успешно сохранены.',
'Unable to save your settings.' => 'Невозможно сохранить параметры.', 'Unable to save your settings.' => 'Невозможно сохранить параметры.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Дата создания', 'Date created' => 'Дата создания',
'Date completed' => 'Дата завершения', 'Date completed' => 'Дата завершения',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'Нет задачи',
'Completed tasks' => 'Завершенные задачи', 'Completed tasks' => 'Завершенные задачи',
'List of projects' => 'Список проектов',
'Completed tasks for "%s"' => 'Завершенные задачи для « %s »', 'Completed tasks for "%s"' => 'Завершенные задачи для « %s »',
'%d closed tasks' => '%d завершенных задач', '%d closed tasks' => '%d завершенных задач',
'No task for this project' => 'Нет задач для этого проекта', 'No task for this project' => 'Нет задач для этого проекта',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'К сожалению, информация в базе данных не найдена !', 'Sorry, I didn\'t find this information in my database!' => 'К сожалению, информация в базе данных не найдена !',
'Page not found' => 'Страница не найдена', 'Page not found' => 'Страница не найдена',
'Complexity' => 'Сложность', 'Complexity' => 'Сложность',
'limit' => 'лимит',
'Task limit' => 'Лимит задач', 'Task limit' => 'Лимит задач',
'Task count' => 'Количество задач', 'Task count' => 'Количество задач',
'This value must be greater than %d' => 'Это значение должно быть больше %d',
'Edit project access list' => 'Изменить доступ к проекту', 'Edit project access list' => 'Изменить доступ к проекту',
'Edit users access' => 'Изменить доступ пользователей',
'Allow this user' => 'Разрешить этого пользователя', 'Allow this user' => 'Разрешить этого пользователя',
'Only those users have access to this project:' => 'Только эти пользователи имеют доступ к проекту:',
'Don\'t forget that administrators have access to everything.' => 'Помните, администратор имеет неограниченные права.', 'Don\'t forget that administrators have access to everything.' => 'Помните, администратор имеет неограниченные права.',
'Revoke' => 'Отозвать', 'Revoke' => 'Отозвать',
'List of authorized users' => 'Список авторизованных пользователей', 'List of authorized users' => 'Список авторизованных пользователей',
'User' => 'Пользователь', 'User' => 'Пользователь',
'Nobody have access to this project.' => 'Ни у кого нет доступа к этому проекту', 'Nobody have access to this project.' => 'Ни у кого нет доступа к этому проекту',
'You are not allowed to access to this project.' => 'Вам запрещен доступ к этому проекту.',
'Comments' => 'Комментарии', 'Comments' => 'Комментарии',
'Post comment' => 'Оставить комментарий',
'Write your text in Markdown' => 'Справка по синтаксису Markdown', 'Write your text in Markdown' => 'Справка по синтаксису Markdown',
'Leave a comment' => 'Оставить комментарий 2', 'Leave a comment' => 'Оставить комментарий 2',
'Comment is required' => 'Нужен комментарий', 'Comment is required' => 'Нужен комментарий',
'Leave a description' => 'Напишите описание', 'Leave a description' => 'Напишите описание',
'Comment added successfully.' => 'Комментарий успешно добавлен.', 'Comment added successfully.' => 'Комментарий успешно добавлен.',
'Unable to create your comment.' => 'Невозможно создать комментарий.', 'Unable to create your comment.' => 'Невозможно создать комментарий.',
'The description is required' => 'Требуется описание',
'Edit this task' => 'Изменить задачу', 'Edit this task' => 'Изменить задачу',
'Due Date' => 'Сделать до', 'Due Date' => 'Сделать до',
'Invalid date' => 'Неверная дата', 'Invalid date' => 'Неверная дата',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Сохранить это действие', 'Save this action' => 'Сохранить это действие',
'Do you really want to remove this action: "%s"?' => 'Вы точно хотите удалить это действие: « %s » ?', 'Do you really want to remove this action: "%s"?' => 'Вы точно хотите удалить это действие: « %s » ?',
'Remove an automatic action' => 'Удалить автоматическое действие', 'Remove an automatic action' => 'Удалить автоматическое действие',
'Close the task' => 'Закрыть задачу',
'Assign the task to a specific user' => 'Назначить задачу определенному пользователю', 'Assign the task to a specific user' => 'Назначить задачу определенному пользователю',
'Assign the task to the person who does the action' => 'Назначить задачу тому кто выполнит действие', 'Assign the task to the person who does the action' => 'Назначить задачу тому кто выполнит действие',
'Duplicate the task to another project' => 'Создать дубликат задачи в другом проекте', 'Duplicate the task to another project' => 'Создать дубликат задачи в другом проекте',
'Move a task to another column' => 'Переместить задачу в другую колонку', 'Move a task to another column' => 'Переместить задачу в другую колонку',
'Move a task to another position in the same column' => 'Переместить задачу в другое место этой же колонки',
'Task modification' => 'Изменение задачи', 'Task modification' => 'Изменение задачи',
'Task creation' => 'Создание задачи', 'Task creation' => 'Создание задачи',
'Open a closed task' => 'Открыть завершенную задачу',
'Closing a task' => 'Завершение задачи', 'Closing a task' => 'Завершение задачи',
'Assign a color to a specific user' => 'Назначить определенный цвет пользователю', 'Assign a color to a specific user' => 'Назначить определенный цвет пользователю',
'Column title' => 'Название колонки', 'Column title' => 'Название колонки',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Клонировать в другой проект', 'Duplicate to another project' => 'Клонировать в другой проект',
'Duplicate' => 'Клонировать', 'Duplicate' => 'Клонировать',
'link' => 'ссылка', 'link' => 'ссылка',
'Update this comment' => 'Обновить комментарий',
'Comment updated successfully.' => 'Комментарий обновлен.', 'Comment updated successfully.' => 'Комментарий обновлен.',
'Unable to update your comment.' => 'Не удалось обновить ваш комментарий.', 'Unable to update your comment.' => 'Не удалось обновить ваш комментарий.',
'Remove a comment' => 'Удалить комментарий', 'Remove a comment' => 'Удалить комментарий',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Не удалось удалить этот комментарий.', 'Unable to remove this comment.' => 'Не удалось удалить этот комментарий.',
'Do you really want 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.' => 'Только администратор и автор комментария имеют доступ к этой странице.', 'Only administrators or the creator of the comment can access to this page.' => 'Только администратор и автор комментария имеют доступ к этой странице.',
'Details' => 'Подробности',
'Current password for the user "%s"' => 'Текущий пароль для пользователя « %s »', 'Current password for the user "%s"' => 'Текущий пароль для пользователя « %s »',
'The current password is required' => 'Требуется текущий пароль', 'The current password is required' => 'Требуется текущий пароль',
'Wrong password' => 'Неверный пароль', 'Wrong password' => 'Неверный пароль',
'Reset all tokens' => 'Сброс всех токенов',
'All tokens have been regenerated.' => 'Все токены пересозданы.',
'Unknown' => 'Неизвестно', 'Unknown' => 'Неизвестно',
'Last logins' => 'Последние посещения', 'Last logins' => 'Последние посещения',
'Login date' => 'Дата входа', 'Login date' => 'Дата входа',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Отвязать мой профиль от Google', 'Unlink my Google Account' => 'Отвязать мой профиль от Google',
'Login with my Google Account' => 'Аутентификация через Google', 'Login with my Google Account' => 'Аутентификация через Google',
'Project not found.' => 'Проект не найден.', 'Project not found.' => 'Проект не найден.',
'Task #%d' => 'Задача n°%d',
'Task removed successfully.' => 'Задача удалена.', 'Task removed successfully.' => 'Задача удалена.',
'Unable to remove this task.' => 'Не удалось удалить эту задачу.', 'Unable to remove this task.' => 'Не удалось удалить эту задачу.',
'Remove a task' => 'Удалить задачу', 'Remove a task' => 'Удалить задачу',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Не удалось удалить категорию.', 'Unable to remove this category.' => 'Не удалось удалить категорию.',
'Category modification for the project "%s"' => 'Изменение категории для проекта « %s »', 'Category modification for the project "%s"' => 'Изменение категории для проекта « %s »',
'Category Name' => 'Название категории', 'Category Name' => 'Название категории',
'Categories for the project "%s"' => 'Категории для проекта « %s »',
'Add a new category' => 'Добавить новую категорию', 'Add a new category' => 'Добавить новую категорию',
'Do you really want to remove this category: "%s"?' => 'Вы точно хотите удалить категорию « %s » ?', 'Do you really want to remove this category: "%s"?' => 'Вы точно хотите удалить категорию « %s » ?',
'Filter by category' => 'Фильтр по категориям', 'Filter by category' => 'Фильтр по категориям',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Дата изменения', 'Modification date' => 'Дата изменения',
'Completion date' => 'Дата завершения', 'Completion date' => 'Дата завершения',
'Clone' => 'Клонировать', 'Clone' => 'Клонировать',
'Clone Project' => 'Клонировать проект',
'Project cloned successfully.' => 'Проект клонирован.', 'Project cloned successfully.' => 'Проект клонирован.',
'Unable to clone this project.' => 'Не удалось клонировать проект.', 'Unable to clone this project.' => 'Не удалось клонировать проект.',
'Email notifications' => 'Уведомления по e-mail', 'Email notifications' => 'Уведомления по e-mail',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Добавлено вложение « %s »', 'New attachment added "%s"' => 'Добавлено вложение « %s »',
'Comment updated' => 'Комментарий обновлен', 'Comment updated' => 'Комментарий обновлен',
'New comment posted by %s' => 'Новый комментарий написан « %s »', 'New comment posted by %s' => 'Новый комментарий написан « %s »',
'List of due tasks for the project "%s"' => 'Список сроков к проекту « %s »',
'New attachment' => 'Новое вложение', 'New attachment' => 'Новое вложение',
'New comment' => 'Новый комментарий', 'New comment' => 'Новый комментарий',
'New subtask' => 'Новая подзадача', 'New subtask' => 'Новая подзадача',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Задача обновлена', 'Task updated' => 'Задача обновлена',
'Task closed' => 'Задача закрыта', 'Task closed' => 'Задача закрыта',
'Task opened' => 'Задача открыта', 'Task opened' => 'Задача открыта',
'[%s][Due tasks]' => '[%s][Текущие задачи]',
'[Kanboard] Notification' => '[Kanboard] Оповещение',
'I want to receive notifications only for those projects:' => 'Я хочу получать уведомления только по этим проектам:', 'I want to receive notifications only for those projects:' => 'Я хочу получать уведомления только по этим проектам:',
'view the task on Kanboard' => 'посмотреть задачу на Kanboard', 'view the task on Kanboard' => 'посмотреть задачу на Kanboard',
'Public access' => 'Общий доступ', 'Public access' => 'Общий доступ',
'Category management' => 'Управление категориями',
'User management' => 'Управление пользователями', 'User management' => 'Управление пользователями',
'Active tasks' => 'Активные задачи', 'Active tasks' => 'Активные задачи',
'Disable public access' => 'Отключить общий доступ', 'Disable public access' => 'Отключить общий доступ',
'Enable public access' => 'Включить общий доступ', 'Enable public access' => 'Включить общий доступ',
'Active projects' => 'Активные проекты',
'Inactive projects' => 'Неактивные проекты',
'Public access disabled' => 'Общий доступ отключен', 'Public access disabled' => 'Общий доступ отключен',
'Do you really want to disable this project: "%s"?' => 'Вы точно хотите деактивировать проект: "%s"?', '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"?', 'Do you really want to enable this project: "%s"?' => 'Вы точно хотите активировать проект: "%s"?',
'Project activation' => 'Активация проекта', 'Project activation' => 'Активация проекта',
'Move the task to another project' => 'Переместить задачу в другой проект', 'Move the task to another project' => 'Переместить задачу в другой проект',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Изменен назначенный', 'Task assignee change' => 'Изменен назначенный',
'%s change the assignee of the task #%d to %s' => '%s сменил назначенного для задачи #%d на %s', '%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', '%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"', 'New password for the user "%s"' => 'Новый пароль для пользователя "%s"',
'Choose an event' => 'Выберите событие', 'Choose an event' => 'Выберите событие',
'Github commit received' => 'GitHub: коммит получен', 'Github commit received' => 'GitHub: коммит получен',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Любой может получить доступ к этому проекту.', 'Everybody have access to this project.' => 'Любой может получить доступ к этому проекту.',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Интеграция',
'Github webhooks' => 'GitHub webhooks', 'Github webhooks' => 'GitHub webhooks',
'Help on Github webhooks' => 'Помощь по GitHub webhooks', 'Help on Github webhooks' => 'Помощь по GitHub webhooks',
'Create a comment from an external provider' => 'Создать комментарий из внешнего источника', 'Create a comment from an external provider' => 'Создать комментарий из внешнего источника',
'Github issue comment created' => 'Github issue комментарий создан', 'Github issue comment created' => 'Github issue комментарий создан',
'Configure' => 'Настройки',
'Project management' => 'Управление проектом', 'Project management' => 'Управление проектом',
'My projects' => 'Мои проекты', 'My projects' => 'Мои проекты',
'Columns' => 'Колонки', 'Columns' => 'Колонки',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Перераспределение пользователей для "%s"', 'User repartition for "%s"' => 'Перераспределение пользователей для "%s"',
'Clone this project' => 'Клонировать проект', 'Clone this project' => 'Клонировать проект',
'Column removed successfully.' => 'Колонка успешно удалена.', 'Column removed successfully.' => 'Колонка успешно удалена.',
'Edit Project' => 'Редактировать Проект',
// 'Github Issue' => '', // 'Github Issue' => '',
'Not enough data to show the graph.' => 'Недостаточно данных, чтобы показать график.', 'Not enough data to show the graph.' => 'Недостаточно данных, чтобы показать график.',
'Previous' => 'Предыдущий', 'Previous' => 'Предыдущий',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Все дорожки', 'All swimlanes' => 'Все дорожки',
'All colors' => 'Все цвета', 'All colors' => 'Все цвета',
'All status' => 'Все статусы', 'All status' => 'Все статусы',
'Add a comment logging moving the task between columns' => 'Добавлять комментарий при движении задач между колонками',
'Moved to column %s' => 'Перемещена в колонку %s', 'Moved to column %s' => 'Перемещена в колонку %s',
'Change description' => 'Изменить описание', 'Change description' => 'Изменить описание',
'User dashboard' => 'Пользователь панели мониторинга', 'User dashboard' => 'Пользователь панели мониторинга',
@@ -922,4 +873,74 @@ return array(
'Two factor authentication enabled' => 'Включена двухфакторная аутентификация', 'Two factor authentication enabled' => 'Включена двухфакторная аутентификация',
'Unable to update this user.' => 'Не удается обновить этого пользователя.', 'Unable to update this user.' => 'Не удается обновить этого пользователя.',
'There is no user management for private projects.' => 'Там нет управления пользователя для частных проектов', '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Ne', 'No user' => 'Ne',
'Forbidden' => 'Zabranjeno', 'Forbidden' => 'Zabranjeno',
'Access Forbidden' => 'Zabranjen prostup', 'Access Forbidden' => 'Zabranjen prostup',
'Only administrators can access to this page.' => 'Samo administrator može videti ovu stranu.',
'Edit user' => 'Izmeni korisnika', 'Edit user' => 'Izmeni korisnika',
'Logout' => 'Odjava', 'Logout' => 'Odjava',
'Bad username or password' => 'Loše korisničko ime ili lozinka', 'Bad username or password' => 'Loše korisničko ime ili lozinka',
'users' => 'korisnici',
'projects' => 'projekti',
'Edit project' => 'Izmeni projekat', 'Edit project' => 'Izmeni projekat',
'Name' => 'Ime', 'Name' => 'Ime',
'Activated' => 'Aktiviran',
'Projects' => 'Projekti', 'Projects' => 'Projekti',
'No project' => 'Bez projekta', 'No project' => 'Bez projekta',
'Project' => 'Projekat', 'Project' => 'Projekat',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Akcje', 'Actions' => 'Akcje',
'Inactive' => 'Neaktivan', 'Inactive' => 'Neaktivan',
'Active' => 'Aktivan', 'Active' => 'Aktivan',
'Column %d' => 'Kolona %d',
'Add this column' => 'Dodaj kolonu', 'Add this column' => 'Dodaj kolonu',
'%d tasks on the board' => '%d zadataka na tabli', '%d tasks on the board' => '%d zadataka na tabli',
'%d tasks in total' => '%d zadataka ukupno', '%d tasks in total' => '%d zadataka ukupno',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Novi projekat', 'New project' => 'Novi projekat',
'Do you really want to remove this project: "%s"?' => 'Da li želiš da ukloniš projekat: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Da li želiš da ukloniš projekat: "%s"?',
'Remove project' => 'Ukloni projekat', 'Remove project' => 'Ukloni projekat',
'Boards' => 'Table',
'Edit the board for "%s"' => 'Izmeni tablu za "%s"', 'Edit the board for "%s"' => 'Izmeni tablu za "%s"',
'All projects' => 'Svi projekti', 'All projects' => 'Svi projekti',
'Change columns' => 'Zameni kolonu', 'Change columns' => 'Zameni kolonu',
'Add a new column' => 'Dodaj novu kolonu', 'Add a new column' => 'Dodaj novu kolonu',
'Title' => 'Naslov', 'Title' => 'Naslov',
'Add Column' => 'Dodaj kolunu',
'Project "%s"' => 'Projekt "%s"',
'Nobody assigned' => 'Niko nije dodeljen', 'Nobody assigned' => 'Niko nije dodeljen',
'Assigned to %s' => 'Dodeljen korisniku %s', 'Assigned to %s' => 'Dodeljen korisniku %s',
'Remove a column' => 'Ukloni kolonu', 'Remove a column' => 'Ukloni kolonu',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Jezik', 'Language' => 'Jezik',
'Webhook token:' => 'Token :', 'Webhook token:' => 'Token :',
'API token:' => 'Token za API', 'API token:' => 'Token za API',
'More information' => 'Još informacja',
'Database size:' => 'Veličina baze :', 'Database size:' => 'Veličina baze :',
'Download the database' => 'Preuzmi bazu', 'Download the database' => 'Preuzmi bazu',
'Optimize the database' => 'Optimizuj bazu', 'Optimize the database' => 'Optimizuj bazu',
'(VACUUM command)' => '(komanda VACUUM)', '(VACUUM command)' => '(komanda VACUUM)',
'(Gzip compressed Sqlite file)' => '(Sqlite baza spakovana Gzip-om)', '(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', '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', 'Edit a task' => 'Izmeni zadatak',
'Column' => 'Kolona', 'Column' => 'Kolona',
'Color' => 'Boja', 'Color' => 'Boja',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Lozinka je obavezna', 'The password is required' => 'Lozinka je obavezna',
'This value must be an integer' => 'Mora biti ceo broj', '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 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', 'The user id is required' => 'ID korisnika je obavezan',
'Passwords don\'t match' => 'Lozinke se ne podudaraju', 'Passwords don\'t match' => 'Lozinke se ne podudaraju',
'The confirmation is required' => 'Potvrda je obavezna', 'The confirmation is required' => 'Potvrda je obavezna',
'The column is required' => 'Kolona je obavezna',
'The project is required' => 'Projekat je obavezan', 'The project is required' => 'Projekat je obavezan',
'The color is required' => 'Boja je obavezna',
'The id is required' => 'ID je obavezan', 'The id is required' => 'ID je obavezan',
'The project id is required' => 'ID projekta je obavezan', 'The project id is required' => 'ID projekta je obavezan',
'The project name is required' => 'Naziv projekta je obavezan', 'The project name is required' => 'Naziv projekta je obavezan',
'This project must be unique' => 'Projekat mora biti jedinstven', 'This project must be unique' => 'Projekat mora biti jedinstven',
'The title is required' => 'Naslov je obavezan', '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.', '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.', 'Settings saved successfully.' => 'Podešavanja uspešno snimljena.',
'Unable to save your settings.' => 'Nemoguće snimanje podešavanja.', 'Unable to save your settings.' => 'Nemoguće snimanje podešavanja.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Kreiran dana', 'Date created' => 'Kreiran dana',
'Date completed' => 'Završen dana', 'Date completed' => 'Završen dana',
'Id' => 'Id', 'Id' => 'Id',
'No task' => 'bez zadataka',
'Completed tasks' => 'Zatvoreni zadaci', 'Completed tasks' => 'Zatvoreni zadaci',
'List of projects' => 'Spisak projekata',
'Completed tasks for "%s"' => 'zatvoreni zadaci za "%s"', 'Completed tasks for "%s"' => 'zatvoreni zadaci za "%s"',
'%d closed tasks' => '%d zatvorenih zadataka', '%d closed tasks' => '%d zatvorenih zadataka',
'No task for this project' => 'Nema dodeljenih zadataka ovom projektu', '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', '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', 'Page not found' => 'Strana nije pronađena',
'Complexity' => 'Složenost', 'Complexity' => 'Složenost',
'limit' => 'ograničenje',
'Task limit' => 'Ograničenje zadatka', 'Task limit' => 'Ograničenje zadatka',
'Task count' => 'Broj zadataka', '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 project access list' => 'Izmeni prava pristupa projektu',
'Edit users access' => 'Izmeni korisnička prava',
'Allow this user' => 'Dozvoli ovog korisnika', '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!', 'Don\'t forget that administrators have access to everything.' => 'Zapamti: Administrator može pristupiti svemu!',
'Revoke' => 'Povuci', 'Revoke' => 'Povuci',
'List of authorized users' => 'Spisak odobrenih korisnika', 'List of authorized users' => 'Spisak odobrenih korisnika',
'User' => 'Korisnik', 'User' => 'Korisnik',
'Nobody have access to this project.' => 'Niko nema pristup ovom projektu', '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', 'Comments' => 'Komentari',
'Post comment' => 'Dodaj komentar',
'Write your text in Markdown' => 'Pisanje teksta pomoću Markdown', 'Write your text in Markdown' => 'Pisanje teksta pomoću Markdown',
'Leave a comment' => 'Ostavi komentar', 'Leave a comment' => 'Ostavi komentar',
'Comment is required' => 'Komentar je obavezan', 'Comment is required' => 'Komentar je obavezan',
'Leave a description' => 'Dodaj opis', 'Leave a description' => 'Dodaj opis',
'Comment added successfully.' => 'Komentar uspešno ostavljen', 'Comment added successfully.' => 'Komentar uspešno ostavljen',
'Unable to create your comment.' => 'Nemoguće kreiranje komentara', 'Unable to create your comment.' => 'Nemoguće kreiranje komentara',
'The description is required' => 'Opis je obavezan',
'Edit this task' => 'Izmeni ovaj zadatak', 'Edit this task' => 'Izmeni ovaj zadatak',
'Due Date' => 'Termin', 'Due Date' => 'Termin',
'Invalid date' => 'Loš datum', 'Invalid date' => 'Loš datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Snimi akciju', 'Save this action' => 'Snimi akciju',
'Do you really want to remove this action: "%s"?' => 'Da li da obrišem akciju "%s"?', 'Do you really want to remove this action: "%s"?' => 'Da li da obrišem akciju "%s"?',
'Remove an automatic action' => 'Obriši automatsku akciju', '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 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', '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', '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 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 modification' => 'Izman zadatka',
'Task creation' => 'Kreiranje zadatka', 'Task creation' => 'Kreiranje zadatka',
'Open a closed task' => 'Otvori zatvoreni zadatak',
'Closing a task' => 'Zatvaranja zadatka', 'Closing a task' => 'Zatvaranja zadatka',
'Assign a color to a specific user' => 'Dodeli boju korisniku', 'Assign a color to a specific user' => 'Dodeli boju korisniku',
'Column title' => 'Naslov kolone', 'Column title' => 'Naslov kolone',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopiraj u drugi projekat', 'Duplicate to another project' => 'Kopiraj u drugi projekat',
'Duplicate' => 'Napravi kopiju', 'Duplicate' => 'Napravi kopiju',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Ažuriraj komentar',
'Comment updated successfully.' => 'Komentar uspešno ažuriran.', 'Comment updated successfully.' => 'Komentar uspešno ažuriran.',
'Unable to update your comment.' => 'Neuspešno ažuriranje komentara.', 'Unable to update your comment.' => 'Neuspešno ažuriranje komentara.',
'Remove a comment' => 'Obriši komentar', 'Remove a comment' => 'Obriši komentar',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Neuspešno brisanje komentara.', 'Unable to remove this comment.' => 'Neuspešno brisanje komentara.',
'Do you really want to remove this comment?' => 'Da li da obrišem ovaj komentar?', '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.', '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"', 'Current password for the user "%s"' => 'Trenutna lozinka za korisnika "%s"',
'The current password is required' => 'Trenutna lozinka je obavezna', 'The current password is required' => 'Trenutna lozinka je obavezna',
'Wrong password' => 'Pogrešna lozinka', 'Wrong password' => 'Pogrešna lozinka',
'Reset all tokens' => 'Resetuj tokene',
'All tokens have been regenerated.' => 'Svi tokeni su ponovo generisani.',
'Unknown' => 'Nepoznat', 'Unknown' => 'Nepoznat',
'Last logins' => 'Poslednja prijava', 'Last logins' => 'Poslednja prijava',
'Login date' => 'Datum prijave', 'Login date' => 'Datum prijave',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ukini vezu sa Google nalogom', 'Unlink my Google Account' => 'Ukini vezu sa Google nalogom',
'Login with my Google Account' => 'Prijavi se preko Google naloga', 'Login with my Google Account' => 'Prijavi se preko Google naloga',
'Project not found.' => 'Projekat nije pronađen.', 'Project not found.' => 'Projekat nije pronađen.',
'Task #%d' => 'Zadatak #%d',
'Task removed successfully.' => 'Zadatak uspešno uklonjen.', 'Task removed successfully.' => 'Zadatak uspešno uklonjen.',
'Unable to remove this task.' => 'Nemoguće uklanjanje zadatka.', 'Unable to remove this task.' => 'Nemoguće uklanjanje zadatka.',
'Remove a task' => 'Ukloni zadatak', 'Remove a task' => 'Ukloni zadatak',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Nije moguće ukloniti kategoriju.', 'Unable to remove this category.' => 'Nije moguće ukloniti kategoriju.',
'Category modification for the project "%s"' => 'Izmena kategorije za projekat "%s"', 'Category modification for the project "%s"' => 'Izmena kategorije za projekat "%s"',
'Category Name' => 'Naziv kategorije', 'Category Name' => 'Naziv kategorije',
'Categories for the project "%s"' => 'Kategorije u projektu "%s"',
'Add a new category' => 'Dodaj novu kategoriju', 'Add a new category' => 'Dodaj novu kategoriju',
'Do you really want to remove this category: "%s"?' => 'Da li zaista želiš da ukloniš kategoriju: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Da li zaista želiš da ukloniš kategoriju: "%s"?',
'Filter by category' => 'Po kategoriji', 'Filter by category' => 'Po kategoriji',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Datum izmene', 'Modification date' => 'Datum izmene',
'Completion date' => 'Datum kompletiranja', 'Completion date' => 'Datum kompletiranja',
'Clone' => 'Iskopiraj', 'Clone' => 'Iskopiraj',
'Clone Project' => 'Iskopiraj projekat',
'Project cloned successfully.' => 'Projekat uspešno iskopiran.', 'Project cloned successfully.' => 'Projekat uspešno iskopiran.',
'Unable to clone this project.' => 'Nije moguće iskopirati projekat.', 'Unable to clone this project.' => 'Nije moguće iskopirati projekat.',
'Email notifications' => 'Obaveštenje e-mailom', 'Email notifications' => 'Obaveštenje e-mailom',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Novi prilog ubačen "%s"', 'New attachment added "%s"' => 'Novi prilog ubačen "%s"',
'Comment updated' => 'Komentar izmenjen', 'Comment updated' => 'Komentar izmenjen',
'New comment posted by %s' => 'Novi komentar ostavio %s', '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 attachment' => '',
// 'New comment' => '', // 'New comment' => '',
// 'New subtask' => '', // 'New subtask' => '',
@@ -415,21 +379,15 @@ return array(
// 'Task updated' => '', // 'Task updated' => '',
'Task closed' => 'Zadatak je zatvoren', 'Task closed' => 'Zadatak je zatvoren',
'Task opened' => 'Zadatak je otvoren', '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:', 'I want to receive notifications only for those projects:' => 'Želim obaveštenja samo za ovaj projekat:',
'view the task on Kanboard' => 'Pregledaj zadatke', 'view the task on Kanboard' => 'Pregledaj zadatke',
'Public access' => 'Javni pristup', 'Public access' => 'Javni pristup',
'Category management' => 'Uređivanje kategorija',
'User management' => 'Uređivanje korisnika', 'User management' => 'Uređivanje korisnika',
'Active tasks' => 'Aktivni zadaci', 'Active tasks' => 'Aktivni zadaci',
'Disable public access' => 'Zabrani javni pristup', 'Disable public access' => 'Zabrani javni pristup',
'Enable public access' => 'Dozvoli javni pristup', 'Enable public access' => 'Dozvoli javni pristup',
'Active projects' => 'Aktivni projekti',
'Inactive projects' => 'Neaktivni projekti',
'Public access disabled' => 'Javni pristup onemogućen!', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Da li zaista želiš da aktiviraš projekat: "%s"?',
'Project activation' => 'Aktivacija projekta', 'Project activation' => 'Aktivacija projekta',
'Move the task to another project' => 'Premesti zadatak u drugi projekat', 'Move the task to another project' => 'Premesti zadatak u drugi projekat',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'Zmień osobę odpowiedzialną', '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 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', '%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"', 'New password for the user "%s"' => 'Nova lozinka za korisnika "%s"',
'Choose an event' => 'Izaberi događaj', 'Choose an event' => 'Izaberi događaj',
// 'Github commit received' => '', // 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Svima je dozvoljen pristup.', 'Everybody have access to this project.' => 'Svima je dozvoljen pristup.',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
'Integration' => 'Integracja',
// 'Github webhooks' => '', // 'Github webhooks' => '',
// 'Help on Github webhooks' => '', // 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '', // 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '', // 'Github issue comment created' => '',
'Configure' => 'Podesi',
'Project management' => 'Uređivanje projekata', 'Project management' => 'Uređivanje projekata',
'My projects' => 'Moji projekti', 'My projects' => 'Moji projekti',
'Columns' => 'Kolone', 'Columns' => 'Kolone',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Zaduženja korisnika za "%s"', 'User repartition for "%s"' => 'Zaduženja korisnika za "%s"',
'Clone this project' => 'Kopiraj projekat', 'Clone this project' => 'Kopiraj projekat',
'Column removed successfully.' => 'Kolumna usunięta pomyslnie.', 'Column removed successfully.' => 'Kolumna usunięta pomyslnie.',
'Edit Project' => 'Izmeni projekat',
// 'Github Issue' => '', // 'Github Issue' => '',
'Not enough data to show the graph.' => 'Nedovoljno podataka za grafikon.', 'Not enough data to show the graph.' => 'Nedovoljno podataka za grafikon.',
'Previous' => 'Prethodni', 'Previous' => 'Prethodni',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Svi razdelniki', 'All swimlanes' => 'Svi razdelniki',
'All colors' => 'Sve boje', 'All colors' => 'Sve boje',
'All status' => 'Svi statusi', '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', 'Moved to column %s' => 'Premešten u kolonu %s',
// 'Change description' => '', // 'Change description' => '',
'User dashboard' => 'Korisnički panel', 'User dashboard' => 'Korisnički panel',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Ingen användare', 'No user' => 'Ingen användare',
'Forbidden' => 'Ej tillåten', 'Forbidden' => 'Ej tillåten',
'Access 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', 'Edit user' => 'Ändra användare',
'Logout' => 'Logga ut', 'Logout' => 'Logga ut',
'Bad username or password' => 'Fel användarnamn eller lösenord', 'Bad username or password' => 'Fel användarnamn eller lösenord',
'users' => 'Användare',
'projects' => 'projekt',
'Edit project' => 'Ändra projekt', 'Edit project' => 'Ändra projekt',
'Name' => 'Namn', 'Name' => 'Namn',
'Activated' => 'Aktiverad',
'Projects' => 'Projekt', 'Projects' => 'Projekt',
'No project' => 'Inget projekt', 'No project' => 'Inget projekt',
'Project' => 'Tavlor för projekt och planering', 'Project' => 'Tavlor för projekt och planering',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'Åtgärder', 'Actions' => 'Åtgärder',
'Inactive' => 'Inaktiv', 'Inactive' => 'Inaktiv',
'Active' => 'Aktiv', 'Active' => 'Aktiv',
'Column %d' => 'Kolumn %d',
'Add this column' => 'Lägg till kolumnen', 'Add this column' => 'Lägg till kolumnen',
'%d tasks on the board' => '%d uppgifter på tavlan', '%d tasks on the board' => '%d uppgifter på tavlan',
'%d tasks in total' => '%d uppgifter totalt', '%d tasks in total' => '%d uppgifter totalt',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Nytt projekt', 'New project' => 'Nytt projekt',
'Do you really want to remove this project: "%s"?' => 'Vill du verkligen ta bort projektet: "%s" ?', 'Do you really want to remove this project: "%s"?' => 'Vill du verkligen ta bort projektet: "%s" ?',
'Remove project' => 'Ta bort projekt', 'Remove project' => 'Ta bort projekt',
'Boards' => 'Tavlor',
'Edit the board for "%s"' => 'Ändra tavlan för "%s"', 'Edit the board for "%s"' => 'Ändra tavlan för "%s"',
'All projects' => 'Alla projekt', 'All projects' => 'Alla projekt',
'Change columns' => 'Ändra kolumner', 'Change columns' => 'Ändra kolumner',
'Add a new column' => 'Lägg till ny kolumn', 'Add a new column' => 'Lägg till ny kolumn',
'Title' => 'Titel', 'Title' => 'Titel',
'Add Column' => 'Lägg till kolumn',
'Project "%s"' => 'Tavlan "%s" är aktiv',
'Nobody assigned' => 'Ingen tilldelad', 'Nobody assigned' => 'Ingen tilldelad',
'Assigned to %s' => 'Tilldelad %s', 'Assigned to %s' => 'Tilldelad %s',
'Remove a column' => 'Ta bort en kolumn', 'Remove a column' => 'Ta bort en kolumn',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Språk', 'Language' => 'Språk',
'Webhook token:' => 'Token för webhooks:', 'Webhook token:' => 'Token för webhooks:',
'API token:' => 'API token:', 'API token:' => 'API token:',
'More information' => 'Mer information',
'Database size:' => 'Databasstorlek:', 'Database size:' => 'Databasstorlek:',
'Download the database' => 'Ladda ner databasen', 'Download the database' => 'Ladda ner databasen',
'Optimize the database' => 'Optimera databasen', 'Optimize the database' => 'Optimera databasen',
'(VACUUM command)' => '(Vacuum kommando)', '(VACUUM command)' => '(Vacuum kommando)',
'(Gzip compressed Sqlite file)' => '(Gzip komprimera Sqlite filen)', '(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', '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', 'Edit a task' => 'Ändra en uppgift',
'Column' => 'Kolumn', 'Column' => 'Kolumn',
'Color' => 'Färg', 'Color' => 'Färg',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Lösenordet måste anges.', 'The password is required' => 'Lösenordet måste anges.',
'This value must be an integer' => 'Detta värde måste vara ett heltal.', '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 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', 'The user id is required' => 'Användar-ID måste anges',
'Passwords don\'t match' => 'Lösenorden matchar inte', 'Passwords don\'t match' => 'Lösenorden matchar inte',
'The confirmation is required' => 'Bekräftelse behövs.', '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 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 id is required' => 'Aktuellt ID måste anges',
'The project id is required' => 'Projekt-ID måste anges', 'The project id is required' => 'Projekt-ID måste anges',
'The project name is required' => 'Ett projektnamn måste anges', 'The project name is required' => 'Ett projektnamn måste anges',
'This project must be unique' => 'Detta projekt måste vara unikt', 'This project must be unique' => 'Detta projekt måste vara unikt',
'The title is required' => 'En titel måste anges.', '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', '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.', 'Settings saved successfully.' => 'Inställningarna har sparats.',
'Unable to save your settings.' => 'Kunde inte spara dina ändringar', 'Unable to save your settings.' => 'Kunde inte spara dina ändringar',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Skapat datum', 'Date created' => 'Skapat datum',
'Date completed' => 'Slutfört datum', 'Date completed' => 'Slutfört datum',
'Id' => 'ID', 'Id' => 'ID',
'No task' => 'Ingen uppgift',
'Completed tasks' => 'Slutförda uppgifter', 'Completed tasks' => 'Slutförda uppgifter',
'List of projects' => 'Lista med projekt',
'Completed tasks for "%s"' => 'Slutföra uppgifter för "%s"', 'Completed tasks for "%s"' => 'Slutföra uppgifter för "%s"',
'%d closed tasks' => '%d stängda uppgifter', '%d closed tasks' => '%d stängda uppgifter',
'No task for this project' => 'Inga uppgifter i detta projekt', '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.', 'Sorry, I didn\'t find this information in my database!' => 'Informationen kunde inte hittas i databasen.',
'Page not found' => 'Sidan hittas inte', 'Page not found' => 'Sidan hittas inte',
'Complexity' => 'Komplexitet', 'Complexity' => 'Komplexitet',
'limit' => 'max',
'Task limit' => 'Uppgiftsbegränsning', 'Task limit' => 'Uppgiftsbegränsning',
'Task count' => 'Antal uppgifter', '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 project access list' => 'Ändra projektåtkomst lista',
'Edit users access' => 'Användaråtkomst',
'Allow this user' => 'Tillåt användare', '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.', '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', 'Revoke' => 'Dra tillbaka behörighet',
'List of authorized users' => 'Lista med behöriga användare', 'List of authorized users' => 'Lista med behöriga användare',
'User' => 'Användare', 'User' => 'Användare',
'Nobody have access to this project.' => 'Ingen har tillgång till detta projekt.', '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', 'Comments' => 'Kommentarer',
'Post comment' => 'Ladda upp kommentar',
'Write your text in Markdown' => 'Exempelsyntax för text', 'Write your text in Markdown' => 'Exempelsyntax för text',
'Leave a comment' => 'Lämna en kommentar', 'Leave a comment' => 'Lämna en kommentar',
'Comment is required' => 'En kommentar måste lämnas', 'Comment is required' => 'En kommentar måste lämnas',
'Leave a description' => 'Lämna en beskrivning', 'Leave a description' => 'Lämna en beskrivning',
'Comment added successfully.' => 'Kommentaren har lagts till.', 'Comment added successfully.' => 'Kommentaren har lagts till.',
'Unable to create your comment.' => 'Kommentaren kunde inte laddas upp.', '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', 'Edit this task' => 'Ändra denna uppgift',
'Due Date' => 'Måldatum', 'Due Date' => 'Måldatum',
'Invalid date' => 'Ej tillåtet datum', 'Invalid date' => 'Ej tillåtet datum',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Spara denna åtgärd', '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"?', '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', '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 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', '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', '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 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 modification' => 'Ändra uppgift',
'Task creation' => 'Skapa uppgift', 'Task creation' => 'Skapa uppgift',
'Open a closed task' => 'Öppna en stängd uppgift',
'Closing a task' => 'Stänger en uppgift', 'Closing a task' => 'Stänger en uppgift',
'Assign a color to a specific user' => 'Tilldela en färg till en specifik användare', 'Assign a color to a specific user' => 'Tilldela en färg till en specifik användare',
'Column title' => 'Kolumnens titel', 'Column title' => 'Kolumnens titel',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Kopiera till ett annat projekt', 'Duplicate to another project' => 'Kopiera till ett annat projekt',
'Duplicate' => 'Kopiera uppgiften', 'Duplicate' => 'Kopiera uppgiften',
'link' => 'länk', 'link' => 'länk',
'Update this comment' => 'Uppdatera kommentaren',
'Comment updated successfully.' => 'Kommentaren har uppdaterats.', 'Comment updated successfully.' => 'Kommentaren har uppdaterats.',
'Unable to update your comment.' => 'Kunde inte uppdatera din kommentar.', 'Unable to update your comment.' => 'Kunde inte uppdatera din kommentar.',
'Remove a comment' => 'Ta bort en 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.', '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?', '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.', '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"', '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', 'The current password is required' => 'Det nuvarande lösenordet måste anges',
'Wrong password' => 'Fel lösenord', 'Wrong password' => 'Fel lösenord',
'Reset all tokens' => 'Återställ alla tokens',
'All tokens have been regenerated.' => 'Alla tokens har degenererats.',
'Unknown' => 'Okänd', 'Unknown' => 'Okänd',
'Last logins' => 'Senaste inloggningarna', 'Last logins' => 'Senaste inloggningarna',
'Login date' => 'Inloggningsdatum', 'Login date' => 'Inloggningsdatum',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Ta bort länken till mitt Google-konto', 'Unlink my Google Account' => 'Ta bort länken till mitt Google-konto',
'Login with my Google Account' => 'Logga in med mitt Google-konto', 'Login with my Google Account' => 'Logga in med mitt Google-konto',
'Project not found.' => 'Projektet kunde inte hittas', 'Project not found.' => 'Projektet kunde inte hittas',
'Task #%d' => 'Uppgift #%d',
'Task removed successfully.' => 'Uppgiften har tagits bort', 'Task removed successfully.' => 'Uppgiften har tagits bort',
'Unable to remove this task.' => 'Kunde inte ta bort denna uppgift', 'Unable to remove this task.' => 'Kunde inte ta bort denna uppgift',
'Remove a task' => 'Ta bort en 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', '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 modification for the project "%s"' => 'Ändring av kategori för projektet "%s"',
'Category Name' => 'Kategorinamn', 'Category Name' => 'Kategorinamn',
'Categories for the project "%s"' => 'Kategorier för projektet "%s"',
'Add a new category' => 'Lägg till en kategori', '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"?', 'Do you really want to remove this category: "%s"?' => 'Vill du verkligen ta bort denna kategori: "%s"?',
'Filter by category' => 'Filtrera på kategori', 'Filter by category' => 'Filtrera på kategori',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Ändringsdatum', 'Modification date' => 'Ändringsdatum',
'Completion date' => 'Slutfört datum', 'Completion date' => 'Slutfört datum',
'Clone' => 'Klona', 'Clone' => 'Klona',
'Clone Project' => 'Klona projekt',
'Project cloned successfully.' => 'Projektet har klonats.', 'Project cloned successfully.' => 'Projektet har klonats.',
'Unable to clone this project.' => 'Kunde inte klona projektet.', 'Unable to clone this project.' => 'Kunde inte klona projektet.',
'Email notifications' => 'Epostnotiser', 'Email notifications' => 'Epostnotiser',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Ny bifogning tillagd "%s"', 'New attachment added "%s"' => 'Ny bifogning tillagd "%s"',
'Comment updated' => 'Kommentaren har uppdaterats', 'Comment updated' => 'Kommentaren har uppdaterats',
'New comment posted by %s' => 'Ny kommentar postad av %s', '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 attachment' => 'Ny bifogning',
'New comment' => 'Ny kommentar', 'New comment' => 'Ny kommentar',
'New subtask' => 'Ny deluppgift', 'New subtask' => 'Ny deluppgift',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Uppgiften har uppdaterats', 'Task updated' => 'Uppgiften har uppdaterats',
'Task closed' => 'Uppgiften har stängts', 'Task closed' => 'Uppgiften har stängts',
'Task opened' => 'Uppgiften har öppnats', '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:', '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', 'view the task on Kanboard' => 'Visa uppgiften på Kanboard',
'Public access' => 'Publik åtkomst', 'Public access' => 'Publik åtkomst',
'Category management' => 'Hantera kategorier',
'User management' => 'Hantera användare', 'User management' => 'Hantera användare',
'Active tasks' => 'Aktiva uppgifter', 'Active tasks' => 'Aktiva uppgifter',
'Disable public access' => 'Inaktivera publik åtkomst', 'Disable public access' => 'Inaktivera publik åtkomst',
'Enable public access' => 'Aktivera publik åtkomst', 'Enable public access' => 'Aktivera publik åtkomst',
'Active projects' => 'Aktiva projekt',
'Inactive projects' => 'Inaktiva projekt',
'Public access disabled' => 'Publik åtkomst har inaktiverats', '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 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"?', 'Do you really want to enable this project: "%s"?' => 'Vill du verkligen aktivera detta projekt: "%s"?',
'Project activation' => 'Projektaktivering', 'Project activation' => 'Projektaktivering',
'Move the task to another project' => 'Flytta uppgiften till ett annat projekt', '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', '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 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', '%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"', 'New password for the user "%s"' => 'Nytt lösenord för användaren "%s"',
'Choose an event' => 'Välj en händelse', 'Choose an event' => 'Välj en händelse',
'Github commit received' => 'Github-bidrag mottaget', 'Github commit received' => 'Github-bidrag mottaget',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Alla har tillgång till projektet', 'Everybody have access to this project.' => 'Alla har tillgång till projektet',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Integration',
'Github webhooks' => 'Github webhooks', 'Github webhooks' => 'Github webhooks',
'Help on Github webhooks' => 'Hjälp för 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', 'Create a comment from an external provider' => 'Skapa en kommentar från en extern leverantör',
'Github issue comment created' => 'Github frågekommentar skapad', 'Github issue comment created' => 'Github frågekommentar skapad',
'Configure' => 'Konfigurera',
'Project management' => 'Projekthantering', 'Project management' => 'Projekthantering',
'My projects' => 'Mina projekt', 'My projects' => 'Mina projekt',
'Columns' => 'Kolumner', 'Columns' => 'Kolumner',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'Användardeltagande för "%s"', 'User repartition for "%s"' => 'Användardeltagande för "%s"',
'Clone this project' => 'Klona projektet', 'Clone this project' => 'Klona projektet',
'Column removed successfully.' => 'Kolumnen togs bort', 'Column removed successfully.' => 'Kolumnen togs bort',
'Edit Project' => 'Ändra Projekt',
'Github Issue' => 'Github fråga', 'Github Issue' => 'Github fråga',
'Not enough data to show the graph.' => 'Inte tillräckligt med data för att visa graf', 'Not enough data to show the graph.' => 'Inte tillräckligt med data för att visa graf',
'Previous' => 'Föregående', 'Previous' => 'Föregående',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Alla swimlanes', 'All swimlanes' => 'Alla swimlanes',
'All colors' => 'Alla färger', 'All colors' => 'Alla färger',
'All status' => 'Alla status', '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', 'Moved to column %s' => 'Flyttad till kolumn %s',
'Change description' => 'Ändra beskrivning', 'Change description' => 'Ändra beskrivning',
'User dashboard' => 'Användardashboard', 'User dashboard' => 'Användardashboard',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'ไม่มีผู้ใช้', 'No user' => 'ไม่มีผู้ใช้',
'Forbidden' => 'ไม่อนุญาติ', 'Forbidden' => 'ไม่อนุญาติ',
'Access Forbidden' => 'ไม่อนุญาติให้เข้า', 'Access Forbidden' => 'ไม่อนุญาติให้เข้า',
'Only administrators can access to this page.' => 'หน้าสำหรับผู้ดูแลระบบเท่านั้น',
'Edit user' => 'แก้ไขผู้ใช้', 'Edit user' => 'แก้ไขผู้ใช้',
'Logout' => 'ออกจากระบบ', 'Logout' => 'ออกจากระบบ',
'Bad username or password' => 'ชื่อผู้ใช่หรือรหัสผ่านผิด', 'Bad username or password' => 'ชื่อผู้ใช่หรือรหัสผ่านผิด',
'users' => 'ผู้ใช้',
'projects' => 'โปรเจค',
'Edit project' => 'แก้ไขโปรเจค', 'Edit project' => 'แก้ไขโปรเจค',
'Name' => 'ชื่อ', 'Name' => 'ชื่อ',
'Activated' => 'เปิดใช้งาน',
'Projects' => 'โปรเจค', 'Projects' => 'โปรเจค',
'No project' => 'ไม่มีโปรเจค', 'No project' => 'ไม่มีโปรเจค',
'Project' => 'โปรเจค', 'Project' => 'โปรเจค',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'การกระทำ', 'Actions' => 'การกระทำ',
'Inactive' => 'ไม่เปิดใช้งาน', 'Inactive' => 'ไม่เปิดใช้งาน',
'Active' => 'เปิดใช้งาน', 'Active' => 'เปิดใช้งาน',
'Column %d' => 'คอลัมน์ %d',
'Add this column' => 'เพิ่มคอลัมน์', 'Add this column' => 'เพิ่มคอลัมน์',
'%d tasks on the board' => '%d งานบนบอร์ด', '%d tasks on the board' => '%d งานบนบอร์ด',
'%d tasks in total' => '%d งานทั้งหมด', '%d tasks in total' => '%d งานทั้งหมด',
@@ -67,14 +62,11 @@ return array(
'New project' => 'โปรเจคใหม่', 'New project' => 'โปรเจคใหม่',
'Do you really want to remove this project: "%s"?' => 'คุณต้องการเอาโปรเจค « %s » ออกใช่หรือไม่?', 'Do you really want to remove this project: "%s"?' => 'คุณต้องการเอาโปรเจค « %s » ออกใช่หรือไม่?',
'Remove project' => 'ลบโปรเจค', 'Remove project' => 'ลบโปรเจค',
'Boards' => 'บอร์ด',
'Edit the board for "%s"' => 'แก้ไขบอร์ดสำหรับ « %s »', 'Edit the board for "%s"' => 'แก้ไขบอร์ดสำหรับ « %s »',
'All projects' => 'โปรเจคทั้งหมด', 'All projects' => 'โปรเจคทั้งหมด',
'Change columns' => 'เปลี่ยนคอลัมน์', 'Change columns' => 'เปลี่ยนคอลัมน์',
'Add a new column' => 'เพิ่มคอลัมน์ใหม่', 'Add a new column' => 'เพิ่มคอลัมน์ใหม่',
'Title' => 'หัวเรื่อง', 'Title' => 'หัวเรื่อง',
'Add Column' => 'เพิ่มคอลัมน์',
'Project "%s"' => 'โปรเจค « %s »',
'Nobody assigned' => 'ไม่กำหนดใคร', 'Nobody assigned' => 'ไม่กำหนดใคร',
'Assigned to %s' => 'กำหนดให้ %s', 'Assigned to %s' => 'กำหนดให้ %s',
'Remove a column' => 'ลบคอลัมน์', 'Remove a column' => 'ลบคอลัมน์',
@@ -87,16 +79,12 @@ return array(
'Language' => 'ภาษา', 'Language' => 'ภาษา',
// 'Webhook token:' => '', // 'Webhook token:' => '',
'API token:' => 'API token:', 'API token:' => 'API token:',
'More information' => 'ข้อมูลเพิ่มเติม',
'Database size:' => 'ขนาดฐานข้อมูล:', 'Database size:' => 'ขนาดฐานข้อมูล:',
'Download the database' => 'ดาวน์โหลดฐานข้อมูล', 'Download the database' => 'ดาวน์โหลดฐานข้อมูล',
'Optimize the database' => 'ปรับปรุงฐานข้อมูล', 'Optimize the database' => 'ปรับปรุงฐานข้อมูล',
'(VACUUM command)' => '(VACUUM command)', '(VACUUM command)' => '(VACUUM command)',
'(Gzip compressed Sqlite file)' => '(Gzip compressed Sqlite file)', '(Gzip compressed Sqlite file)' => '(Gzip compressed Sqlite file)',
'User settings' => 'ตั้งค่าผู้ใช้',
'My default project:' => 'โปรเจคเริ่มต้นของฉัน:',
'Close a task' => 'ปิดงาน', 'Close a task' => 'ปิดงาน',
'Do you really want to close this task: "%s"?' => 'คุณต้องการปิดงาน « %s » ใช่หรือไม่?',
'Edit a task' => 'แก้ไขงาน', 'Edit a task' => 'แก้ไขงาน',
'Column' => 'คอลัมน์', 'Column' => 'คอลัมน์',
'Color' => 'สี', 'Color' => 'สี',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'ต้องการรหัสผ่าน', 'The password is required' => 'ต้องการรหัสผ่าน',
'This value must be an integer' => 'ต้องเป็นตัวเลข', 'This value must be an integer' => 'ต้องเป็นตัวเลข',
'The username must be unique' => 'ชื่อผู้ใช้ต้องไม่ซ้ำ', 'The username must be unique' => 'ชื่อผู้ใช้ต้องไม่ซ้ำ',
'The username must be alphanumeric' => 'ชื่อผู้ใช้ต้องเป็นตัวอักษรหรือตัวเลข',
'The user id is required' => 'ต้องการไอดีผู้ใช้', 'The user id is required' => 'ต้องการไอดีผู้ใช้',
'Passwords don\'t match' => 'รหัสผ่านไม่ถูกต้อง', 'Passwords don\'t match' => 'รหัสผ่านไม่ถูกต้อง',
'The confirmation is required' => 'ต้องการการยืนยัน', 'The confirmation is required' => 'ต้องการการยืนยัน',
'The column is required' => 'ต้องการคอลัมน์',
'The project is required' => 'ต้องการโปรเจค', 'The project is required' => 'ต้องการโปรเจค',
'The color is required' => 'ต้องการสี',
'The id is required' => 'ต้องการไอดี', 'The id is required' => 'ต้องการไอดี',
'The project id is required' => 'ต้องการไอดีโปรเจค', 'The project id is required' => 'ต้องการไอดีโปรเจค',
'The project name is required' => 'ต้องการชื่อโปรเจค', 'The project name is required' => 'ต้องการชื่อโปรเจค',
'This project must be unique' => 'ชื่อโปรเจคต้องไม่ซ้ำ', 'This project must be unique' => 'ชื่อโปรเจคต้องไม่ซ้ำ',
'The title is required' => 'ต้องการหัวเรื่อง', 'The title is required' => 'ต้องการหัวเรื่อง',
'The language is required' => 'ต้องการภาษา',
'There is no active project, the first step is to create a new project.' => 'ไม่มีโปรเจคที่ทำงานอยู่, ต้องการสร้างโปรเจคใหม่', 'There is no active project, the first step is to create a new project.' => 'ไม่มีโปรเจคที่ทำงานอยู่, ต้องการสร้างโปรเจคใหม่',
'Settings saved successfully.' => 'บันทึกการตั้งค่าเรียบร้อยแล้ว', 'Settings saved successfully.' => 'บันทึกการตั้งค่าเรียบร้อยแล้ว',
'Unable to save your settings.' => 'ไม่สามารถบันทึกการตั้งค่าได้', 'Unable to save your settings.' => 'ไม่สามารถบันทึกการตั้งค่าได้',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'สร้างวันที่', 'Date created' => 'สร้างวันที่',
'Date completed' => 'เรียบร้อยวันที่', 'Date completed' => 'เรียบร้อยวันที่',
'Id' => 'ไอดี', 'Id' => 'ไอดี',
'No task' => 'ไม่มีงาน',
'Completed tasks' => 'งานที่เสร็จแล้ว', 'Completed tasks' => 'งานที่เสร็จแล้ว',
'List of projects' => 'รายชื่อโปรเจค',
'Completed tasks for "%s"' => 'งานที่เสร็จแล้วสำหรับ « %s »', 'Completed tasks for "%s"' => 'งานที่เสร็จแล้วสำหรับ « %s »',
'%d closed tasks' => '%d งานที่ปิด', '%d closed tasks' => '%d งานที่ปิด',
'No task for this project' => 'ไม่มีงานสำหรับโปรเจคนี้', 'No task for this project' => 'ไม่มีงานสำหรับโปรเจคนี้',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => 'เสียใจด้วย ไม่สามารถหาข้อมูลในฐานข้อมูลได้', 'Sorry, I didn\'t find this information in my database!' => 'เสียใจด้วย ไม่สามารถหาข้อมูลในฐานข้อมูลได้',
'Page not found' => 'ไม่พบหน้า', 'Page not found' => 'ไม่พบหน้า',
'Complexity' => 'ความซับซ้อน', 'Complexity' => 'ความซับซ้อน',
'limit' => 'จำกัด',
'Task limit' => 'จำกัดงาน', 'Task limit' => 'จำกัดงาน',
'Task count' => 'นับงาน', 'Task count' => 'นับงาน',
'This value must be greater than %d' => 'ค่าต้องมากกว่า %d',
'Edit project access list' => 'แก้ไขการเข้าถึงรายชื่อโปรเจค', 'Edit project access list' => 'แก้ไขการเข้าถึงรายชื่อโปรเจค',
'Edit users access' => 'แก้ไขการเข้าถึงผู้ใช้',
'Allow this user' => 'อนุญาตผู้ใช้นี้', 'Allow this user' => 'อนุญาตผู้ใช้นี้',
'Only those users have access to this project:' => 'ผู้ใช้ที่สามารถเข้าถึงโปรเจคนี้:',
'Don\'t forget that administrators have access to everything.' => 'อย่าลืมผู้ดูแลระบบสามารถเข้าถึงได้ทุกอย่าง', 'Don\'t forget that administrators have access to everything.' => 'อย่าลืมผู้ดูแลระบบสามารถเข้าถึงได้ทุกอย่าง',
'Revoke' => 'ยกเลิก', 'Revoke' => 'ยกเลิก',
'List of authorized users' => 'รายชื่อผู้ใช้ที่ได้รับการยืนยัน', 'List of authorized users' => 'รายชื่อผู้ใช้ที่ได้รับการยืนยัน',
'User' => 'ผู้ใช้', 'User' => 'ผู้ใช้',
// 'Nobody have access to this project.' => '', // 'Nobody have access to this project.' => '',
'You are not allowed to access to this project.' => 'คุณไม่ได้รับอนุญาตให้เข้าถึงโปรเจคนี้',
'Comments' => 'ความคิดเห็น', 'Comments' => 'ความคิดเห็น',
'Post comment' => 'แสดงความคิดเห็น',
'Write your text in Markdown' => 'เขียนข้อความในรูปแบบ Markdown', 'Write your text in Markdown' => 'เขียนข้อความในรูปแบบ Markdown',
'Leave a comment' => 'ออกความคิดเห็น', 'Leave a comment' => 'ออกความคิดเห็น',
'Comment is required' => 'ต้องการความคิดเห็น', 'Comment is required' => 'ต้องการความคิดเห็น',
'Leave a description' => 'แสดงคำอธิบาย', 'Leave a description' => 'แสดงคำอธิบาย',
'Comment added successfully.' => 'เพิ่มความคิดเห็นเรียบร้อยแล้ว', 'Comment added successfully.' => 'เพิ่มความคิดเห็นเรียบร้อยแล้ว',
'Unable to create your comment.' => 'ไม่สามารถสร้างความคิดเห็น', 'Unable to create your comment.' => 'ไม่สามารถสร้างความคิดเห็น',
'The description is required' => 'ต้องการคำอธิบาย',
'Edit this task' => 'แก้ไขงาน', 'Edit this task' => 'แก้ไขงาน',
'Due Date' => 'วันที่ครบกำหนด', 'Due Date' => 'วันที่ครบกำหนด',
'Invalid date' => 'วันที่ผิด', 'Invalid date' => 'วันที่ผิด',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'บันทึกการกระทำนี้', 'Save this action' => 'บันทึกการกระทำนี้',
'Do you really want to remove this action: "%s"?' => 'คุณต้องการลบการกระทำ « %s » ใช่หรือไม่?', 'Do you really want to remove this action: "%s"?' => 'คุณต้องการลบการกระทำ « %s » ใช่หรือไม่?',
'Remove an automatic action' => 'ลบการกระทำอัตโนมัติ', 'Remove an automatic action' => 'ลบการกระทำอัตโนมัติ',
'Close the task' => 'ปิดงาน',
'Assign the task to a specific user' => 'กำหนดงานให้ผู้ใช้แบบเจาะจง', 'Assign the task to a specific user' => 'กำหนดงานให้ผู้ใช้แบบเจาะจง',
'Assign the task to the person who does the action' => 'กำหนดงานให้ผู้ใช้งานปัจจุบัน', 'Assign the task to the person who does the action' => 'กำหนดงานให้ผู้ใช้งานปัจจุบัน',
'Duplicate the task to another project' => 'ทำซ้ำงานนี้ในโปรเจคอื่น', 'Duplicate the task to another project' => 'ทำซ้ำงานนี้ในโปรเจคอื่น',
'Move a task to another column' => 'ย้ายงานไปคอลัมน์อื่น', 'Move a task to another column' => 'ย้ายงานไปคอลัมน์อื่น',
'Move a task to another position in the same column' => 'ย้ายงานไปตำแหน่งอื่นในคอลัมน์เดียวกัน',
'Task modification' => 'แก้ไขงาน', 'Task modification' => 'แก้ไขงาน',
'Task creation' => 'สร้างงาน', 'Task creation' => 'สร้างงาน',
'Open a closed task' => 'เปิดงานที่ปิดอยู่',
'Closing a task' => 'กำลังปิดงาน', 'Closing a task' => 'กำลังปิดงาน',
'Assign a color to a specific user' => 'กำหนดสีให้ผู้ใช้แบบเจาะจง', 'Assign a color to a specific user' => 'กำหนดสีให้ผู้ใช้แบบเจาะจง',
'Column title' => 'หัวเรื่องคอลัมน์', 'Column title' => 'หัวเรื่องคอลัมน์',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'ทำซ้ำในโปรเจคอื่น', 'Duplicate to another project' => 'ทำซ้ำในโปรเจคอื่น',
'Duplicate' => 'ทำซ้ำ', 'Duplicate' => 'ทำซ้ำ',
'link' => 'ลิงค์', 'link' => 'ลิงค์',
'Update this comment' => 'ปรับปรุงความคิดเห็นนี้',
'Comment updated successfully.' => 'ปรับปรุงความคิดเห็นเรียบร้อยแล้ว', 'Comment updated successfully.' => 'ปรับปรุงความคิดเห็นเรียบร้อยแล้ว',
'Unable to update your comment.' => 'ไม่สามารถปรับปรุงความคิดเห็นได้', 'Unable to update your comment.' => 'ไม่สามารถปรับปรุงความคิดเห็นได้',
'Remove a comment' => 'ลบความคิดเห็น', 'Remove a comment' => 'ลบความคิดเห็น',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'ไม่สามารถลบความคิดเห็นได้', 'Unable to remove this comment.' => 'ไม่สามารถลบความคิดเห็นได้',
'Do you really want 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.' => 'เฉพาะผู้ดูแลระบบหรือผู้สร้างความคิดเห็นเข้าถึงหน้านี้', 'Only administrators or the creator of the comment can access to this page.' => 'เฉพาะผู้ดูแลระบบหรือผู้สร้างความคิดเห็นเข้าถึงหน้านี้',
'Details' => 'รายละเอียด',
'Current password for the user "%s"' => 'รหัสผ่านปัจจุบันของผู้ใช้ « %s »', 'Current password for the user "%s"' => 'รหัสผ่านปัจจุบันของผู้ใช้ « %s »',
'The current password is required' => 'ต้องการรหัสผ่านปัจจุบัน', 'The current password is required' => 'ต้องการรหัสผ่านปัจจุบัน',
'Wrong password' => 'รหัสผ่านผิด', 'Wrong password' => 'รหัสผ่านผิด',
'Reset all tokens' => 'รีเซตโทเคนทั้งหมด ',
'All tokens have been regenerated.' => 'โทเคนทั้งหมดทำการสร้างใหม่',
'Unknown' => 'ไม่ทราบ', 'Unknown' => 'ไม่ทราบ',
'Last logins' => 'เข้าใช้ล่าสุด', 'Last logins' => 'เข้าใช้ล่าสุด',
'Login date' => 'วันที่เข้าใข้', 'Login date' => 'วันที่เข้าใข้',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'ไม่เชื่อมต่อกับกูเกิลแอคเคาท์', 'Unlink my Google Account' => 'ไม่เชื่อมต่อกับกูเกิลแอคเคาท์',
'Login with my Google Account' => 'เข้าใช้ด้วยกูเกิลแอคเคาท์', 'Login with my Google Account' => 'เข้าใช้ด้วยกูเกิลแอคเคาท์',
'Project not found.' => 'หาโปรเจคไม่พบ', 'Project not found.' => 'หาโปรเจคไม่พบ',
'Task #%d' => 'งานที่ %d',
'Task removed successfully.' => 'ลบงานเรียบร้อยแล้ว', 'Task removed successfully.' => 'ลบงานเรียบร้อยแล้ว',
'Unable to remove this task.' => 'ไม่สามารถลบงานนี้', 'Unable to remove this task.' => 'ไม่สามารถลบงานนี้',
'Remove a task' => 'ลบงาาน', 'Remove a task' => 'ลบงาาน',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'ไม่สามารถลบกลุ่มได้', 'Unable to remove this category.' => 'ไม่สามารถลบกลุ่มได้',
'Category modification for the project "%s"' => 'แก้ไขกลุ่มสำหรับโปรเจค "%s"', 'Category modification for the project "%s"' => 'แก้ไขกลุ่มสำหรับโปรเจค "%s"',
'Category Name' => 'ชื่อกลุ่ม', 'Category Name' => 'ชื่อกลุ่ม',
'Categories for the project "%s"' => 'กลุ่มสำหรับโปรเจค "%s"',
'Add a new category' => 'เพิ่มกลุ่มใหม่', 'Add a new category' => 'เพิ่มกลุ่มใหม่',
'Do you really want to remove this category: "%s"?' => 'คุณต้องการลบกลุ่ม "%s" ใช่หรือไม่?', 'Do you really want to remove this category: "%s"?' => 'คุณต้องการลบกลุ่ม "%s" ใช่หรือไม่?',
'Filter by category' => 'กรองตามกลุ่ม', 'Filter by category' => 'กรองตามกลุ่ม',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'วันที่แก้ไข', 'Modification date' => 'วันที่แก้ไข',
'Completion date' => 'วันที่เสร็จสิ้น', 'Completion date' => 'วันที่เสร็จสิ้น',
'Clone' => 'เลียนแบบ', 'Clone' => 'เลียนแบบ',
'Clone Project' => 'เลียนแบบโปรเจค',
'Project cloned successfully.' => 'เลียนแบบโปรเจคเรียบร้อยแล้ว', 'Project cloned successfully.' => 'เลียนแบบโปรเจคเรียบร้อยแล้ว',
'Unable to clone this project.' => 'ไม่สามารถเลียบแบบโปรเจคได้', 'Unable to clone this project.' => 'ไม่สามารถเลียบแบบโปรเจคได้',
'Email notifications' => 'อีเมลแจ้งเตือน', 'Email notifications' => 'อีเมลแจ้งเตือน',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'เพิ่มการแนบใหม่ "%s"', 'New attachment added "%s"' => 'เพิ่มการแนบใหม่ "%s"',
'Comment updated' => 'ปรับปรุงความคิดเห็น', 'Comment updated' => 'ปรับปรุงความคิดเห็น',
'New comment posted by %s' => 'ความคิดเห็นใหม่จาก %s', 'New comment posted by %s' => 'ความคิดเห็นใหม่จาก %s',
'List of due tasks for the project "%s"' => 'รายการงานสำหรับโปรเจค "%s"',
'New attachment' => 'การแนบใหม่', 'New attachment' => 'การแนบใหม่',
'New comment' => 'ความคิดเห็นใหม่', 'New comment' => 'ความคิดเห็นใหม่',
'New subtask' => 'งานย่อยใหม่', 'New subtask' => 'งานย่อยใหม่',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'ปรับปรุงงานแล้ว', 'Task updated' => 'ปรับปรุงงานแล้ว',
'Task closed' => 'ปิดงาน', 'Task closed' => 'ปิดงาน',
'Task opened' => 'เปิดงาน', 'Task opened' => 'เปิดงาน',
'[%s][Due tasks]' => '[%s][งานปัจจุบัน]',
'[Kanboard] Notification' => '[Kanboard] แจ้งเตือน',
'I want to receive notifications only for those projects:' => 'ฉันต้องการรับการแจ้งเตือนสำหรับโปรเจค:', 'I want to receive notifications only for those projects:' => 'ฉันต้องการรับการแจ้งเตือนสำหรับโปรเจค:',
'view the task on Kanboard' => 'แสดงงานบน Kanboard', 'view the task on Kanboard' => 'แสดงงานบน Kanboard',
'Public access' => 'การเข้าถึงสาธารณะ', 'Public access' => 'การเข้าถึงสาธารณะ',
'Category management' => 'การจัดการกลุ่ม',
'User management' => 'การจัดการผู้ใช้', 'User management' => 'การจัดการผู้ใช้',
'Active tasks' => 'งานที่กำลังใช้งาน', 'Active tasks' => 'งานที่กำลังใช้งาน',
'Disable public access' => 'ปิดการเข้าถึงสาธารณะ', 'Disable public access' => 'ปิดการเข้าถึงสาธารณะ',
'Enable public access' => 'เปิดการเข้าถึงสาธารณะ', 'Enable public access' => 'เปิดการเข้าถึงสาธารณะ',
'Active projects' => 'เปิดโปรเจค',
'Inactive projects' => 'ปิดโปรเจค',
'Public access disabled' => 'การเข้าถึงสาธารณะถูกปิด', 'Public access disabled' => 'การเข้าถึงสาธารณะถูกปิด',
'Do you really want to disable this project: "%s"?' => 'คุณต้องการปิดการใช้งานโปรเจคนี้: "%s" ใช่หรือไม่?', '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" ใช่หรือไม่?', 'Do you really want to enable this project: "%s"?' => 'คุณต้องการเปิดการใช้งานโปรเจคนี้: "%s" ใช่หรือไม่?',
'Project activation' => 'การ เปิด/ปิด ใช้งานโปรเจค', 'Project activation' => 'การ เปิด/ปิด ใช้งานโปรเจค',
'Move the task to another project' => 'ย้ายงานไปโปรเจคอื่น', 'Move the task to another project' => 'ย้ายงานไปโปรเจคอื่น',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => 'เปลี่ยนการกำหนดบุคคลของงาน', 'Task assignee change' => 'เปลี่ยนการกำหนดบุคคลของงาน',
// '%s change the assignee of the task #%d to %s' => '', // '%s change the assignee of the task #%d to %s' => '',
// '%s changed the assignee of the task %s 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"', 'New password for the user "%s"' => 'รหัสผ่านใหม่สำหรับผู้ใช้ "%s"',
'Choose an event' => 'เลือกเหตุการณ์', 'Choose an event' => 'เลือกเหตุการณ์',
// 'Github commit received' => '', // 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'ทุกคนสามารถเข้าถึงโปรเจคนี้', 'Everybody have access to this project.' => 'ทุกคนสามารถเข้าถึงโปรเจคนี้',
// 'Webhooks' => '', // 'Webhooks' => '',
// 'API' => '', // 'API' => '',
'Integration' => 'การใช้งานร่วมกัน',
// 'Github webhooks' => '', // 'Github webhooks' => '',
// 'Help on Github webhooks' => '', // 'Help on Github webhooks' => '',
// 'Create a comment from an external provider' => '', // 'Create a comment from an external provider' => '',
// 'Github issue comment created' => '', // 'Github issue comment created' => '',
'Configure' => 'การตั้งค่า',
'Project management' => 'การจัดการโปรเจค', 'Project management' => 'การจัดการโปรเจค',
'My projects' => 'โปรเจคของฉัน', 'My projects' => 'โปรเจคของฉัน',
'Columns' => 'คอลัมน์', 'Columns' => 'คอลัมน์',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => 'การแบ่งงานของผู้ใช้ "%s"', 'User repartition for "%s"' => 'การแบ่งงานของผู้ใช้ "%s"',
'Clone this project' => 'เลียนแบบโปรเจคนี้', 'Clone this project' => 'เลียนแบบโปรเจคนี้',
'Column removed successfully.' => 'ลบคอลัมน์สำเร็จ', 'Column removed successfully.' => 'ลบคอลัมน์สำเร็จ',
'Edit Project' => 'แก้ไขโปรเจค',
// 'Github Issue' => '', // 'Github Issue' => '',
'Not enough data to show the graph.' => 'ไม่มีข้อมูลแสดงเป็นกราฟ', 'Not enough data to show the graph.' => 'ไม่มีข้อมูลแสดงเป็นกราฟ',
'Previous' => 'ก่อนหน้า', 'Previous' => 'ก่อนหน้า',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'สวิมเลนทั้งหมด', 'All swimlanes' => 'สวิมเลนทั้งหมด',
'All colors' => 'สีทั้งหมด', 'All colors' => 'สีทั้งหมด',
'All status' => 'สถานะทั้งหมด', 'All status' => 'สถานะทั้งหมด',
'Add a comment logging moving the task between columns' => 'เพิ่มความคิดเห็นที่เป็น log เมื่อเปลี่ยนคอลัมน์',
'Moved to column %s' => 'เคลื่อนไปคอลัมน์ %s', 'Moved to column %s' => 'เคลื่อนไปคอลัมน์ %s',
'Change description' => 'เปลี่ยนคำอธิบาย', 'Change description' => 'เปลี่ยนคำอธิบาย',
'User dashboard' => 'ผู้ใช้แดชบอร์ด', 'User dashboard' => 'ผู้ใช้แดชบอร์ด',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
'Unable to update this user.' => 'ไม่สามารถปรับปรุงผู้ใช้นี้', 'Unable to update this user.' => 'ไม่สามารถปรับปรุงผู้ใช้นี้',
'There is no user management for private projects.' => 'ไม่มีการจัดการผู้ใช้สำหรับโปรเจคส่วนตัว', '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => 'Kullanıcı yok', 'No user' => 'Kullanıcı yok',
'Forbidden' => 'Yasak', 'Forbidden' => 'Yasak',
'Access Forbidden' => 'Erişim 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', 'Edit user' => 'Kullanıcıyı düzenle',
'Logout' => ıkış yap', 'Logout' => ıkış yap',
'Bad username or password' => 'Hatalı kullanıcı adı veya şifre', 'Bad username or password' => 'Hatalı kullanıcı adı veya şifre',
'users' => 'kullanıcılar',
'projects' => 'projeler',
'Edit project' => 'Projeyi düzenle', 'Edit project' => 'Projeyi düzenle',
'Name' => 'İsim', 'Name' => 'İsim',
'Activated' => 'Aktif',
'Projects' => 'Projeler', 'Projects' => 'Projeler',
'No project' => 'Proje yok', 'No project' => 'Proje yok',
'Project' => 'Proje', 'Project' => 'Proje',
@@ -56,7 +52,6 @@ return array(
'Actions' => 'İşlemler', 'Actions' => 'İşlemler',
'Inactive' => 'Aktif değil', 'Inactive' => 'Aktif değil',
'Active' => 'Aktif', 'Active' => 'Aktif',
'Column %d' => 'Sütun %d',
'Add this column' => 'Bu sütunu ekle', 'Add this column' => 'Bu sütunu ekle',
'%d tasks on the board' => '%d görev bu tabloda', '%d tasks on the board' => '%d görev bu tabloda',
'%d tasks in total' => '%d görev toplam', '%d tasks in total' => '%d görev toplam',
@@ -67,14 +62,11 @@ return array(
'New project' => 'Yeni proje', 'New project' => 'Yeni proje',
'Do you really want to remove this project: "%s"?' => 'Bu projeyi gerçekten silmek istiyor musunuz: "%s"?', 'Do you really want to remove this project: "%s"?' => 'Bu projeyi gerçekten silmek istiyor musunuz: "%s"?',
'Remove project' => 'Projeyi sil', 'Remove project' => 'Projeyi sil',
'Boards' => 'Tablolar',
'Edit the board for "%s"' => 'Tabloyu "%s" için güncelle', 'Edit the board for "%s"' => 'Tabloyu "%s" için güncelle',
'All projects' => 'Tüm projeler', 'All projects' => 'Tüm projeler',
'Change columns' => 'Sütunları değiştir', 'Change columns' => 'Sütunları değiştir',
'Add a new column' => 'Yeni sütun ekle', 'Add a new column' => 'Yeni sütun ekle',
'Title' => 'Başlık', 'Title' => 'Başlık',
'Add Column' => 'Sütun ekle',
'Project "%s"' => 'Proje "%s"',
'Nobody assigned' => 'Kullanıcı atanmamış', 'Nobody assigned' => 'Kullanıcı atanmamış',
'Assigned to %s' => '%s kullanıcısına atanmış', 'Assigned to %s' => '%s kullanıcısına atanmış',
'Remove a column' => 'Bir sütunu sil', 'Remove a column' => 'Bir sütunu sil',
@@ -87,16 +79,12 @@ return array(
'Language' => 'Dil', 'Language' => 'Dil',
// 'Webhook token:' => '', // 'Webhook token:' => '',
'API token:' => 'API Token:', 'API token:' => 'API Token:',
'More information' => 'Daha fazla bilgi',
'Database size:' => 'Veritabanı boyutu :', 'Database size:' => 'Veritabanı boyutu :',
'Download the database' => 'Veritabanını indir', 'Download the database' => 'Veritabanını indir',
'Optimize the database' => 'Veritabanını optimize et', 'Optimize the database' => 'Veritabanını optimize et',
'(VACUUM command)' => '(VACUUM komutu)', '(VACUUM command)' => '(VACUUM komutu)',
'(Gzip compressed Sqlite file)' => '(Gzip ile sıkıştırılmış Sqlite dosyası)', '(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', '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', 'Edit a task' => 'Bir görevi düzenle',
'Column' => 'Sütun', 'Column' => 'Sütun',
'Color' => 'Renk', 'Color' => 'Renk',
@@ -121,19 +109,15 @@ return array(
'The password is required' => 'Şifre gerekli', 'The password is required' => 'Şifre gerekli',
'This value must be an integer' => 'Bu değer bir rakam olmak zorunda', '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 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', 'The user id is required' => 'Kullanıcı kodu gerekli',
'Passwords don\'t match' => 'Şifreler uyuşmuyor', 'Passwords don\'t match' => 'Şifreler uyuşmuyor',
'The confirmation is required' => 'Onay gerekli', 'The confirmation is required' => 'Onay gerekli',
'The column is required' => 'Sütun gerekli',
'The project is required' => 'Proje gerekli', 'The project is required' => 'Proje gerekli',
'The color is required' => 'Renk gerekli',
'The id is required' => 'Kod gerekli', 'The id is required' => 'Kod gerekli',
'The project id is required' => 'Proje kodu gerekli', 'The project id is required' => 'Proje kodu gerekli',
'The project name is required' => 'Proje adı gerekli', 'The project name is required' => 'Proje adı gerekli',
'This project must be unique' => 'Bu projenin tekil olması gerekli', 'This project must be unique' => 'Bu projenin tekil olması gerekli',
'The title is required' => 'Başlık 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ı.', '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.', 'Settings saved successfully.' => 'Ayarlar başarıyla kaydedildi.',
'Unable to save your settings.' => 'Ayarlarınız kaydedilemedi.', 'Unable to save your settings.' => 'Ayarlarınız kaydedilemedi.',
@@ -173,9 +157,7 @@ return array(
'Date created' => 'Oluşturulma tarihi', 'Date created' => 'Oluşturulma tarihi',
'Date completed' => 'Tamamlanma tarihi', 'Date completed' => 'Tamamlanma tarihi',
'Id' => 'Kod', 'Id' => 'Kod',
'No task' => 'Görev yok',
'Completed tasks' => 'Tamamlanan görevler', 'Completed tasks' => 'Tamamlanan görevler',
'List of projects' => 'Proje listesi',
'Completed tasks for "%s"' => '"%s" için tamamlanan görevler', 'Completed tasks for "%s"' => '"%s" için tamamlanan görevler',
'%d closed tasks' => '%d kapatılmış görevler', '%d closed tasks' => '%d kapatılmış görevler',
// 'No task for this project' => '', // 'No task for this project' => '',
@@ -187,29 +169,22 @@ return array(
// 'Sorry, I didn\'t find this information in my database!' => '', // 'Sorry, I didn\'t find this information in my database!' => '',
'Page not found' => 'Sayfa bulunamadı', 'Page not found' => 'Sayfa bulunamadı',
'Complexity' => 'Zorluk seviyesi', 'Complexity' => 'Zorluk seviyesi',
'limit' => 'limit',
'Task limit' => 'Görev limiti', 'Task limit' => 'Görev limiti',
'Task count' => 'Görev sayısı', '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 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', '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!', 'Don\'t forget that administrators have access to everything.' => 'Dikkat: Yöneticilerin herşeye erişimi olduğunu unutmayın!',
'Revoke' => 'Iptal et', 'Revoke' => 'Iptal et',
'List of authorized users' => 'Yetkili kullanıcıların listesi', 'List of authorized users' => 'Yetkili kullanıcıların listesi',
'User' => 'Kullanıcı', 'User' => 'Kullanıcı',
'Nobody have access to this project.' => 'Bu projeye kimsenin erişimi yok.', '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', 'Comments' => 'Yorumlar',
'Post comment' => 'Yorum ekle',
'Write your text in Markdown' => 'Yazınızı Markdown ile yazın', 'Write your text in Markdown' => 'Yazınızı Markdown ile yazın',
'Leave a comment' => 'Bir yorum ekle', 'Leave a comment' => 'Bir yorum ekle',
'Comment is required' => 'Yorum gerekli', 'Comment is required' => 'Yorum gerekli',
'Leave a description' => 'Açıklama ekleyin', 'Leave a description' => 'Açıklama ekleyin',
'Comment added successfully.' => 'Yorum eklendi', 'Comment added successfully.' => 'Yorum eklendi',
'Unable to create your comment.' => 'Yorumunuz oluşturulamadı', 'Unable to create your comment.' => 'Yorumunuz oluşturulamadı',
'The description is required' => 'Açıklama gerekli',
'Edit this task' => 'Bu görevi değiştir', 'Edit this task' => 'Bu görevi değiştir',
'Due Date' => 'Termin', 'Due Date' => 'Termin',
'Invalid date' => 'Geçersiz tarihi', 'Invalid date' => 'Geçersiz tarihi',
@@ -236,15 +211,12 @@ return array(
'Save this action' => 'Bu işlemi kaydet', '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"?', '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', '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 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', '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', '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 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 modification' => 'Görev düzenleme',
'Task creation' => 'Görev oluşturma', 'Task creation' => 'Görev oluşturma',
'Open a closed task' => 'Kapalı bir görevi aç',
'Closing a task' => 'Bir görev kapatılıyor', 'Closing a task' => 'Bir görev kapatılıyor',
'Assign a color to a specific user' => 'Bir kullanıcıya renk tanımla', 'Assign a color to a specific user' => 'Bir kullanıcıya renk tanımla',
'Column title' => 'Sütun başlığı', 'Column title' => 'Sütun başlığı',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => 'Başka bir projeye kopyala', 'Duplicate to another project' => 'Başka bir projeye kopyala',
'Duplicate' => 'Kopya oluştur', 'Duplicate' => 'Kopya oluştur',
'link' => 'link', 'link' => 'link',
'Update this comment' => 'Bu yorumu güncelle',
'Comment updated successfully.' => 'Yorum güncellendi.', 'Comment updated successfully.' => 'Yorum güncellendi.',
'Unable to update your comment.' => 'Yorum güncellenemedi.', 'Unable to update your comment.' => 'Yorum güncellenemedi.',
'Remove a comment' => 'Bir yorumu sil', 'Remove a comment' => 'Bir yorumu sil',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => 'Bu yorum silinemiyor.', 'Unable to remove this comment.' => 'Bu yorum silinemiyor.',
'Do you really want to remove this comment?' => 'Bu yorumu silmek istediğinize emin misiniz?', '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.', '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"', 'Current password for the user "%s"' => 'Kullanıcı için mevcut şifre "%s"',
'The current password is required' => 'Mevcut şifre gerekli', 'The current password is required' => 'Mevcut şifre gerekli',
'Wrong password' => 'Yanlış Şifre', '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', 'Unknown' => 'Bilinmeyen',
'Last logins' => 'Son kullanıcı girişleri', 'Last logins' => 'Son kullanıcı girişleri',
'Login date' => 'Giriş tarihi', 'Login date' => 'Giriş tarihi',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => 'Google hesabımla bağı kaldır', 'Unlink my Google Account' => 'Google hesabımla bağı kaldır',
'Login with my Google Account' => 'Google hesabımla giriş yap', 'Login with my Google Account' => 'Google hesabımla giriş yap',
'Project not found.' => 'Proje bulunamadı', 'Project not found.' => 'Proje bulunamadı',
'Task #%d' => 'Görev #%d',
'Task removed successfully.' => 'Görev silindi', 'Task removed successfully.' => 'Görev silindi',
'Unable to remove this task.' => 'Görev silinemiyor', 'Unable to remove this task.' => 'Görev silinemiyor',
'Remove a task' => 'Bir görevi sil', 'Remove a task' => 'Bir görevi sil',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => 'Bu kategori silinemedi', 'Unable to remove this category.' => 'Bu kategori silinemedi',
'Category modification for the project "%s"' => '"%s" projesi için kategori değiştirme', 'Category modification for the project "%s"' => '"%s" projesi için kategori değiştirme',
'Category Name' => 'Kategori adı', 'Category Name' => 'Kategori adı',
'Categories for the project "%s"' => '"%s" Projesi için kategoriler',
'Add a new category' => 'Yeni kategori ekle', 'Add a new category' => 'Yeni kategori ekle',
'Do you really want to remove this category: "%s"?' => 'Bu kategoriyi silmek istediğinize emin misiniz: "%s"?', 'Do you really want to remove this category: "%s"?' => 'Bu kategoriyi silmek istediğinize emin misiniz: "%s"?',
'Filter by category' => 'Kategoriye göre filtrele', 'Filter by category' => 'Kategoriye göre filtrele',
@@ -390,7 +356,6 @@ return array(
'Modification date' => 'Değişiklik tarihi', 'Modification date' => 'Değişiklik tarihi',
'Completion date' => 'Tamamlanma tarihi', 'Completion date' => 'Tamamlanma tarihi',
'Clone' => 'Kopya oluştur', 'Clone' => 'Kopya oluştur',
'Clone Project' => 'Projenin kopyasını oluştur',
'Project cloned successfully.' => 'Proje kopyası başarıyla oluşturuldu.', 'Project cloned successfully.' => 'Proje kopyası başarıyla oluşturuldu.',
'Unable to clone this project.' => 'Proje kopyası oluşturulamadı.', 'Unable to clone this project.' => 'Proje kopyası oluşturulamadı.',
'Email notifications' => 'E-Posta bilgilendirmesi', 'Email notifications' => 'E-Posta bilgilendirmesi',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => 'Yeni dosya "%s" eklendi.', 'New attachment added "%s"' => 'Yeni dosya "%s" eklendi.',
'Comment updated' => 'Yorum güncellendi', 'Comment updated' => 'Yorum güncellendi',
'New comment posted by %s' => '%s tarafından yeni yorum eklendi', '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 attachment' => 'Yeni dosya eki',
'New comment' => 'Yeni yorum', 'New comment' => 'Yeni yorum',
'New subtask' => 'Yeni alt görev', 'New subtask' => 'Yeni alt görev',
@@ -415,21 +379,15 @@ return array(
'Task updated' => 'Görev güncellendi', 'Task updated' => 'Görev güncellendi',
'Task closed' => 'Görev kapatıldı', 'Task closed' => 'Görev kapatıldı',
'Task opened' => 'Görev açı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:', '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', 'view the task on Kanboard' => 'bu görevi Kanboard\'da göster',
'Public access' => 'Dışa açık erişim', 'Public access' => 'Dışa açık erişim',
'Category management' => 'Kategori yönetimi',
'User management' => 'Kullanıcı yönetimi', 'User management' => 'Kullanıcı yönetimi',
'Active tasks' => 'Aktif görevler', 'Active tasks' => 'Aktif görevler',
'Disable public access' => 'Dışa açık erişimi kapat', 'Disable public access' => 'Dışa açık erişimi kapat',
'Enable public access' => 'Dışa açık erişimi aç', '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ı', '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 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"', 'Do you really want to enable this project: "%s"?' => 'Bu projeyi aktive etmek istediğinize emin misiniz?: "%s"',
'Project activation' => 'Proje aktivasyonu', 'Project activation' => 'Proje aktivasyonu',
'Move the task to another project' => 'Görevi başka projeye taşı', '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', '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 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', '%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', 'New password for the user "%s"' => '"%s" kullanıcısı için yeni şifre',
'Choose an event' => 'Bir durum seçin', 'Choose an event' => 'Bir durum seçin',
// 'Github commit received' => '', // 'Github commit received' => '',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => 'Bu projeye herkesin erişimi var.', 'Everybody have access to this project.' => 'Bu projeye herkesin erişimi var.',
'Webhooks' => 'Webhooks', 'Webhooks' => 'Webhooks',
'API' => 'API', 'API' => 'API',
'Integration' => 'Entegrasyon',
'Github webhooks' => 'Github Webhook', 'Github webhooks' => 'Github Webhook',
'Help on Github webhooks' => 'Github Webhooks hakkında yardım', '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', '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', 'Github issue comment created' => 'Github hata yorumu oluşturuldu',
'Configure' => 'Ayarla',
'Project management' => 'Proje yönetimi', 'Project management' => 'Proje yönetimi',
'My projects' => 'Projelerim', 'My projects' => 'Projelerim',
'Columns' => 'Sütunlar', 'Columns' => 'Sütunlar',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '"%s" için kullanıcı dağılımı', 'User repartition for "%s"' => '"%s" için kullanıcı dağılımı',
'Clone this project' => 'Projenin kopyasını oluştur', 'Clone this project' => 'Projenin kopyasını oluştur',
'Column removed successfully.' => 'Sütun başarıyla kaldırıldı.', 'Column removed successfully.' => 'Sütun başarıyla kaldırıldı.',
'Edit Project' => 'Projeyi düzenle',
'Github Issue' => 'Github Issue', 'Github Issue' => 'Github Issue',
'Not enough data to show the graph.' => 'Grafik gösterimi için yeterli veri yok.', 'Not enough data to show the graph.' => 'Grafik gösterimi için yeterli veri yok.',
'Previous' => 'Önceki', 'Previous' => 'Önceki',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => 'Tüm Kulvarlar', 'All swimlanes' => 'Tüm Kulvarlar',
'All colors' => 'Tüm Renkler', 'All colors' => 'Tüm Renkler',
'All status' => 'Tüm Durumlar', '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ı', 'Moved to column %s' => '%s Sütununa taşındı',
'Change description' => 'Açıklamayı değiştir', 'Change description' => 'Açıklamayı değiştir',
'User dashboard' => 'Kullanıcı Anasayfası', 'User dashboard' => 'Kullanıcı Anasayfası',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -38,15 +38,11 @@ return array(
'No user' => '没有用户', 'No user' => '没有用户',
'Forbidden' => '禁止', 'Forbidden' => '禁止',
'Access Forbidden' => '禁止进入', 'Access Forbidden' => '禁止进入',
'Only administrators can access to this page.' => '只有管理员可以查看该页面。',
'Edit user' => '修改用户', 'Edit user' => '修改用户',
'Logout' => '退出', 'Logout' => '退出',
'Bad username or password' => '用户名或密码错误', 'Bad username or password' => '用户名或密码错误',
'users' => '用户',
'projects' => '项目',
'Edit project' => '修改项目', 'Edit project' => '修改项目',
'Name' => '名称', 'Name' => '名称',
'Activated' => '已激活',
'Projects' => '项目', 'Projects' => '项目',
'No project' => '无项目', 'No project' => '无项目',
'Project' => '项目', 'Project' => '项目',
@@ -56,7 +52,6 @@ return array(
'Actions' => '动作', 'Actions' => '动作',
'Inactive' => '未激活', 'Inactive' => '未激活',
'Active' => '激活', 'Active' => '激活',
'Column %d' => '第%d栏目',
'Add this column' => '加入该栏目', 'Add this column' => '加入该栏目',
'%d tasks on the board' => '看板目前有%d个任务', '%d tasks on the board' => '看板目前有%d个任务',
'%d tasks in total' => '总共有%d个任务', '%d tasks in total' => '总共有%d个任务',
@@ -67,14 +62,11 @@ return array(
'New project' => '新建项目', 'New project' => '新建项目',
'Do you really want to remove this project: "%s"?' => '确定要移除项目"%s"吗?', 'Do you really want to remove this project: "%s"?' => '确定要移除项目"%s"吗?',
'Remove project' => '移除项目', 'Remove project' => '移除项目',
'Boards' => '看板',
'Edit the board for "%s"' => '为"%s"修改看板', 'Edit the board for "%s"' => '为"%s"修改看板',
'All projects' => '所有项目', 'All projects' => '所有项目',
'Change columns' => '更改栏目', 'Change columns' => '更改栏目',
'Add a new column' => '添加新栏目', 'Add a new column' => '添加新栏目',
'Title' => '标题', 'Title' => '标题',
'Add Column' => '添加栏目',
'Project "%s"' => '项目 "%s"',
'Nobody assigned' => '无人被指派', 'Nobody assigned' => '无人被指派',
'Assigned to %s' => '指派给 %s', 'Assigned to %s' => '指派给 %s',
'Remove a column' => '移除一个栏目', 'Remove a column' => '移除一个栏目',
@@ -87,16 +79,12 @@ return array(
'Language' => '语言', 'Language' => '语言',
'Webhook token:' => '页面钩子令牌:', 'Webhook token:' => '页面钩子令牌:',
'API token:' => 'API 令牌:', 'API token:' => 'API 令牌:',
'More information' => '更多信息',
'Database size:' => '数据库大小:', 'Database size:' => '数据库大小:',
'Download the database' => '下载数据库', 'Download the database' => '下载数据库',
'Optimize the database' => '优化数据库', 'Optimize the database' => '优化数据库',
'(VACUUM command)' => '(VACUUM 指令)', '(VACUUM command)' => '(VACUUM 指令)',
'(Gzip compressed Sqlite file)' => '(用Gzip压缩的Sqlite文件)', '(Gzip compressed Sqlite file)' => '(用Gzip压缩的Sqlite文件)',
'User settings' => '用户设置',
'My default project:' => '我的默认项目:',
'Close a task' => '关闭一个任务', 'Close a task' => '关闭一个任务',
'Do you really want to close this task: "%s"?' => '你确定要关闭任务: "%s"?',
'Edit a task' => '修改一个任务', 'Edit a task' => '修改一个任务',
'Column' => '栏目', 'Column' => '栏目',
'Color' => '颜色', 'Color' => '颜色',
@@ -121,19 +109,15 @@ return array(
'The password is required' => '需要密码', 'The password is required' => '需要密码',
'This value must be an integer' => '该值必须为整数', 'This value must be an integer' => '该值必须为整数',
'The username must be unique' => '用户名必须唯一', 'The username must be unique' => '用户名必须唯一',
'The username must be alphanumeric' => '用户名必须是英文字符或数字组成',
'The user id is required' => '用户id是必须的', 'The user id is required' => '用户id是必须的',
'Passwords don\'t match' => '密码不匹配', 'Passwords don\'t match' => '密码不匹配',
'The confirmation is required' => '需要确认', 'The confirmation is required' => '需要确认',
'The column is required' => '需要指定栏目',
'The project is required' => '需要指定项目', 'The project is required' => '需要指定项目',
'The color is required' => '需要指定颜色',
'The id is required' => '需要指定id', 'The id is required' => '需要指定id',
'The project id is required' => '需要指定项目id', 'The project id is required' => '需要指定项目id',
'The project name is required' => '需要指定项目名称', 'The project name is required' => '需要指定项目名称',
'This project must be unique' => '项目名称必须唯一', 'This project must be unique' => '项目名称必须唯一',
'The title is required' => '需要指定标题', 'The title is required' => '需要指定标题',
'The language is required' => '需要指定语言',
'There is no active project, the first step is to create a new project.' => '尚无活跃项目,请首先创建一个新项目。', 'There is no active project, the first step is to create a new project.' => '尚无活跃项目,请首先创建一个新项目。',
'Settings saved successfully.' => '设置成功保存。', 'Settings saved successfully.' => '设置成功保存。',
'Unable to save your settings.' => '无法保存你的设置。', 'Unable to save your settings.' => '无法保存你的设置。',
@@ -173,9 +157,7 @@ return array(
'Date created' => '创建时间', 'Date created' => '创建时间',
'Date completed' => '完成时间', 'Date completed' => '完成时间',
'Id' => '编号', 'Id' => '编号',
'No task' => '无任务',
'Completed tasks' => '已完成任务', 'Completed tasks' => '已完成任务',
'List of projects' => '项目列表',
'Completed tasks for "%s"' => '"%s"已经完成的任务', 'Completed tasks for "%s"' => '"%s"已经完成的任务',
'%d closed tasks' => '%d个已关闭任务', '%d closed tasks' => '%d个已关闭任务',
'No task for this project' => '该项目尚无任务', 'No task for this project' => '该项目尚无任务',
@@ -187,29 +169,22 @@ return array(
'Sorry, I didn\'t find this information in my database!' => '抱歉,无法在数据库中找到该信息!', 'Sorry, I didn\'t find this information in my database!' => '抱歉,无法在数据库中找到该信息!',
'Page not found' => '页面未找到', 'Page not found' => '页面未找到',
'Complexity' => '复杂度', 'Complexity' => '复杂度',
'limit' => '限制',
'Task limit' => '任务限制', 'Task limit' => '任务限制',
'Task count' => '任务数', 'Task count' => '任务数',
'This value must be greater than %d' => '该数值必须大于%d',
'Edit project access list' => '编辑项目存取列表', 'Edit project access list' => '编辑项目存取列表',
'Edit users access' => '编辑用户存取权限',
'Allow this user' => '允许该用户', 'Allow this user' => '允许该用户',
'Only those users have access to this project:' => '只有这些用户有该项目的存取权限:',
'Don\'t forget that administrators have access to everything.' => '别忘了管理员有一切的权限。', 'Don\'t forget that administrators have access to everything.' => '别忘了管理员有一切的权限。',
'Revoke' => '撤销', 'Revoke' => '撤销',
'List of authorized users' => '已授权的用户列表', 'List of authorized users' => '已授权的用户列表',
'User' => '用户', 'User' => '用户',
'Nobody have access to this project.' => '无用户可以访问此项目.', 'Nobody have access to this project.' => '无用户可以访问此项目.',
'You are not allowed to access to this project.' => '您对该项目没有权限。',
'Comments' => '评论', 'Comments' => '评论',
'Post comment' => '发表评论',
'Write your text in Markdown' => '用Markdown格式编写', 'Write your text in Markdown' => '用Markdown格式编写',
'Leave a comment' => '留言', 'Leave a comment' => '留言',
'Comment is required' => '必须得有评论', 'Comment is required' => '必须得有评论',
'Leave a description' => '给一个描述', 'Leave a description' => '给一个描述',
'Comment added successfully.' => '评论成功添加。', 'Comment added successfully.' => '评论成功添加。',
'Unable to create your comment.' => '无法创建评论。', 'Unable to create your comment.' => '无法创建评论。',
'The description is required' => '必须得有描述',
'Edit this task' => '编辑该任务', 'Edit this task' => '编辑该任务',
'Due Date' => '到期时间', 'Due Date' => '到期时间',
'Invalid date' => '无效日期', 'Invalid date' => '无效日期',
@@ -236,15 +211,12 @@ return array(
'Save this action' => '保存该动作', 'Save this action' => '保存该动作',
'Do you really want to remove this action: "%s"?' => '确定要移除动作"%s"吗?', 'Do you really want to remove this action: "%s"?' => '确定要移除动作"%s"吗?',
'Remove an automatic action' => '移除一个自动动作', 'Remove an automatic action' => '移除一个自动动作',
'Close the task' => '关闭任务',
'Assign the task to a specific user' => '将该任务指派给一个用户', 'Assign the task to a specific user' => '将该任务指派给一个用户',
'Assign the task to the person who does the action' => '将任务指派给产生该动作的用户', 'Assign the task to the person who does the action' => '将任务指派给产生该动作的用户',
'Duplicate the task to another project' => '复制该任务到另一项目', 'Duplicate the task to another project' => '复制该任务到另一项目',
'Move a task to another column' => '移动任务到另一栏目', 'Move a task to another column' => '移动任务到另一栏目',
'Move a task to another position in the same column' => '将任务移到该栏目另一位置',
'Task modification' => '任务修改', 'Task modification' => '任务修改',
'Task creation' => '任务创建', 'Task creation' => '任务创建',
'Open a closed task' => '开启已关闭任务',
'Closing a task' => '正在关闭任务', 'Closing a task' => '正在关闭任务',
'Assign a color to a specific user' => '为特定用户指派颜色', 'Assign a color to a specific user' => '为特定用户指派颜色',
'Column title' => '栏目名称', 'Column title' => '栏目名称',
@@ -254,7 +226,6 @@ return array(
'Duplicate to another project' => '复制到另一项目', 'Duplicate to another project' => '复制到另一项目',
'Duplicate' => '复制', 'Duplicate' => '复制',
'link' => '连接', 'link' => '连接',
'Update this comment' => '更新该评论',
'Comment updated successfully.' => '评论成功更新。', 'Comment updated successfully.' => '评论成功更新。',
'Unable to update your comment.' => '无法更新您的评论。', 'Unable to update your comment.' => '无法更新您的评论。',
'Remove a comment' => '移除评论', 'Remove a comment' => '移除评论',
@@ -262,12 +233,9 @@ return array(
'Unable to remove this comment.' => '无法移除该评论。', 'Unable to remove this comment.' => '无法移除该评论。',
'Do you really want 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.' => '只有管理员或评论创建者可以进入该页面。', 'Only administrators or the creator of the comment can access to this page.' => '只有管理员或评论创建者可以进入该页面。',
'Details' => '细节',
'Current password for the user "%s"' => '用户"%s"的当前密码', 'Current password for the user "%s"' => '用户"%s"的当前密码',
'The current password is required' => '需要输入当前密码', 'The current password is required' => '需要输入当前密码',
'Wrong password' => '密码错误', 'Wrong password' => '密码错误',
'Reset all tokens' => '重置所有令牌',
'All tokens have been regenerated.' => '所有令牌都重新生成了。',
'Unknown' => '未知', 'Unknown' => '未知',
'Last logins' => '上次登录', 'Last logins' => '上次登录',
'Login date' => '登录日期', 'Login date' => '登录日期',
@@ -303,7 +271,6 @@ return array(
'Unlink my Google Account' => '去除我的google帐号关联', 'Unlink my Google Account' => '去除我的google帐号关联',
'Login with my Google Account' => '用我的google帐号登录', 'Login with my Google Account' => '用我的google帐号登录',
'Project not found.' => '未发现项目', 'Project not found.' => '未发现项目',
'Task #%d' => '任务 #%d',
'Task removed successfully.' => '任务成功去除', 'Task removed successfully.' => '任务成功去除',
'Unable to remove this task.' => '无法移除该任务。', 'Unable to remove this task.' => '无法移除该任务。',
'Remove a task' => '移除一个任务', 'Remove a task' => '移除一个任务',
@@ -324,7 +291,6 @@ return array(
'Unable to remove this category.' => '无法移除该分类。', 'Unable to remove this category.' => '无法移除该分类。',
'Category modification for the project "%s"' => '为项目"%s"修改分类', 'Category modification for the project "%s"' => '为项目"%s"修改分类',
'Category Name' => '分类名称', 'Category Name' => '分类名称',
'Categories for the project "%s"' => '项目"%s"的分类',
'Add a new category' => '加入新分类', 'Add a new category' => '加入新分类',
'Do you really want to remove this category: "%s"?' => '确定要移除分类"%s"吗?', 'Do you really want to remove this category: "%s"?' => '确定要移除分类"%s"吗?',
'Filter by category' => '按分类过滤', 'Filter by category' => '按分类过滤',
@@ -390,7 +356,6 @@ return array(
'Modification date' => '修改日期', 'Modification date' => '修改日期',
'Completion date' => '完成日期', 'Completion date' => '完成日期',
'Clone' => '克隆', 'Clone' => '克隆',
'Clone Project' => '复制项目',
'Project cloned successfully.' => '成功复制项目。', 'Project cloned successfully.' => '成功复制项目。',
'Unable to clone this project.' => '无法复制此项目', 'Unable to clone this project.' => '无法复制此项目',
'Email notifications' => '邮件通知', 'Email notifications' => '邮件通知',
@@ -407,7 +372,6 @@ return array(
'New attachment added "%s"' => '新附件已添加"%s"', 'New attachment added "%s"' => '新附件已添加"%s"',
'Comment updated' => '更新了评论', 'Comment updated' => '更新了评论',
'New comment posted by %s' => '%s 的新评论', 'New comment posted by %s' => '%s 的新评论',
'List of due tasks for the project "%s"' => '项目"%s"的到期任务列表',
'New attachment' => '新建附件', 'New attachment' => '新建附件',
'New comment' => '新建评论', 'New comment' => '新建评论',
'New subtask' => '新建子任务', 'New subtask' => '新建子任务',
@@ -415,21 +379,15 @@ return array(
'Task updated' => '任务更新', 'Task updated' => '任务更新',
'Task closed' => '任务关闭', 'Task closed' => '任务关闭',
'Task opened' => '任务开启', 'Task opened' => '任务开启',
'[%s][Due tasks]' => '[%s][到期任务]',
'[Kanboard] Notification' => '[Kanboard] 通知',
'I want to receive notifications only for those projects:' => '我仅需要收到下面项目的通知:', 'I want to receive notifications only for those projects:' => '我仅需要收到下面项目的通知:',
'view the task on Kanboard' => '在看板中查看此任务', 'view the task on Kanboard' => '在看板中查看此任务',
'Public access' => '公开访问', 'Public access' => '公开访问',
'Category management' => '分类管理',
'User management' => '用户管理', 'User management' => '用户管理',
'Active tasks' => '活动任务', 'Active tasks' => '活动任务',
'Disable public access' => '停止公开访问', 'Disable public access' => '停止公开访问',
'Enable public access' => '开启公开访问', 'Enable public access' => '开启公开访问',
'Active projects' => '活动项目',
'Inactive projects' => '不活动项目',
'Public access disabled' => '已经禁止公开访问', 'Public access disabled' => '已经禁止公开访问',
'Do you really want to disable this project: "%s"?' => '确认要禁用项目"%s"吗?', '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"吗?', 'Do you really want to enable this project: "%s"?' => '确认要启用项目"%s"吗?',
'Project activation' => '项目启动', 'Project activation' => '项目启动',
'Move the task to another project' => '移动任务到其它项目', 'Move the task to another project' => '移动任务到其它项目',
@@ -498,9 +456,6 @@ return array(
'Task assignee change' => '任务分配变更', 'Task assignee change' => '任务分配变更',
'%s change the assignee of the task #%d to %s' => '%s 将任务 #%d 分配给了 %s', '%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', '%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"的新密码', 'New password for the user "%s"' => '用户"%s"的新密码',
'Choose an event' => '选择一个事件', 'Choose an event' => '选择一个事件',
'Github commit received' => '收到了Github提交', 'Github commit received' => '收到了Github提交',
@@ -553,12 +508,10 @@ return array(
'Everybody have access to this project.' => '所有人都可以访问此项目', 'Everybody have access to this project.' => '所有人都可以访问此项目',
'Webhooks' => '网络钩子', 'Webhooks' => '网络钩子',
'API' => '应用程序接口', 'API' => '应用程序接口',
'Integration' => '整合',
'Github webhooks' => 'Github 网络钩子', 'Github webhooks' => 'Github 网络钩子',
'Help on Github webhooks' => 'Github 网络钩子帮助', 'Help on Github webhooks' => 'Github 网络钩子帮助',
'Create a comment from an external provider' => '从外部创建一个评论', 'Create a comment from an external provider' => '从外部创建一个评论',
'Github issue comment created' => '已经创建了Github问题评论', 'Github issue comment created' => '已经创建了Github问题评论',
'Configure' => '配置',
'Project management' => '项目管理', 'Project management' => '项目管理',
'My projects' => '我的项目', 'My projects' => '我的项目',
'Columns' => '栏目', 'Columns' => '栏目',
@@ -576,7 +529,6 @@ return array(
'User repartition for "%s"' => '"%s"的用户分析', 'User repartition for "%s"' => '"%s"的用户分析',
'Clone this project' => '复制此项目', 'Clone this project' => '复制此项目',
'Column removed successfully.' => '成功删除了栏目。', 'Column removed successfully.' => '成功删除了栏目。',
'Edit Project' => '编辑项目',
'Github Issue' => 'Github 任务报告', 'Github Issue' => 'Github 任务报告',
'Not enough data to show the graph.' => '数据不足,无法绘图。', 'Not enough data to show the graph.' => '数据不足,无法绘图。',
'Previous' => '后退', 'Previous' => '后退',
@@ -657,7 +609,6 @@ return array(
'All swimlanes' => '全部泳道', 'All swimlanes' => '全部泳道',
'All colors' => '全部颜色', 'All colors' => '全部颜色',
'All status' => '全部状态', 'All status' => '全部状态',
'Add a comment logging moving the task between columns' => '在不同栏目间移动任务时添加一个评论',
'Moved to column %s' => '移动到栏目 %s', 'Moved to column %s' => '移动到栏目 %s',
'Change description' => '修改描述', 'Change description' => '修改描述',
'User dashboard' => '用户仪表板', 'User dashboard' => '用户仪表板',
@@ -922,4 +873,74 @@ return array(
// 'Two factor authentication enabled' => '', // 'Two factor authentication enabled' => '',
// 'Unable to update this user.' => '', // 'Unable to update this user.' => '',
// 'There is no user management for private projects.' => '', // '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' => '',
); );

View File

@@ -36,6 +36,9 @@ export
export:subtasks Subtasks CSV export export:subtasks Subtasks CSV export
export:tasks Tasks CSV export export:tasks Tasks CSV export
export:transitions Task transitions CSV export export:transitions Task transitions CSV export
locale
locale:compare Compare application translations with the fr_FR locale
locale:sync Synchronize all translations based on the fr_FR locale
notification notification
notification:overdue-tasks Send notifications for overdue tasks notification:overdue-tasks Send notifications for overdue tasks
projects projects

View File

@@ -6,7 +6,7 @@ How to translate Kanboard to a new language?
- Translations are stored inside the directory `app/Locale` - Translations are stored inside the directory `app/Locale`
- There is sub-directory for each language, by example for the French we have `fr_FR`, Italian `it_IT` etc... - There is sub-directory for each language, by example for the French we have `fr_FR`, Italian `it_IT` etc...
- A translation is a PHP file that return an Array with a key-value pairs - A translation is a PHP file that returns an Array with a key-value pairs
- The key is the original text in english and the value is the translation for the corresponding language - The key is the original text in english and the value is the translation for the corresponding language
- **French translations are always up to date** - **French translations are always up to date**
- Always use the last version (branch master) - Always use the last version (branch master)
@@ -58,13 +58,14 @@ All formats are available in the [PHP documentation](http://php.net/sprintf).
How to find missing translations in the applications? How to find missing translations in the applications?
----------------------------------------------------- -----------------------------------------------------
From a Unix shell run: From a terminal, run the following command:
```bash ```bash
./scripts/find-strings.sh ./kanboard locale:compare
``` ```
All missing translations are displayed on the screen. Put that in the french locale and sync other locales (see below). All missing and unused translations are displayed on the screen.
Put that in the French locale and sync other locales (see below).
How to synchronize translation files? How to synchronize translation files?
------------------------------------- -------------------------------------

View File

@@ -16,4 +16,5 @@ $application->add(new Console\ProjectDailySummaryCalculation($container));
$application->add(new Console\ProjectDailySummaryExport($container)); $application->add(new Console\ProjectDailySummaryExport($container));
$application->add(new Console\TransitionExport($container)); $application->add(new Console\TransitionExport($container));
$application->add(new Console\LocaleSync($container)); $application->add(new Console\LocaleSync($container));
$application->add(new Console\LocaleComparator($container));
$application->run(); $application->run();

View File

@@ -1,23 +0,0 @@
#!/bin/bash
REF_LANG=${1:-fr_FR}
###
APP_DIR=`dirname $0`/../app
LANG_FILE=$APP_DIR/Locale/$REF_LANG/translations.php
TMPFILE=`mktemp`
# find all strings used with t() or e() and write them to a temp buffer
find $APP_DIR -name '*.php' -print | xargs -n 1 cat | grep -oP -e "\b[et]\((\"\K.*?\"|\'\K.*?\') *[\)\,]" | sed -e "s/'[),]$//" -e 's/\\/\\\\/g' | sort | uniq > $TMPFILE
echo "Missing strings from $REF_LANG: (if none printed, none missing)"
while read LINE
do
grep -F "$LINE" $LANG_FILE > /dev/null
if [[ $? -ne 0 ]]; then
echo " '$LINE' => '',"
fi
done < $TMPFILE
# delete the work file
rm $TMPFILE