summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Controller/ConfigController.php2
-rw-r--r--app/Locale/bs_BA/translations.php25
-rw-r--r--app/Locale/cs_CZ/translations.php25
-rw-r--r--app/Locale/da_DK/translations.php25
-rw-r--r--app/Locale/de_DE/translations.php25
-rw-r--r--app/Locale/el_GR/translations.php25
-rw-r--r--app/Locale/es_ES/translations.php25
-rw-r--r--app/Locale/fi_FI/translations.php25
-rw-r--r--app/Locale/fr_FR/translations.php27
-rw-r--r--app/Locale/hu_HU/translations.php25
-rw-r--r--app/Locale/id_ID/translations.php25
-rw-r--r--app/Locale/it_IT/translations.php25
-rw-r--r--app/Locale/ja_JP/translations.php25
-rw-r--r--app/Locale/ko_KR/translations.php25
-rw-r--r--app/Locale/my_MY/translations.php25
-rw-r--r--app/Locale/nb_NO/translations.php25
-rw-r--r--app/Locale/nl_NL/translations.php25
-rw-r--r--app/Locale/pl_PL/translations.php25
-rw-r--r--app/Locale/pt_BR/translations.php25
-rw-r--r--app/Locale/pt_PT/translations.php25
-rw-r--r--app/Locale/ru_RU/translations.php25
-rw-r--r--app/Locale/sr_Latn_RS/translations.php25
-rw-r--r--app/Locale/sv_SE/translations.php25
-rw-r--r--app/Locale/th_TH/translations.php25
-rw-r--r--app/Locale/tr_TR/translations.php25
-rw-r--r--app/Locale/zh_CN/translations.php25
-rw-r--r--app/Template/config/upload_db.php4
-rw-r--r--app/Template/task/sidebar.php3
28 files changed, 457 insertions, 179 deletions
diff --git a/app/Controller/ConfigController.php b/app/Controller/ConfigController.php
index 62ae8201..6b85d1f9 100644
--- a/app/Controller/ConfigController.php
+++ b/app/Controller/ConfigController.php
@@ -222,7 +222,7 @@ class ConfigController extends BaseController
if (!file_exists($filename) || !$this->configModel->uploadDatabase($filename)) {
$this->flash->failure(t('Unable to read uploaded file.'));
} else {
- $this->flash->success(t('Database upload done.'));
+ $this->flash->success(t('Database uploaded successfully.'));
}
$this->response->redirect($this->helper->url->to('ConfigController', 'index'));
diff --git a/app/Locale/bs_BA/translations.php b/app/Locale/bs_BA/translations.php
index 6e7fcdd3..533dee1f 100644
--- a/app/Locale/bs_BA/translations.php
+++ b/app/Locale/bs_BA/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'None',
- 'edit' => 'uredi',
'Edit' => 'Uredi',
- 'remove' => 'ukloni',
'Remove' => 'Ukloni',
'Yes' => 'Da',
'No' => 'Ne',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Akcije za automatizaciju projekta "%s"',
'Add an action' => 'dodaj akcju',
'Event name' => 'Naziv događaja',
- 'Action name' => 'Naziv akcije',
- 'Action parameters' => 'Parametri akcije',
'Action' => 'Akcija',
'Event' => 'Događaj',
'When the selected event occurs execute the corresponding action.' => 'Na izabrani događaj izvrši odgovarajuću akciju',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozicija',
'Duplicate to another project' => 'Dupliciraj u drugi projekat',
'Duplicate' => 'Dupliciraj',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Komentar uspješno ažuriran.',
'Unable to update your comment.' => 'Neuspješno ažuriranje komentara.',
'Remove a comment' => 'Obriši komentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategorija:',
'Categories' => 'Kategorije',
'Your category have been created successfully.' => 'Uspješno kreirana kategorija.',
- 'Unable to create your category.' => 'Nije moguće kreirati kategoriju.',
'This category has been updated successfully.' => 'Kategorija je uspješno ažurirana',
'Unable to update this category.' => 'Nemoguće izmijeniti kategoriju',
'Remove a category' => 'Ukloni kategoriju',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Dodaj člana grupe',
'Do you really want to remove this group: "%s"?' => 'Da li zaista želiš ukloniti ovu grupu: "%s"?',
'There is no user in this group.' => 'Trenutno nema korisnika u grupi.',
- 'Remove this user' => 'Ukloni ovog korisnika',
'Permissions' => 'Prava',
'Allowed Users' => 'Dozvoljeni korisnici',
'No user have been allowed specifically.' => 'Nema korisnika sa specijalnim dozvolama.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/cs_CZ/translations.php b/app/Locale/cs_CZ/translations.php
index 2013834e..cf941106 100644
--- a/app/Locale/cs_CZ/translations.php
+++ b/app/Locale/cs_CZ/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'žádné',
- 'edit' => 'editovat',
'Edit' => 'Editovat',
- 'remove' => 'odstranit',
'Remove' => 'Odstranit',
'Yes' => 'Ano',
'No' => 'Ne',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automaticky vykonávané akce pro projekt "%s"',
'Add an action' => 'Přidat akci',
'Event name' => 'Název události',
- 'Action name' => 'Název akce',
- 'Action parameters' => 'Parametry akce',
'Action' => 'Akce',
'Event' => 'Událost',
'When the selected event occurs execute the corresponding action.' => 'Kdykoliv se vybraná událost objeví, vykonat odpovídající akci.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozice',
'Duplicate to another project' => 'Vytvořit kopii v jiném projektu',
'Duplicate' => 'Vytvořit kopii',
- 'link' => 'Link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Komentář byl úspěšně aktualizován.',
'Unable to update your comment.' => 'Nelze upravit Váš komentář.',
'Remove a comment' => 'Odebrat komentář',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategorie:',
'Categories' => 'Kategorie',
'Your category have been created successfully.' => 'Kategorie byla úspěšně vytvořena.',
- 'Unable to create your category.' => 'Kategorii nelze vytvořit.',
'This category has been updated successfully.' => 'Kategorie byla úspěšně aktualizována.',
'Unable to update this category.' => 'Kategorii nelze aktualizovat.',
'Remove a category' => 'Odstranit kategorii',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/da_DK/translations.php b/app/Locale/da_DK/translations.php
index 61d135c1..bcf6e43d 100644
--- a/app/Locale/da_DK/translations.php
+++ b/app/Locale/da_DK/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'Ingen',
- 'edit' => 'rediger',
'Edit' => 'Rediger',
- 'remove' => 'fjern',
'Remove' => 'Fjern',
'Yes' => 'Ja',
'No' => 'Nej',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatiske handlinger for projektet "%s"',
'Add an action' => 'Tilføj en handling',
'Event name' => 'Begivenhed',
- 'Action name' => 'Handling',
- 'Action parameters' => 'Handlingsparametre',
'Action' => 'Handling',
'Event' => 'Begivenhed',
'When the selected event occurs execute the corresponding action.' => 'Når den valgte begivenhed opstår, udfør den tilsvarende handling.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Position',
'Duplicate to another project' => 'Kopier til et andet projekt',
'Duplicate' => 'Kopier',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Kommentar opdateret.',
'Unable to update your comment.' => 'Din kommentar kunne ikke opdateres.',
'Remove a comment' => 'Fjern en kommentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori:',
'Categories' => 'Kategorier',
'Your category have been created successfully.' => 'Kategorien er oprettet.',
- 'Unable to create your category.' => 'Kategorien kunne ikke oprettes.',
'This category has been updated successfully.' => 'Kategorien er opdateret.',
'Unable to update this category.' => 'Kategorien kunne ikke opdateres.',
'Remove a category' => 'Fjern en kategori',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/de_DE/translations.php b/app/Locale/de_DE/translations.php
index 7ff21e8e..0ebc4a13 100644
--- a/app/Locale/de_DE/translations.php
+++ b/app/Locale/de_DE/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Keines',
- 'edit' => 'Bearbeiten',
'Edit' => 'Bearbeiten',
- 'remove' => 'Entfernen',
'Remove' => 'Entfernen',
'Yes' => 'Ja',
'No' => 'Nein',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatische Aktionen für das Projekt "%s"',
'Add an action' => 'Aktion hinzufügen',
'Event name' => 'Ereignisname',
- 'Action name' => 'Aktionsname',
- 'Action parameters' => 'Aktionsparameter',
'Action' => 'Aktion',
'Event' => 'Ereignis',
'When the selected event occurs execute the corresponding action.' => 'Wenn das gewählte Ereignis eintritt, führe die zugehörige Aktion aus.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Position',
'Duplicate to another project' => 'In ein anderes Projekt duplizieren',
'Duplicate' => 'Duplizieren',
- 'link' => 'Link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Kommentar erfolgreich aktualisiert.',
'Unable to update your comment.' => 'Aktualisierung des Kommentars nicht möglich.',
'Remove a comment' => 'Kommentar löschen',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategorie:',
'Categories' => 'Kategorien',
'Your category have been created successfully.' => 'Kategorie erfolgreich erstellt.',
- 'Unable to create your category.' => 'Erstellung der Kategorie nicht möglich.',
'This category has been updated successfully.' => 'Kategorie erfolgreich aktualisiert.',
'Unable to update this category.' => 'Änderung der Kategorie nicht möglich.',
'Remove a category' => 'Kategorie löschen',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Gruppenmitglied hinzufügen',
'Do you really want to remove this group: "%s"?' => 'Wollen Sie die Gruppe "%s" wirklich löschen?',
'There is no user in this group.' => 'Es gibt keinen Benutzer in dieser Gruppe.',
- 'Remove this user' => 'Diesen Benutzer entfernen',
'Permissions' => 'Berechtigungen',
'Allowed Users' => 'Berechtigte Benutzer',
'No user have been allowed specifically.' => 'Keine Benutzer mit ausdrücklicher Berechtigung.',
@@ -1309,4 +1303,21 @@ return array(
'This project is open' => 'Dieses Projekt ist offen',
'This project is closed' => 'Dieses Projekt ist geschlossen',
'Unable to upload files, check the permissions of your data folder.' => 'Dateien können nicht hochgeladen werden, überprüfen Sie die Berechtigungen Ihres Datenordners.',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/el_GR/translations.php b/app/Locale/el_GR/translations.php
index 07b216e3..091c2675 100644
--- a/app/Locale/el_GR/translations.php
+++ b/app/Locale/el_GR/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Τίποτα',
- 'edit' => 'Διορθωτής',
'Edit' => 'Διόρθωση',
- 'remove' => 'αφαιρετής',
'Remove' => 'Αφαίρεση',
'Yes' => 'Ναι',
'No' => 'Όχι',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Αυτόματες ενέργειες για το έργο « %s »',
'Add an action' => 'Προσθήκη ενέργειας',
'Event name' => 'Ονομασία συμβάντος',
- 'Action name' => 'Ονομασία ενέργειας',
- 'Action parameters' => 'Παράμετροι ενέργειας',
'Action' => 'Ενέργεια',
'Event' => 'Συμβάν',
'When the selected event occurs execute the corresponding action.' => 'Όταν εμφανίζεται το επιλεγμένο συμβάν εκτελέστε την αντίστοιχη ενέργεια.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Θέση',
'Duplicate to another project' => 'Αντιγραφή σε άλλο έργο',
'Duplicate' => 'Αντιγραφή',
- 'link' => 'σύνδεσμος',
+ 'Link' => 'σύνδεσμος',
'Comment updated successfully.' => 'Το σχόλιο ενημερώθηκε με επιτυχία.',
'Unable to update your comment.' => 'Αδυναμία ενημέρωσης σχολίου.',
'Remove a comment' => 'Διαγραφή σχολίου',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Κατηγορία:',
'Categories' => 'Κατηγορίες',
'Your category have been created successfully.' => 'Η κατηγορία δημιουργήθηκε.',
- 'Unable to create your category.' => 'Δεν είναι δυνατή η δημιουργία της κατηγορίας.',
'This category has been updated successfully.' => 'Η ενημέρωση της κατηγορίας καταχωρήθηκε με επιτυχία.',
'Unable to update this category.' => 'Δεν είναι δυνατή η ενημέρωση της κατηγορίας.',
'Remove a category' => 'Διαγραφή κατηγορίας',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Προσθήκη μέλους ομάδας',
'Do you really want to remove this group: "%s"?' => 'Αφαίρεση της ομάδας: « %s » ?',
'There is no user in this group.' => 'Δεν υπάρχει χρήστης σε αυτήν την ομάδα',
- 'Remove this user' => 'Αφαίρεση χρήστη',
'Permissions' => 'Επιτρέψεις',
'Allowed Users' => 'Χρήστες που επιτρέπονται',
'No user have been allowed specifically.' => 'Δεν υπάρχει χρήστης που να επιτρέπεται συγκεκριμένα.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/es_ES/translations.php b/app/Locale/es_ES/translations.php
index cea867ec..d400cd98 100644
--- a/app/Locale/es_ES/translations.php
+++ b/app/Locale/es_ES/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Ninguno',
- 'edit' => 'modificar',
'Edit' => 'Modificar',
- 'remove' => 'eliminar',
'Remove' => 'Eliminar',
'Yes' => 'Sí',
'No' => 'No',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Acciones automatizadas para el proyecto «%s»',
'Add an action' => 'Añadir una acción',
'Event name' => 'Nombre del evento',
- 'Action name' => 'Nombre de la acción',
- 'Action parameters' => 'Parámetros de la acción',
'Action' => 'Acción',
'Event' => 'Evento',
'When the selected event occurs execute the corresponding action.' => 'Cuando tiene lugar el evento seleccionado, ejecutar la acción correspondiente.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posición',
'Duplicate to another project' => 'Duplicar a otro proyecto',
'Duplicate' => 'Duplicar',
- 'link' => 'enlace',
+ 'Link' => 'Enlace',
'Comment updated successfully.' => 'El comentario ha sido actualizado correctamente.',
'Unable to update your comment.' => 'No se puede actualizar este comentario.',
'Remove a comment' => 'Eliminar un comentario',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Categoría:',
'Categories' => 'Categorías',
'Your category have been created successfully.' => 'Se ha creado su categoría correctamente.',
- 'Unable to create your category.' => 'No se puede crear su categoría.',
'This category has been updated successfully.' => 'Se ha actualizado su categoría correctamente.',
'Unable to update this category.' => 'No se puede actualizar su categoría.',
'Remove a category' => 'Eliminar una categoría',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Añadir un miembro al grupo',
'Do you really want to remove this group: "%s"?' => '¿Realmente desea eliminar este grupo: «%s»?',
'There is no user in this group.' => 'No hay usuario en este grupo.',
- 'Remove this user' => 'Eliminar este usuario',
'Permissions' => 'Permisos',
'Allowed Users' => 'Usuarios permitidos',
'No user have been allowed specifically.' => 'Ningún usuario ha sido explícitamente permitido.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/fi_FI/translations.php b/app/Locale/fi_FI/translations.php
index bee32a2c..6b77fd40 100644
--- a/app/Locale/fi_FI/translations.php
+++ b/app/Locale/fi_FI/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'Ei mikään',
- 'edit' => 'muokkaa',
'Edit' => 'Muokkaa',
- 'remove' => 'poista',
'Remove' => 'Poista',
'Yes' => 'Kyllä',
'No' => 'Ei',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automaattiset toiminnot projektille "%s"',
// 'Add an action' => '',
'Event name' => 'Tapahtuman nimi',
- 'Action name' => 'Toiminnon nimi',
- 'Action parameters' => 'Toiminnon parametrit',
'Action' => 'Toiminto',
'Event' => 'Tapahtuma',
'When the selected event occurs execute the corresponding action.' => 'Kun valittu tapahtuma tapahtuu, suorita vastaava toiminto.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Positio',
'Duplicate to another project' => 'Kopioi toiseen projektiin',
'Duplicate' => 'Monista',
- 'link' => 'linkki',
+ 'Link' => 'Linkki',
'Comment updated successfully.' => 'Kommentti päivitettiin onnistuneesti.',
'Unable to update your comment.' => 'Kommentin päivitys epäonnistui.',
'Remove a comment' => 'Poista kommentti',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategoria:',
'Categories' => 'Kategoriat',
'Your category have been created successfully.' => 'Kategoria luotiin onnistuneesti.',
- 'Unable to create your category.' => 'Kategorian luonti epäonnistui.',
'This category has been updated successfully.' => 'Kategoriaa muokattiin onnistuneesti.',
'Unable to update this category.' => 'Kategorian muokkaaminen epäonnistui.',
'Remove a category' => 'Poista kategoria',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/fr_FR/translations.php b/app/Locale/fr_FR/translations.php
index 38d35def..5fc5e1cb 100644
--- a/app/Locale/fr_FR/translations.php
+++ b/app/Locale/fr_FR/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Aucun',
- 'edit' => 'modifier',
'Edit' => 'Modifier',
- 'remove' => 'supprimer',
'Remove' => 'Supprimer',
'Yes' => 'Oui',
'No' => 'Non',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Actions automatisées pour le projet « %s »',
'Add an action' => 'Ajouter une action',
'Event name' => 'Nom de l\'événement',
- 'Action name' => 'Nom de l\'action',
- 'Action parameters' => 'Paramètres de l\'action',
'Action' => 'Action',
'Event' => 'Événement',
'When the selected event occurs execute the corresponding action.' => 'Lorsque l\'événement sélectionné se déclenche, exécuter l\'action correspondante.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Position',
'Duplicate to another project' => 'Dupliquer dans un autre projet',
'Duplicate' => 'Dupliquer',
- 'link' => 'lien',
+ 'Link' => 'Lien',
'Comment updated successfully.' => 'Commentaire mis à jour avec succès.',
'Unable to update your comment.' => 'Impossible de supprimer votre commentaire.',
'Remove a comment' => 'Supprimer un commentaire',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Catégorie :',
'Categories' => 'Catégories',
'Your category have been created successfully.' => 'Votre catégorie a été créée avec succès.',
- 'Unable to create your category.' => 'Impossible de créer votre catégorie.',
'This category has been updated successfully.' => 'Cette catégorie a été mise à jour avec succès.',
'Unable to update this category.' => 'Impossible de mettre à jour cette catégorie.',
'Remove a category' => 'Supprimer une catégorie',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Ajouter un membre au groupe',
'Do you really want to remove this group: "%s"?' => 'Voulez-vous vraiment supprimer ce groupe : « %s » ?',
'There is no user in this group.' => 'Il n\'y a aucun utilisateur dans ce groupe',
- 'Remove this user' => 'Supprimer cet utilisateur',
'Permissions' => 'Permissions',
'Allowed Users' => 'Utilisateurs autorisés',
'No user have been allowed specifically.' => 'Aucun utilisateur a été autorisé spécifiquement.',
@@ -1306,7 +1300,24 @@ return array(
'Do you really want to close this project: "%s"?' => 'Voulez-vous vraiment fermer ce projet : « %s » ?',
'Reopen a project' => 'Réouvrir un projet',
'Do you really want to reopen this project: "%s"?' => 'Voulez-vous vraiment réouvrir ce projet : « %s » ?',
- 'This project is open' => 'Ce projet est ouvert',
+ 'This project is open' => 'Ce projet est actif',
'This project is closed' => 'Ce projet est fermé',
'Unable to upload files, check the permissions of your data folder.' => 'Impossible de transférer le ou les fichiers, vérifiez les permissions du répertoire de données.',
+ 'Another category with the same name exists in this project' => 'Une autre catégorie avec le même nom existe dans ce projet',
+ 'Comment sent by email successfully.' => 'Commentaire envoyé par email avec succès.',
+ 'Sent by email to [%s](mailto:%s) (%s)' => 'Envoyé par email à [%s](mailto:%s) (%s)',
+ 'Unable to read uploaded file.' => 'Impossible de lire le fichier téléversé.',
+ 'Database uploaded successfully.' => 'Base de données téléversée avec succès.',
+ 'Task sent by email successfully.' => 'Tâche envoyée par email avec succès.',
+ 'There is no category in this project.' => 'Il n\'y a aucune catégorie dans ce projet.',
+ 'Send by email' => 'Envoyer par email',
+ 'Create and send a comment by email' => 'Créer et envoyer un commentaire par email',
+ 'Subject' => 'Sujet',
+ 'Upload the database' => 'Téléverser la base de données',
+ 'You could upload the previously downloaded Sqlite database (Gzip format).' => 'Vous pouvez téléverser la base de données Sqlite précédemment téléchargée au format Gzip.',
+ 'Database file' => 'Fichier de la base de données',
+ 'Upload' => 'Téléverser',
+ 'Remove this user from group' => 'Enlever cet utilisateur du groupe',
+ 'Your project must have at least one active swimlane.' => 'Votre projet doit avoir au moins une swimlane active.',
+ 'Project: %s' => 'Projet : %s',
);
diff --git a/app/Locale/hu_HU/translations.php b/app/Locale/hu_HU/translations.php
index 1a12d0c0..76d04c15 100644
--- a/app/Locale/hu_HU/translations.php
+++ b/app/Locale/hu_HU/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Nincs',
- 'edit' => 'szerkesztés',
'Edit' => 'Szerkesztés',
- 'remove' => 'törlés',
'Remove' => 'Törlés',
'Yes' => 'Igen',
'No' => 'Nem',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatikus intézkedések a projektben: "%s"',
'Add an action' => 'Intézkedés létrehozása',
'Event name' => 'Esemény neve',
- 'Action name' => 'Intézkedés neve',
- 'Action parameters' => 'Intézkedés paraméterei',
'Action' => 'Intézkedés',
'Event' => 'Esemény',
'When the selected event occurs execute the corresponding action.' => 'Ha a kiválasztott esemény bekövetkezik, hajtsa végre a megfelelő intézkedéseket.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozíció',
'Duplicate to another project' => 'Másolás másik projektbe',
'Duplicate' => 'Másolás',
- 'link' => 'hivatkozás',
+ 'Link' => 'hivatkozás',
'Comment updated successfully.' => 'Megjegyzés sikeresen frissítve.',
'Unable to update your comment.' => 'Megjegyzés frissítése sikertelen.',
'Remove a comment' => 'Megjegyzés törlése',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategória:',
'Categories' => 'Kategóriák',
'Your category have been created successfully.' => 'Kategória sikeresen létrehozva.',
- 'Unable to create your category.' => 'A kategória létrehozása nem lehetséges.',
'This category has been updated successfully.' => 'Kategória sikeresen frissítve.',
'Unable to update this category.' => 'Kategória frissítése nem lehetséges.',
'Remove a category' => 'Kategória törlése',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Csoporttag hozzáadása',
'Do you really want to remove this group: "%s"?' => 'Valóban törölni kívánja ezt a csoportot: "%s"?',
'There is no user in this group.' => 'Nincs egy felhasználó sem ebben a csoportban.',
- 'Remove this user' => 'A felhasználó eltávolítása',
'Permissions' => 'Engedélyek',
'Allowed Users' => 'Megengedett felhasználók',
'No user have been allowed specifically.' => 'Egyedileg semelyik felhasználó sem lett engedélyezve.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/id_ID/translations.php b/app/Locale/id_ID/translations.php
index 6b51a76b..0ab68d7b 100644
--- a/app/Locale/id_ID/translations.php
+++ b/app/Locale/id_ID/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Tidak satupun',
- 'edit' => 'modifikasi',
'Edit' => 'Edit',
- 'remove' => 'hapus',
'Remove' => 'Hapus',
'Yes' => 'Ya',
'No' => 'Tidak',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Tindakan otomatis untuk proyek ini "%s"',
'Add an action' => 'Tambah tindakan',
'Event name' => 'Nama acara',
- 'Action name' => 'Nama tindakan',
- 'Action parameters' => 'Parameter tindakan',
'Action' => 'Tindakan',
'Event' => 'Acara',
'When the selected event occurs execute the corresponding action.' => 'Ketika acara yang dipilih terjadi, tindakan yang berhubungan dengan acara akan dieksekusi.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posisi',
'Duplicate to another project' => 'Duplikasi ke proyek lain',
'Duplicate' => 'Duplikat',
- 'link' => 'tautan',
+ 'Link' => 'tautan',
'Comment updated successfully.' => 'Komentar berhasil diperbarui.',
'Unable to update your comment.' => 'Tidak dapat memperbarui komentar Anda.',
'Remove a comment' => 'Hapus komentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori:',
'Categories' => 'Kategori',
'Your category have been created successfully.' => 'Kategori Anda berhasil dibuat.',
- 'Unable to create your category.' => 'Tidak dapat membuat kategori Anda.',
'This category has been updated successfully.' => 'Kategori Anda berhasil diperbarui.',
'Unable to update this category.' => 'Tidak dapat memperbarui kategori Anda.',
'Remove a category' => 'Hapus kategori',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Tambah anggota grup',
'Do you really want to remove this group: "%s"?' => 'Anda yakin mau menghapus grup ini: "%s"?',
'There is no user in this group.' => 'Tidak ada pengguna dalam grup ini',
- 'Remove this user' => 'Hapus pengguna ini',
'Permissions' => 'Izin',
'Allowed Users' => 'Pengguna Yang Diizinkan',
'No user have been allowed specifically.' => 'Tidak ada user yang diperbolehkan secara khusus',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/it_IT/translations.php b/app/Locale/it_IT/translations.php
index a77e01f5..e30f7696 100644
--- a/app/Locale/it_IT/translations.php
+++ b/app/Locale/it_IT/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Nessuno',
- 'edit' => 'modifica',
'Edit' => 'Modifica',
- 'remove' => 'cancella',
'Remove' => 'Cancella',
'Yes' => 'Si',
'No' => 'No',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Azioni automatiche per il progetto "%s"',
'Add an action' => 'Aggiungi un\'azione',
'Event name' => 'Nome dell\'evento',
- 'Action name' => 'Nome dell\'azione',
- 'Action parameters' => 'Parametri d\'azione',
'Action' => 'Azione',
'Event' => 'Evento',
'When the selected event occurs execute the corresponding action.' => 'Quando si verifica l\'evento selezionato, eseguire l\'azione corrispondente.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posizione',
'Duplicate to another project' => 'Duplica in un altro progetto',
'Duplicate' => 'Duplica',
- 'link' => 'relazione',
+ 'Link' => 'Relazione',
'Comment updated successfully.' => 'Commento aggiornato con successo.',
'Unable to update your comment.' => 'Impossibile aggiornare questo commento.',
'Remove a comment' => 'Cancella un commento',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Categoria:',
'Categories' => 'Categorie',
'Your category have been created successfully.' => 'La tua categoria è stata creata con successo.',
- 'Unable to create your category.' => 'Impossibile creare la tua categoria.',
'This category has been updated successfully.' => 'La tua categoria è stata aggiornata con successo.',
'Unable to update this category.' => 'Impossibile aggiornare la tua categoria.',
'Remove a category' => 'Cancella una categoria',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Aggiungi un membro del gruppo',
'Do you really want to remove this group: "%s"?' => 'Vuoi davvero rimuovere questo gruppo: "%s"?',
'There is no user in this group.' => 'Nessun utente in questo gruppo.',
- 'Remove this user' => 'Rimuovi questo utente',
'Permissions' => 'Permessi',
'Allowed Users' => 'Utenti autorizzati',
'No user have been allowed specifically.' => 'Nessun utente è stato esplicitamente autorizzato.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/ja_JP/translations.php b/app/Locale/ja_JP/translations.php
index a85df1df..215c0838 100644
--- a/app/Locale/ja_JP/translations.php
+++ b/app/Locale/ja_JP/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'なし',
- 'edit' => '変更',
'Edit' => '変更',
- 'remove' => '削除する',
'Remove' => '削除する',
'Yes' => 'はい',
'No' => 'いいえ',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'プロジェクト「%s」の自動アクション',
'Add an action' => '自動アクションの追加',
'Event name' => 'イベント名',
- 'Action name' => 'アクション名',
- 'Action parameters' => 'アクションのパラメーター',
'Action' => 'アクション',
'Event' => 'イベント',
'When the selected event occurs execute the corresponding action.' => '選択されたイベントが発生した時、対応するアクションを実行する。',
@@ -187,7 +183,7 @@ return array(
'Position' => '位置',
'Duplicate to another project' => '別のプロジェクトに複製する',
'Duplicate' => '複製する',
- 'link' => 'リンク',
+ 'Link' => 'リンク',
'Comment updated successfully.' => 'コメントを更新しました。',
'Unable to update your comment.' => 'コメントの更新に失敗しました。',
'Remove a comment' => 'コメントを削除する',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'カテゴリ:',
'Categories' => 'カテゴリ',
'Your category have been created successfully.' => 'カテゴリを作成しました。',
- 'Unable to create your category.' => 'カテゴリの作成に失敗しました。',
'This category has been updated successfully.' => 'カテゴリを更新しました。',
'Unable to update this category.' => 'カテゴリの更新に失敗しました。',
'Remove a category' => 'カテゴリの削除',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/ko_KR/translations.php b/app/Locale/ko_KR/translations.php
index 5c7c174c..ae2bcba1 100644
--- a/app/Locale/ko_KR/translations.php
+++ b/app/Locale/ko_KR/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => '없음',
- 'edit' => '수정',
'Edit' => '수정',
- 'remove' => '삭제',
'Remove' => '삭제',
'Yes' => '예',
'No' => '아니오',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => '"%s" 프로젝트를 위한 자동 액션',
'Add an action' => '자동 액션 추가',
'Event name' => '이벤트 이름',
- 'Action name' => '액션 이름',
- 'Action parameters' => '액션의 바로미터',
'Action' => '액션',
'Event' => '이벤트',
'When the selected event occurs execute the corresponding action.' => '선택된 이벤트가 발생했을 때 대응하는 액션을 실행한다.',
@@ -187,7 +183,7 @@ return array(
'Position' => '위치',
'Duplicate to another project' => '다른 프로젝트에 복사',
'Duplicate' => '복사',
- 'link' => '링크',
+ 'Link' => '링크',
'Comment updated successfully.' => '댓글을 갱신했습니다.',
'Unable to update your comment.' => '댓글의 갱신에 실패했습니다.',
'Remove a comment' => '댓글 삭제',
@@ -234,7 +230,6 @@ return array(
'Category:' => '카테고리:',
'Categories' => '카테고리',
'Your category have been created successfully.' => '카테고리를 작성했습니다.',
- 'Unable to create your category.' => '카테고리의 작성에 실패했습니다.',
'This category has been updated successfully.' => '카테고리를 갱신했습니다.',
'Unable to update this category.' => '카테고리의 갱신에 실패했습니다.',
'Remove a category' => '카테고리의 삭제',
@@ -899,7 +894,6 @@ return array(
'Add group member' => '멤버추가',
'Do you really want to remove this group: "%s"?' => '그룹을 삭제하시겠습니까: "%s"?',
'There is no user in this group.' => '이 그룹에는 사용자가 없습니다',
- 'Remove this user' => '사용자 삭제',
'Permissions' => '권한',
'Allowed Users' => '사용자 승인',
'No user have been allowed specifically.' => '구체적으로 승인된 사용자가 없습니다',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/my_MY/translations.php b/app/Locale/my_MY/translations.php
index f44411e8..9fb54c2f 100644
--- a/app/Locale/my_MY/translations.php
+++ b/app/Locale/my_MY/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => '.',
'number.thousands_separator' => ',',
'None' => 'Tiada',
- 'edit' => 'sunting',
'Edit' => 'Sunting',
- 'remove' => 'hapus',
'Remove' => 'Hapus',
'Yes' => 'Ya',
'No' => 'Tidak',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Tindakan otomatis untuk projek ini « %s »',
'Add an action' => 'Tambah tindakan',
'Event name' => 'Nama acara',
- 'Action name' => 'Nama tindakan',
- 'Action parameters' => 'Parameter tindakan',
'Action' => 'Tindakan',
'Event' => 'Acara',
'When the selected event occurs execute the corresponding action.' => 'Ketika acara yang dipilih terjadi, melakukan tindakan yang sesuai.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posisi',
'Duplicate to another project' => 'Duplikasi ke projek lain',
'Duplicate' => 'Duplikasi',
- 'link' => 'Pautan',
+ 'Link' => 'Pautan',
'Comment updated successfully.' => 'Komentar berhasil diperbaharui.',
'Unable to update your comment.' => 'Tidak dapat memperbaharui komentar anda.',
'Remove a comment' => 'Hapus komentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori :',
'Categories' => 'Kategori',
'Your category have been created successfully.' => 'Kategori anda berhasil dibuat.',
- 'Unable to create your category.' => 'Tidak dapat membuat kategori anda.',
'This category has been updated successfully.' => 'Kategori anda berhasil diperbaharui.',
'Unable to update this category.' => 'Tidak dapat memperbaharui kategori anda.',
'Remove a category' => 'Hapus kategori',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/nb_NO/translations.php b/app/Locale/nb_NO/translations.php
index a6a92313..7cc3b99b 100644
--- a/app/Locale/nb_NO/translations.php
+++ b/app/Locale/nb_NO/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Ingen',
- 'edit' => 'rediger',
'Edit' => 'Rediger',
- 'remove' => 'fjern',
'Remove' => 'Fjern',
'Yes' => 'Ja',
'No' => 'Nei',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatiske handlinger for prosjektet "%s"',
'Add an action' => 'Legg til en handling',
'Event name' => 'Hendelsehet',
- 'Action name' => 'Handling',
- 'Action parameters' => 'Handlingsparametre',
'Action' => 'Handling',
'Event' => 'Hendelse',
'When the selected event occurs execute the corresponding action.' => 'Når den valgte hendelsen oppstår, utfør tilsvarende handling.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posisjon',
'Duplicate to another project' => 'Kopier til et annet prosjekt',
'Duplicate' => 'Kopier',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Kommentar oppdatert.',
'Unable to update your comment.' => 'Din kommentar kunne ikke oppdateres.',
'Remove a comment' => 'Fjern en kommentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori:',
'Categories' => 'Kategorier',
'Your category have been created successfully.' => 'Kategorien er opprettet.',
- 'Unable to create your category.' => 'Kategorien kunne ikke opprettes.',
'This category has been updated successfully.' => 'Kategorien er oppdatert.',
'Unable to update this category.' => 'Kategorien kunne ikke oppdateres.',
'Remove a category' => 'Fjern en kategori',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/nl_NL/translations.php b/app/Locale/nl_NL/translations.php
index 93b4262f..795ad0bb 100644
--- a/app/Locale/nl_NL/translations.php
+++ b/app/Locale/nl_NL/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Geen',
- 'edit' => 'bewerken',
'Edit' => 'Bewerken',
- 'remove' => 'verwijderen',
'Remove' => 'Verwijderen',
'Yes' => 'Ja',
'No' => 'Nee',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatiseer acties voor project « %s »',
'Add an action' => 'Actie toevoegen',
'Event name' => 'Naam gebeurtenis',
- 'Action name' => 'Actie naam',
- 'Action parameters' => 'Actie paramaters',
'Action' => 'Actie',
'Event' => 'Evenement',
'When the selected event occurs execute the corresponding action.' => 'Als de geselecteerde gebeurtenis optreedt de volgende actie uitvoeren',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Positie',
'Duplicate to another project' => 'Dupliceren in een ander project',
'Duplicate' => 'Dupliceren',
- 'link' => 'koppelen',
+ 'Link' => 'Koppelen',
'Comment updated successfully.' => 'Commentaar succesvol aangepast.',
'Unable to update your comment.' => 'Commentaar aanpassen niet gelukt.',
'Remove a comment' => 'Commentaar verwijderen',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Categorie :',
'Categories' => 'Categorieën',
'Your category have been created successfully.' => 'Categorie succesvol aangemaakt.',
- 'Unable to create your category.' => 'Categorie aanmaken niet gelukt.',
'This category has been updated successfully.' => 'Categorie succesvol aangepast.',
'Unable to update this category.' => 'Aanpassen van categorie niet gelukt.',
'Remove a category' => 'Categorie verwijderen',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/pl_PL/translations.php b/app/Locale/pl_PL/translations.php
index 56154adc..704fb8cf 100644
--- a/app/Locale/pl_PL/translations.php
+++ b/app/Locale/pl_PL/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Brak',
- 'edit' => 'edytuj',
'Edit' => 'Edytuj',
- 'remove' => 'usuń',
'Remove' => 'Usuń',
'Yes' => 'Tak',
'No' => 'Nie',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Akcje automatyczne dla projektu "%s"',
'Add an action' => 'Nowa akcja',
'Event name' => 'Nazwa zdarzenia',
- 'Action name' => 'Nazwa akcji',
- 'Action parameters' => 'Parametry akcji',
'Action' => 'Akcja',
'Event' => 'Zdarzenie',
'When the selected event occurs execute the corresponding action.' => 'Gdy następuje wybrane zdarzenie, uruchom odpowiednią akcję',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozycja',
'Duplicate to another project' => 'Skopiuj do innego projektu',
'Duplicate' => 'Utwórz kopię',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Komentarz został zapisany.',
'Unable to update your comment.' => 'Nie udało się zapisać komentarza.',
'Remove a comment' => 'Usuń komentarz',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategoria:',
'Categories' => 'Kategorie',
'Your category have been created successfully.' => 'Pomyślnie utworzono kategorię.',
- 'Unable to create your category.' => 'Nie można tworzyć kategorii.',
'This category has been updated successfully.' => 'Pomyślnie zaktualizowano kategorię',
'Unable to update this category.' => 'Nie można zaktualizować kategorii',
'Remove a category' => 'Usuń kategorię',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Dodaj członka grupy',
'Do you really want to remove this group: "%s"?' => 'Czy na pewno chcesz usunąć grupę "%s"?',
'There is no user in this group.' => 'Wybrana grupa nie posiada członków.',
- 'Remove this user' => 'Usuń użytkownika',
'Permissions' => 'Prawa dostępu',
'Allowed Users' => 'Użytkownicy, którzy mają dostęp',
'No user have been allowed specifically.' => 'Żaden użytkownik nie ma przyznanego dostępu.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/pt_BR/translations.php b/app/Locale/pt_BR/translations.php
index 1203caa0..5694380e 100644
--- a/app/Locale/pt_BR/translations.php
+++ b/app/Locale/pt_BR/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Nenhum',
- 'edit' => 'editar',
'Edit' => 'Editar',
- 'remove' => 'remover',
'Remove' => 'Remover',
'Yes' => 'Sim',
'No' => 'Não',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Ações automáticas para o projeto "%s"',
'Add an action' => 'Adicionar Ação',
'Event name' => 'Nome do evento',
- 'Action name' => 'Nome da ação',
- 'Action parameters' => 'Parâmetros da ação',
'Action' => 'Ação',
'Event' => 'Evento',
'When the selected event occurs execute the corresponding action.' => 'Quando o evento selecionado ocorrer execute a ação correspondente.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posição',
'Duplicate to another project' => 'Duplicar para outro projeto',
'Duplicate' => 'Duplicar',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Comentário atualizado com sucesso.',
'Unable to update your comment.' => 'Não é possível atualizar o seu comentário.',
'Remove a comment' => 'Remover um comentário',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Categoria:',
'Categories' => 'Categorias',
'Your category have been created successfully.' => 'Sua categoria foi criada com sucesso.',
- 'Unable to create your category.' => 'Não foi possível criar a sua categoria.',
'This category has been updated successfully.' => 'A sua categoria foi atualizada com sucesso.',
'Unable to update this category.' => 'Não foi possível atualizar a sua categoria.',
'Remove a category' => 'Remover uma categoria',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Adicionar um membro ao grupo',
'Do you really want to remove this group: "%s"?' => 'Você realmente deseja excluir este grupo: "%s"?',
'There is no user in this group.' => 'Não há usuários neste grupo.',
- 'Remove this user' => 'Remover este usuário',
'Permissions' => 'Permissões',
'Allowed Users' => 'Usuários autorizados',
'No user have been allowed specifically.' => 'Nenhum usuário foi especificamente autorizado.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/pt_PT/translations.php b/app/Locale/pt_PT/translations.php
index 3fdc56cd..b211b2b4 100644
--- a/app/Locale/pt_PT/translations.php
+++ b/app/Locale/pt_PT/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => ' ',
'None' => 'Nenhum',
- 'edit' => 'editar',
'Edit' => 'Editar',
- 'remove' => 'remover',
'Remove' => 'Remover',
'Yes' => 'Sim',
'No' => 'Não',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Acções automáticas para o projeto "%s"',
'Add an action' => 'Adicionar Acção',
'Event name' => 'Nome do evento',
- 'Action name' => 'Nome da acção',
- 'Action parameters' => 'Parâmetros da acção',
'Action' => 'Acção',
'Event' => 'Evento',
'When the selected event occurs execute the corresponding action.' => 'Quando o evento selecionado ocorrer execute a acção correspondente.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Posição',
'Duplicate to another project' => 'Duplicar para outro projeto',
'Duplicate' => 'Duplicar',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Comentário actualizado com sucesso.',
'Unable to update your comment.' => 'Não é possível actualizar o seu comentário.',
'Remove a comment' => 'Remover um comentário',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Categoria:',
'Categories' => 'Categorias',
'Your category have been created successfully.' => 'A sua categoria foi criada com sucesso.',
- 'Unable to create your category.' => 'Não foi possível criar a sua categoria.',
'This category has been updated successfully.' => 'A sua categoria foi actualizada com sucesso.',
'Unable to update this category.' => 'Não foi possível actualizar a sua categoria.',
'Remove a category' => 'Remover uma categoria',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Adicionar membro de grupo',
'Do you really want to remove this group: "%s"?' => 'Tem a certeza que quer remover este grupo: "%s"?',
'There is no user in this group.' => 'Não existe utilizadores neste grupo.',
- 'Remove this user' => 'Remover este utilizador',
'Permissions' => 'Permissões',
'Allowed Users' => 'Utilizadores Permitidos',
'No user have been allowed specifically.' => 'Nenhum utilizador foi especificamente permitido.',
@@ -1309,4 +1303,21 @@ return array(
'This project is open' => 'Este projeto está aberto',
'This project is closed' => 'Este projecto está fechado',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/ru_RU/translations.php b/app/Locale/ru_RU/translations.php
index 5ba1b2af..1dcb8a43 100644
--- a/app/Locale/ru_RU/translations.php
+++ b/app/Locale/ru_RU/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'Отсутствует',
- 'edit' => 'изменить',
'Edit' => 'Изменить',
- 'remove' => 'удалить',
'Remove' => 'Удалить',
'Yes' => 'Да',
'No' => 'Нет',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Автоматические действия для проекта « %s »',
'Add an action' => 'Добавить действие',
'Event name' => 'Имя события',
- 'Action name' => 'Имя действия',
- 'Action parameters' => 'Параметры действия',
'Action' => 'Действие',
'Event' => 'Событие',
'When the selected event occurs execute the corresponding action.' => 'Когда случится ВЫБРАННОЕ событие выполняется СООТВЕТСТВУЮЩЕЕ действие.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Расположение',
'Duplicate to another project' => 'Клонировать в другой проект',
'Duplicate' => 'Клонировать',
- 'link' => 'ссылка',
+ 'Link' => 'Cсылка',
'Comment updated successfully.' => 'Комментарий обновлён.',
'Unable to update your comment.' => 'Не удалось обновить ваш комментарий.',
'Remove a comment' => 'Удалить комментарий',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Категория:',
'Categories' => 'Категории',
'Your category have been created successfully.' => 'Категория создана.',
- 'Unable to create your category.' => 'Не удалось создать категорию.',
'This category has been updated successfully.' => 'Категория обновлена.',
'Unable to update this category.' => 'Не удалось обновить категорию.',
'Remove a category' => 'Удалить категорию',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Добавить участника в группу',
'Do you really want to remove this group: "%s"?' => 'Вы действительно хотите удалить группу "%s"?',
'There is no user in this group.' => 'В этой группе нет участников.',
- 'Remove this user' => 'Удалить пользователя.',
'Permissions' => 'Разрешения',
'Allowed Users' => 'Разрешенные пользователи',
'No user have been allowed specifically.' => 'Нет заданных разрешений для пользователей.',
@@ -1309,4 +1303,21 @@ return array(
'This project is open' => 'Этот проект открыт',
'This project is closed' => 'Этот проект закрыт',
'Unable to upload files, check the permissions of your data folder.' => 'Невозможно загрузить файлы, проверьте права доступа на папку "data".',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/sr_Latn_RS/translations.php b/app/Locale/sr_Latn_RS/translations.php
index 36fa8a90..6aa3cbf7 100644
--- a/app/Locale/sr_Latn_RS/translations.php
+++ b/app/Locale/sr_Latn_RS/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'None',
- 'edit' => 'izmeni',
'Edit' => 'Izmeni',
- 'remove' => 'ukloni',
'Remove' => 'Ukloni',
'Yes' => 'Da',
'No' => 'Ne',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Akcje za automatizaciju projekta "%s"',
'Add an action' => 'dodaj akcju',
'Event name' => 'Naziv događaja',
- 'Action name' => 'Naziv akcije',
- 'Action parameters' => 'Parametri akcije',
'Action' => 'Akcija',
'Event' => 'Događaj',
'When the selected event occurs execute the corresponding action.' => 'Kad se događaj desi izvrši odgovarajuću akciju',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozicija',
'Duplicate to another project' => 'Kopiraj u drugi projekat',
'Duplicate' => 'Napravi kopiju',
- 'link' => 'link',
+ 'Link' => 'Link',
'Comment updated successfully.' => 'Komentar uspešno ažuriran.',
'Unable to update your comment.' => 'Neuspešno ažuriranje komentara.',
'Remove a comment' => 'Obriši komentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategorija:',
'Categories' => 'Kategorije',
'Your category have been created successfully.' => 'Uspešno kreirana kategorija.',
- 'Unable to create your category.' => 'Nije moguće kreirati kategoriju.',
'This category has been updated successfully.' => 'Kategorija je uspešno izmenjena',
'Unable to update this category.' => 'Nemoguće izmeniti kategoriju',
'Remove a category' => 'Obriši kategoriju',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/sv_SE/translations.php b/app/Locale/sv_SE/translations.php
index 63977737..3e36175a 100644
--- a/app/Locale/sv_SE/translations.php
+++ b/app/Locale/sv_SE/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => ',',
'number.thousands_separator' => '.',
'None' => 'Ingen',
- 'edit' => 'redigera',
'Edit' => 'Redigera',
- 'remove' => 'ta bort',
'Remove' => 'Ta bort',
'Yes' => 'Ja',
'No' => 'Nej',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'Automatiska åtgärder för projektet "%s"',
'Add an action' => 'Lägg till en åtgärd',
'Event name' => 'Händelsenamn',
- 'Action name' => 'Åtgärdsnamn',
- 'Action parameters' => 'Åtgärdsparametrar',
'Action' => 'Åtgärd',
'Event' => 'Händelse',
'When the selected event occurs execute the corresponding action.' => 'När händelsen inträffar, kör inställd åtgärd.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Position',
'Duplicate to another project' => 'Kopiera till ett annat projekt',
'Duplicate' => 'Kopiera uppgiften',
- 'link' => 'länk',
+ 'Link' => 'Länk',
'Comment updated successfully.' => 'Kommentaren har uppdaterats.',
'Unable to update your comment.' => 'Kunde inte uppdatera din kommentar.',
'Remove a comment' => 'Ta bort en kommentar',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori:',
'Categories' => 'Ange kategorier',
'Your category have been created successfully.' => 'Din kategori har skapats',
- 'Unable to create your category.' => 'Kunde inte skapa din kategori',
'This category has been updated successfully.' => 'Din kategori har uppdaterats',
'Unable to update this category.' => 'Kunde inte uppdatera din kategori',
'Remove a category' => 'Ta bort en kategori',
@@ -899,7 +894,6 @@ return array(
// 'Add group member' => '',
// 'Do you really want to remove this group: "%s"?' => '',
// 'There is no user in this group.' => '',
- // 'Remove this user' => '',
// 'Permissions' => '',
// 'Allowed Users' => '',
// 'No user have been allowed specifically.' => '',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/th_TH/translations.php b/app/Locale/th_TH/translations.php
index 38b1706a..cf287ce5 100644
--- a/app/Locale/th_TH/translations.php
+++ b/app/Locale/th_TH/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'ไม่มี',
- 'edit' => 'แก้ไข',
'Edit' => 'แก้ไข',
- 'remove' => 'ลบ',
'Remove' => 'ลบ',
'Yes' => 'ใช่',
'No' => 'ไม่',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => 'การกระทำอัตโนมัติสำหรับโปรเจค « %s »',
'Add an action' => 'เพิ่มการกระทำ',
'Event name' => 'ชื่อเหตุกาณ์',
- 'Action name' => 'ชื่อการกระทำ',
- 'Action parameters' => 'พารามิเตอร์ของการกระทำ',
'Action' => 'การกระทำ',
'Event' => 'เหตุการณ์',
'When the selected event occurs execute the corresponding action.' => 'เหตุการ์ที่เลือกจะเกิดขึ้นเมื่อมีการกระทำที่สอดคล้องกัน',
@@ -187,7 +183,7 @@ return array(
'Position' => 'ตำแหน่ง',
'Duplicate to another project' => 'ทำซ้ำในโปรเจคอื่น',
'Duplicate' => 'ทำซ้ำ',
- 'link' => 'ลิงค์',
+ 'Link' => 'ลิงค์',
'Comment updated successfully.' => 'ปรับปรุงความคิดเห็นเรียบร้อยแล้ว',
'Unable to update your comment.' => 'ไม่สามารถปรับปรุงความคิดเห็นได้',
'Remove a comment' => 'ลบความคิดเห็น',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'หมวดหมู่:',
'Categories' => 'หมวดหมู่',
'Your category have been created successfully.' => 'สร้างหมวดหมู่เรียบร้อยแล้ว',
- 'Unable to create your category.' => 'ไม่สามารถสร้างหมวดหมู่ได้',
'This category has been updated successfully.' => 'ปรับปรุงหมวดเรียบร้อยแล้ว',
'Unable to update this category.' => 'ไม่สามารถปรับปรุงหมวดหมู่ได้',
'Remove a category' => 'ลบหมวดหมู่',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'เพิ่มสมาชิกกลุ่ม',
'Do you really want to remove this group: "%s"?' => 'คุณต้องการลบกลุ่มนี้: "%s"?',
'There is no user in this group.' => 'ไม่มีผู้ใช้ในกลุ่มนี้',
- 'Remove this user' => 'เอาผู้ใช้คนนี้ออก',
'Permissions' => 'การอนุญาตใช้งาน',
'Allowed Users' => 'การอนุญาตผู้ใช้',
'No user have been allowed specifically.' => 'ไม่มีผู้ใช้ได้รับอนุญาตเป็นพิเศษ',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/tr_TR/translations.php b/app/Locale/tr_TR/translations.php
index 1d97ba02..00ff0491 100644
--- a/app/Locale/tr_TR/translations.php
+++ b/app/Locale/tr_TR/translations.php
@@ -4,9 +4,7 @@ return array(
// 'number.decimals_separator' => '',
// 'number.thousands_separator' => '',
'None' => 'Hiçbiri',
- 'edit' => 'düzenle',
'Edit' => 'Düzenle',
- 'remove' => 'sil',
'Remove' => 'Sil',
'Yes' => 'Evet',
'No' => 'Hayır',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => '"%s" projesi için otomatik işlemler',
'Add an action' => 'İşlem ekle',
'Event name' => 'Durum adı',
- 'Action name' => 'İşlem adı',
- 'Action parameters' => 'İşlem parametreleri',
'Action' => 'İşlem',
'Event' => 'Durum',
'When the selected event occurs execute the corresponding action.' => 'Seçilen durum oluştuğunda ilgili eylemi gerçekleştir.',
@@ -187,7 +183,7 @@ return array(
'Position' => 'Pozisyon',
'Duplicate to another project' => 'Başka bir projeye kopyala',
'Duplicate' => 'Kopya oluştur',
- 'link' => 'bağlantı',
+ 'Link' => 'Bağlantı',
'Comment updated successfully.' => 'Yorum güncellendi.',
'Unable to update your comment.' => 'Yorum güncellenemedi.',
'Remove a comment' => 'Bir yorumu sil',
@@ -234,7 +230,6 @@ return array(
'Category:' => 'Kategori:',
'Categories' => 'Kategoriler',
'Your category have been created successfully.' => 'Kategori başarıyla oluşturuldu.',
- 'Unable to create your category.' => 'Kategori oluşturulamadı.',
'This category has been updated successfully.' => 'Kategori başarıyla güncellendi.',
'Unable to update this category.' => 'Kategori güncellenemedi.',
'Remove a category' => 'Bir kategoriyi sil',
@@ -899,7 +894,6 @@ return array(
'Add group member' => 'Grup üyesi ekle',
'Do you really want to remove this group: "%s"?' => '"%s" grubunu silmek istediğinize emin misiniz?',
'There is no user in this group.' => 'Bu grupta hiç kullanıcı yok.',
- 'Remove this user' => 'Bu kullanıcıyı sil',
'Permissions' => 'İzinler',
'Allowed Users' => 'İzin verilen kullanıcı',
'No user have been allowed specifically.' => 'Hiç bir kullanıcıya özel olarak izin verilmemiş.',
@@ -1309,4 +1303,21 @@ return array(
// 'This project is open' => '',
// 'This project is closed' => '',
// 'Unable to upload files, check the permissions of your data folder.' => '',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Locale/zh_CN/translations.php b/app/Locale/zh_CN/translations.php
index 793b6dcc..f84e5465 100644
--- a/app/Locale/zh_CN/translations.php
+++ b/app/Locale/zh_CN/translations.php
@@ -4,9 +4,7 @@ return array(
'number.decimals_separator' => '.',
'number.thousands_separator' => ',',
'None' => '无',
- 'edit' => '编辑',
'Edit' => '编辑',
- 'remove' => '移除',
'Remove' => '移除',
'Yes' => '是',
'No' => '否',
@@ -167,8 +165,6 @@ return array(
'Automatic actions for the project "%s"' => '项目"%s"的自动动作',
'Add an action' => '添加动作',
'Event name' => '事件名称',
- 'Action name' => '动作名称',
- 'Action parameters' => '动作参数',
'Action' => '动作',
'Event' => '事件',
'When the selected event occurs execute the corresponding action.' => '当所选事件发生时执行相应动作。',
@@ -187,7 +183,7 @@ return array(
'Position' => '位置',
'Duplicate to another project' => '复制到另一项目',
'Duplicate' => '复制',
- 'link' => '连接',
+ 'Link' => '连接',
'Comment updated successfully.' => '评论成功更新。',
'Unable to update your comment.' => '无法更新您的评论。',
'Remove a comment' => '移除评论',
@@ -234,7 +230,6 @@ return array(
'Category:' => '分类:',
'Categories' => '分类',
'Your category have been created successfully.' => '成功为您创建分类。',
- 'Unable to create your category.' => '无法为您创建分类。',
'This category has been updated successfully.' => '成功为您更新分类。',
'Unable to update this category.' => '无法为您更新分类。',
'Remove a category' => '移除一个分类',
@@ -899,7 +894,6 @@ return array(
'Add group member' => '添加用户组成员',
'Do you really want to remove this group: "%s"?' => '你真的想要移除用户组:"%s"?',
'There is no user in this group.' => '当前用户组下没有成员',
- 'Remove this user' => '移除用户',
'Permissions' => '权限',
'Allowed Users' => '被允许的用户',
'No user have been allowed specifically.' => '没有被允许的用户。',
@@ -1309,4 +1303,21 @@ return array(
'This project is open' => '项目已打开',
'This project is closed' => '项目已关闭',
'Unable to upload files, check the permissions of your data folder.' => '无法上传文件,请检查你的data目录权限。',
+ // 'Another category with the same name exists in this project' => '',
+ // 'Comment sent by email successfully.' => '',
+ // 'Sent by email to [%s](mailto:%s) (%s)' => '',
+ // 'Unable to read uploaded file.' => '',
+ // 'Database uploaded successfully.' => '',
+ // 'Task sent by email successfully.' => '',
+ // 'There is no category in this project.' => '',
+ // 'Send by email' => '',
+ // 'Create and send a comment by email' => '',
+ // 'Subject' => '',
+ // 'Upload the database' => '',
+ // 'You could upload the previously downloaded Sqlite database (Gzip format).' => '',
+ // 'Database file' => '',
+ // 'Upload' => '',
+ // 'Remove this user from group' => '',
+ // 'Your project must have at least one active swimlane.' => '',
+ // 'Project: %s' => '',
);
diff --git a/app/Template/config/upload_db.php b/app/Template/config/upload_db.php
index d7aaac86..b247cf75 100644
--- a/app/Template/config/upload_db.php
+++ b/app/Template/config/upload_db.php
@@ -1,10 +1,10 @@
<div class="page-header">
- <h2><?= t('Upload the Sqlite database') ?></h2>
+ <h2><?= t('Upload the database') ?></h2>
</div>
<div class="alert">
<p>
- <?= t('You can upload the Gzip compressed Sqlite database previously downloaded.') ?>
+ <?= t('You could upload the previously downloaded Sqlite database (Gzip format).') ?>
</p>
</div>
diff --git a/app/Template/task/sidebar.php b/app/Template/task/sidebar.php
index f8f1ebde..952c3298 100644
--- a/app/Template/task/sidebar.php
+++ b/app/Template/task/sidebar.php
@@ -62,6 +62,9 @@
<li>
<?= $this->modal->small('clone', t('Move to another project'), 'TaskDuplicationController', 'move', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
</li>
+ <li>
+ <?= $this->modal->small('paper-plane', t('Send by email'), 'TaskMailController', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ </li>
<?php if ($task['is_active'] == 1 && $this->projectRole->isSortableColumn($task['project_id'], $task['column_id'])): ?>
<li>
<?= $this->modal->small('arrows', t('Move position'), 'TaskMovePositionController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>