From 082fba35953771e7e88c699e9fbb78a1ae960f7e Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Sat, 5 Sep 2015 21:36:13 -0700 Subject: [PATCH 01/78] Update credits file --- doc/CREDITS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/CREDITS b/doc/CREDITS index 3523293bed..b893abc219 100644 --- a/doc/CREDITS +++ b/doc/CREDITS @@ -50,8 +50,8 @@ People who contributed code to MantisBT, listed in reverse order of the number of commits authored. Victor Boctor -Paul Richards Damien Regad +Paul Richards Kenzaburo Ito Glenn Henshaw Julian Fitzell @@ -76,8 +76,8 @@ Martin Fuchs zakman jbrugger jctrosset -ryandesign Rafik Robeal +ryandesign rufinus Kirill Krasnov David Newcomb From b8fe45aecd48cba57726bc8cba5940781d3fe0f9 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sun, 6 Sep 2015 12:08:14 +0200 Subject: [PATCH 02/78] Fix error 1105 while changing bug status Attempting to change the bug status from bug_change_status_page.php (for example, acknowledging or confirming a bug) results in APPLICATION ERROR 1105. 'last_updated' is an int in $t_existing_bug, but is read as string into $t_updated_bug, which results in a failed exact compare (!==) at line 116. Thanks to Alex Volkov for the research and proposed fix. Fixes #20075 --- bug_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bug_update.php b/bug_update.php index a0575b0318..6eb3c4c562 100644 --- a/bug_update.php +++ b/bug_update.php @@ -91,7 +91,7 @@ $t_updated_bug->eta = gpc_get_int( 'eta', $t_existing_bug->eta ); $t_updated_bug->fixed_in_version = gpc_get_string( 'fixed_in_version', $t_existing_bug->fixed_in_version ); $t_updated_bug->handler_id = gpc_get_int( 'handler_id', $t_existing_bug->handler_id ); -$t_updated_bug->last_updated = gpc_get_string( 'last_updated' ); +$t_updated_bug->last_updated = gpc_get_int( 'last_updated' ); $t_updated_bug->os = gpc_get_string( 'os', $t_existing_bug->os ); $t_updated_bug->os_build = gpc_get_string( 'os_build', $t_existing_bug->os_build ); $t_updated_bug->platform = gpc_get_string( 'platform', $t_existing_bug->platform ); From 270949876d462dadace29082d431d5f368c02c18 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Fri, 4 Sep 2015 22:40:52 -0700 Subject: [PATCH 03/78] Hyperlink custom fields on manage project page Fixes #20078 --- manage_proj_edit_page.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manage_proj_edit_page.php b/manage_proj_edit_page.php index 68cf18bc80..9c005cc27d 100644 --- a/manage_proj_edit_page.php +++ b/manage_proj_edit_page.php @@ -454,7 +454,8 @@ foreach( $t_custom_fields as $t_field_id ) { $t_desc = custom_field_get_definition( $t_field_id ); ?> - + ' . + custom_field_get_display_name( $t_desc['name'] ) . '' ?>
From ba13782f46bbe15c1dd5a3a5a0c99793736cc769 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Fri, 4 Sep 2015 22:30:34 -0700 Subject: [PATCH 04/78] Fix custom field access denied on bug update page The previous fix caused triggering of access_denied due to the addition of the BUG_UPDATE_TYPE_NORMAL. Issue #20002 --- bug_update.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bug_update.php b/bug_update.php index 6eb3c4c562..fc0264147b 100644 --- a/bug_update.php +++ b/bug_update.php @@ -276,12 +276,7 @@ foreach ( $t_related_custom_field_ids as $t_cf_id ) { $t_cf_def = custom_field_get_definition( $t_cf_id ); - # if this is not a full update action and custom field is not on the form, then don't - # continue with code that checks access level and validates the field. - if ( $f_update_type != BUG_UPDATE_TYPE_NORMAL && !custom_field_is_present( $t_cf_id ) ) { - continue; - } - + # If the custom field is not set and is required, then complain! if( !gpc_isset_custom_field( $t_cf_id, $t_cf_def['type'] ) ) { if( $t_cf_def[$t_cf_require_check] && $f_update_type == BUG_UPDATE_TYPE_NORMAL && @@ -293,6 +288,11 @@ } } + # Otherwise, if not present then skip it. + if ( !custom_field_is_present( $t_cf_id ) ) { + continue; + } + if( !custom_field_has_write_access( $t_cf_id, $f_bug_id ) ) { trigger_error( ERROR_ACCESS_DENIED, ERROR ); } From fe6b8cab7ae7ef7c0b337d327997040124372e33 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Sun, 6 Sep 2015 09:54:41 -0700 Subject: [PATCH 05/78] Revert "Fix error 1105 while changing bug status" This reverts commit b8fe45aecd48cba57726bc8cba5940781d3fe0f9. --- bug_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bug_update.php b/bug_update.php index fc0264147b..6311da061c 100644 --- a/bug_update.php +++ b/bug_update.php @@ -91,7 +91,7 @@ $t_updated_bug->eta = gpc_get_int( 'eta', $t_existing_bug->eta ); $t_updated_bug->fixed_in_version = gpc_get_string( 'fixed_in_version', $t_existing_bug->fixed_in_version ); $t_updated_bug->handler_id = gpc_get_int( 'handler_id', $t_existing_bug->handler_id ); -$t_updated_bug->last_updated = gpc_get_int( 'last_updated' ); +$t_updated_bug->last_updated = gpc_get_string( 'last_updated' ); $t_updated_bug->os = gpc_get_string( 'os', $t_existing_bug->os ); $t_updated_bug->os_build = gpc_get_string( 'os_build', $t_existing_bug->os_build ); $t_updated_bug->platform = gpc_get_string( 'platform', $t_existing_bug->platform ); From b218669cd70f60e5b103541294b35e65316ffa8a Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Sun, 6 Sep 2015 10:02:27 -0700 Subject: [PATCH 06/78] Update version to 1.3.0-beta.3 --- core/constant_inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/constant_inc.php b/core/constant_inc.php index 702aca1689..a747762ab9 100644 --- a/core/constant_inc.php +++ b/core/constant_inc.php @@ -21,7 +21,7 @@ /** * Mantis Version */ -define( 'MANTIS_VERSION', '1.3.0-rc1-dev' ); +define( 'MANTIS_VERSION', '1.3.0-beta.3' ); define( 'FILTER_VERSION', 'v9' ); # --- constants ------------------- From 0021b3f9f600c7640dfdcd6b965a0d319f046d1c Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 7 Sep 2015 17:20:42 +0200 Subject: [PATCH 07/78] Changed version to 1.3.0-rc1-dev [skip ci] --- core/constant_inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/constant_inc.php b/core/constant_inc.php index a747762ab9..702aca1689 100644 --- a/core/constant_inc.php +++ b/core/constant_inc.php @@ -21,7 +21,7 @@ /** * Mantis Version */ -define( 'MANTIS_VERSION', '1.3.0-beta.3' ); +define( 'MANTIS_VERSION', '1.3.0-rc1-dev' ); define( 'FILTER_VERSION', 'v9' ); # --- constants ------------------- From 96217962fd185d30bf49bc9d5b9f40a3924f1a46 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Mon, 7 Sep 2015 11:48:04 -0700 Subject: [PATCH 08/78] Remove extra quotation in checkbox custom field Fixes #20083 --- core/cfdefs/cfdef_standard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cfdefs/cfdef_standard.php b/core/cfdefs/cfdef_standard.php index 10bf8f7ccb..b74e8dd551 100644 --- a/core/cfdefs/cfdef_standard.php +++ b/core/cfdefs/cfdef_standard.php @@ -324,7 +324,7 @@ function cfdef_input_checkbox( array $p_field_def, $p_custom_field_value ) { echo '\n"; - echo '' . "\n"; + echo '' . "\n"; } } From d2d52ad25f6ed1b41797c8bd042bcc71a99f6e77 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 7 Sep 2015 16:10:37 +0200 Subject: [PATCH 09/78] Enable dynamic filters for 'Match type' and 'Highlight changed' Add missing 'dynamic-filter-expander' class to enable the AJAX. Fixes #20080 --- core/filter_api.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/core/filter_api.php b/core/filter_api.php index 35e9ce50ae..549c974b6c 100644 --- a/core/filter_api.php +++ b/core/filter_api.php @@ -3389,7 +3389,13 @@ function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_e - : + + > + : + + > + > From f932c3aa67177500a7a6c53ad0a8a402ab859f87 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Mon, 7 Sep 2015 16:16:11 +0200 Subject: [PATCH 10/78] New 'filter_match_type_label' string This is step 1 of a fix to make the label string name more consistent, without breaking translations. Step 2 will replace the old 'filter_match_type' string with this one and delete it, once the translations have been updated. --- lang/strings_english.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/lang/strings_english.txt b/lang/strings_english.txt index d1ec260065..7d1456e3d3 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -1188,6 +1188,7 @@ $s_recently_visited = 'Recently Visited'; $s_priority_abbreviation = 'P'; $s_note_user_id_label = 'Note By:'; $s_filter_match_type = 'Match Type'; +$s_filter_match_type_label = 'Match Type:'; $s_filter_match_all = 'All Conditions'; $s_filter_match_any = 'Any Condition'; From 1a1b5d101388d9d6011f4214a7ceb3a17c438378 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 10 Sep 2015 10:37:00 +0200 Subject: [PATCH 11/78] Localisation updates from https://translatewiki.net. --- lang/strings_arabicegyptianspoken.txt | 4 + lang/strings_ast.txt | 540 ++++++++++++++++++ lang/strings_breton.txt | 1 + lang/strings_chinese_traditional.txt | 2 +- lang/strings_czech.txt | 41 +- lang/strings_german.txt | 2 +- lang/strings_interlingua.txt | 20 +- lang/strings_italian.txt | 22 +- lang/strings_japanese.txt | 4 +- lang/strings_korean.txt | 3 +- lang/strings_latvian.txt | 29 + lang/strings_ripoarisch.txt | 40 +- lang/strings_serbian.txt | 78 ++- lang/strings_slovak.txt | 5 +- lang/strings_slovene.txt | 5 +- lang/strings_spanish.txt | 4 +- lang/strings_swedish.txt | 2 +- lang/strings_swissgerman.txt | 1 + lang/strings_turkish.txt | 6 +- lang/strings_ukrainian.txt | 2 + .../lang/strings_serbian.txt | 3 +- .../XmlImportExport/lang/strings_italian.txt | 3 + .../XmlImportExport/lang/strings_serbian.txt | 4 + .../XmlImportExport/lang/strings_turkish.txt | 2 + 24 files changed, 751 insertions(+), 72 deletions(-) create mode 100644 lang/strings_ast.txt diff --git a/lang/strings_arabicegyptianspoken.txt b/lang/strings_arabicegyptianspoken.txt index e68f953c34..69f3b2a01c 100644 --- a/lang/strings_arabicegyptianspoken.txt +++ b/lang/strings_arabicegyptianspoken.txt @@ -57,6 +57,7 @@ $s_actiongroup_menu_update_view_status = 'حدّت حالة العرض'; $s_actiongroup_menu_update_category = 'حدّث التصنيف'; $s_actiongroup_menu_set_sticky = 'Set/Unset Sticky'; $s_actiongroup_menu_update_field = 'تحديث %1$s'; +$s_actiongroup_menu_update_product_version = 'تحديث إصدار المنتج'; $s_actiongroup_menu_update_target_version = 'حدّث النسخه الهدف'; $s_actiongroup_menu_update_fixed_in_version = 'حدّث النسخه المتصلحه فى'; $s_actiongroup_menu_update_product_build = 'حدّث منتَج البُنا'; @@ -163,9 +164,12 @@ $s_status_group_bugs_button = 'تحديث الحالة'; $s_category_group_bugs_button = 'تحديث التصنيف'; $s_view_status_group_bugs_button = 'تحديث حاله العرض'; $s_set_sticky_group_bugs_button = 'ضبط/عدم ضبط كملصوقة'; +$s_product_version_group_bugs_button = 'تحديث إصدار المنتج'; $s_fixed_in_version_group_bugs_button = 'تحديث أصلحت فى النسخة'; $s_target_version_group_bugs_button = 'تحديث النسخه الهدف'; $s_update_severity_title = 'تحديث الشدة'; +$s_update_severity_msg = 'اختار أولويه المشاكل'; +$s_update_severity_button = 'حدّث التشديد'; $s_hide_button = 'عرض المختار فقط'; $s_printing_preferences_title = 'اختر الحقول للطبع'; $s_printing_options_link = 'خيارات الطبع'; diff --git a/lang/strings_ast.txt b/lang/strings_ast.txt new file mode 100644 index 0000000000..a988b8a879 --- /dev/null +++ b/lang/strings_ast.txt @@ -0,0 +1,540 @@ +. + * + * ********************************************************************** + * ** This file contains translations stored in translatewiki.net. ** + * ** See https://translatewiki.net/wiki/Project:About for information ** + * ** on copyright/license for translatewiki.net translations. ** + * ********************************************************************** + * ** ** + * ** DO NOT UPDATE MANUALLY ** + * ** ** + * ** To improve a translation please visit http://translatewiki.net ** + * ** Detailed instructions on how to create or update translations at ** + * ** http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto ** + * ********************************************************************** + */ +/** Asturian (asturianu) + * + * See the qqq 'language' for message documentation incl. usage of parameters + * To improve a translation please visit http://translatewiki.net + * + * @ingroup Language + * @file + * + * @author Xuacu + */ + +$s_actiongroup_menu_move = 'Mover'; +$s_actiongroup_menu_copy = 'Copiar'; +$s_actiongroup_menu_assign = 'Atribuir'; +$s_actiongroup_menu_close = 'Zarrar'; +$s_actiongroup_menu_delete = 'Desaniciar'; +$s_actiongroup_menu_resolve = 'Resolver'; +$s_actiongroup_menu_update_priority = 'Anovar la prioridá'; +$s_actiongroup_menu_update_status = 'Anovar l\'estáu'; +$s_actiongroup_menu_update_severity = 'Anovar la severidá'; +$s_actiongroup_menu_update_view_status = 'Anovar l\'estáu de visibilidá'; +$s_actiongroup_menu_update_category = 'Anovar la categoría'; +$s_actiongroup_menu_set_sticky = 'Fixar/Desfixar'; +$s_actiongroup_menu_update_field = 'Anovar %1$s'; +$s_actiongroup_menu_update_product_version = 'Anovar la versión del productu'; +$s_actiongroup_menu_update_target_version = 'Anovar la versión destín'; +$s_actiongroup_menu_update_fixed_in_version = 'Anovar la versión de resolución'; +$s_actiongroup_menu_update_product_build = 'Anovar la compilación del productu'; +$s_actiongroup_menu_add_note = 'Amestar nota'; +$s_actiongroup_menu_attach_tags = 'Amestar etiquetes'; +$s_actiongroup_bugs = 'Incidencies seleicionaes'; +$s_actiongroup_error_issue_is_readonly = 'La incidencia ye de sólo llectura.'; +$s_all_projects = 'Tolos proyeutos'; +$s_move_bugs = 'Mover incidencies'; +$s_operation_successful = 'Operación correuta.'; +$s_date_order = 'Ordenar por data'; +$s_print_all_bug_page_link = 'Imprimir informes'; +$s_csv_export = 'Esportar a CSV'; +$s_excel_export = 'Esportar a Excel'; +$s_login_anonymously = 'Aniciar sesión de mou anónimu'; +$s_anonymous = 'Anónimu'; +$s_jump_to_bugnotes = 'Saltar a les Notes'; +$s_public_project_msg = 'Esti proyeutu ye públicu. Tolos usuarios tienen accesu.'; +$s_private_project_msg = 'Esti proyeutu ye priváu. Solo tienen accesu los alministradores y los usuarios amestaos manualmente.'; +$s_access_level_project = 'Nivel d\'accesu al proyeutu'; +$s_view_submitted_bug_link = 'Ver la Incidencia unviada %1$s'; +$s_assigned_projects = 'Proyeutos atribuíos'; +$s_assigned_projects_label = 'Proyeutos atribuíos'; +$s_unassigned_projects_label = 'Proyeutos sin atribuir'; +$s_print = 'Imprentar'; +$s_jump = 'Saltar'; +$s_copy_users = 'Copiar usuarios'; +$s_copy_categories_from = 'Copiar categoríes de'; +$s_copy_categories_to = 'Copiar categoríes a'; +$s_copy_versions_from = 'Copiar versiones de'; +$s_copy_versions_to = 'Copiar versiones a'; +$s_copy_users_from = 'Copiar usuarios de'; +$s_copy_users_to = 'Copiar usuarios a'; +$s_bug_history = 'Historial de la incidencia'; +$s_field = 'Campu'; +$s_old_value = 'Valor anterior'; +$s_new_value = 'Valor nuevu'; +$s_date_modified = 'Data de cambiu'; +$s_bugnote = 'Nota'; +$s_change = 'Cambiu'; +$s_bugnote_view_state = 'Estáu de visibilidá de la Nota'; +$s_bug_monitor = 'Incidencia monitorizada'; +$s_bug_end_monitor = 'Finar monitorización d\'incidencia'; +$s_announcement = 'Anunciu'; +$s_stays_on_top = 'Siempre arriba'; +$s_bugnote_link_title = 'Enllaz direutu a nota'; +$s_delete_bugnote_button = 'Desaniciar Nota'; +$s_delete_bugnote_sure_msg = '¿Ta seguru de que quier desaniciar esta nota?'; +$s_bug_relationships = 'Rellaciones'; +$s_bug_relationships_label = 'Rellaciones:'; +$s_empty_password_sure_msg = 'L\'usuariu tien una contraseña balera. ¿Ta seguru de que ye lo que quier?'; +$s_empty_password_button = 'Usar una contraseña balera'; +$s_reauthenticate_title = 'Autenticar'; +$s_reauthenticate_message = 'Ta visitando una páxina segura, y la so sesión segura caducó. Por favor, identifíquese pa siguir.'; +$s_no_category = '(Ensin categoría)'; +$s_global_categories = 'Categoríes globales'; +$s_inherit = 'Heredar categoríes'; +$s_inherit_global = 'Heredar categoríes globales'; +$s_inherit_parent = 'Heredar categoríes padre'; +$s_update_subproject_inheritance = 'Anovar la herencia del subproyeutu'; +$s_duplicate_of = 'duplicáu de'; +$s_has_duplicate = 'tien duplicáu'; +$s_related_to = 'rellacionada con'; +$s_dependant_on = 'padre de'; +$s_blocks = 'fia de'; +$s_new_bug = 'Nueva Incidencia'; +$s_bugnote_added = 'Nota añadida'; +$s_bugnote_edited = 'Nota editada'; +$s_bugnote_deleted = 'Nota desaniciada'; +$s_summary_updated = 'Resume anováu'; +$s_description_updated = 'Descripción anovada'; +$s_additional_information_updated = 'Información estra anovada'; +$s_steps_to_reproduce_updated = 'Pasos pa reproducilo anovaos'; +$s_file_added = 'Ficheru amestáu'; +$s_file_deleted = 'Ficheru desaniciáu'; +$s_bug_deleted = 'Incidencia desaniciada'; +$s_make_private = 'Facela privada'; +$s_make_public = 'Facela pública'; +$s_create_new_project_link = 'Crear un proyeutu nuevu'; +$s_login_link = 'Aniciar sesión'; +$s_select_option = '(seleicionar)'; +$s_bug_actiongroup_access = 'Nun tenía los permisos necesarios pa facer esa aición.'; +$s_bug_actiongroup_status = 'Esta incidencia nun pue cambiase al estáu solicitáu'; +$s_bug_actiongroup_category = 'Esta incidencia nun pue cambiase a la categoría solicitada'; +$s_bug_actiongroup_handler = 'L\'usuariu solicitáu nun tien permisu pa xestionar esta incidencia'; +$s_bug_actiongroup_version = 'La versión especificada nun esiste nel proyeutu d\'esta incidencia'; +$s_close_bugs_conf_msg = '¿Ta seguru de que quier zarrar estes incidencies?'; +$s_delete_bugs_conf_msg = '¿Ta seguru de que quier desaniciar estes incidencies?'; +$s_move_bugs_conf_msg = 'Mover les incidencies a'; +$s_copy_bugs_conf_msg = 'Copiar les incidencies a'; +$s_assign_bugs_conf_msg = 'Atribuir incidencies a'; +$s_resolve_bugs_conf_msg = 'Escoyer la resolución de les incidencies'; +$s_priority_bugs_conf_msg = 'Escoyer la prioridá de les incidencies'; +$s_status_bugs_conf_msg = 'Escoyer l\'estáu de les incidencies'; +$s_view_status_bugs_conf_msg = 'Escoyer la visibilidá de les incidencies'; +$s_category_bugs_conf_msg = 'Escoyer la categoría de les incidencies'; +$s_set_sticky_bugs_conf_msg = '¿Ta seguru que quier fixar/desfixar estes incidencies?'; +$s_product_version_bugs_conf_msg = 'Anovar la versión del productu a'; +$s_fixed_in_version_bugs_conf_msg = 'Anovar la versión de resolución a'; +$s_target_version_bugs_conf_msg = 'Anovar la versión destín a'; +$s_close_group_bugs_button = 'Zarrar incidencies'; +$s_delete_group_bugs_button = 'Desaniciar incidencies'; +$s_move_group_bugs_button = 'Mover incidencies'; +$s_copy_group_bugs_button = 'Copiar incidencies'; +$s_assign_group_bugs_button = 'Atribuir incidencies'; +$s_resolve_group_bugs_button = 'Resolver incidencies'; +$s_priority_group_bugs_button = 'Anovar la prioridá'; +$s_status_group_bugs_button = 'Anovar l\'estáu'; +$s_category_group_bugs_button = 'Anovar la categoría'; +$s_view_status_group_bugs_button = 'Anovar l\'estáu de visibilidá'; +$s_set_sticky_group_bugs_button = 'Fixar/Desfixar'; +$s_product_version_group_bugs_button = 'Anovar la versión del productu'; +$s_fixed_in_version_group_bugs_button = 'Anovar la versión de resolución'; +$s_target_version_group_bugs_button = 'Anovar la versión destín'; +$s_update_severity_title = 'Anovar la severidá'; +$s_update_severity_msg = 'Escoyer la severidá de la incidencia'; +$s_update_severity_button = 'Anovar la severidá'; +$s_hide_button = 'Ver sólo seleicionaos'; +$s_printing_preferences_title = 'Escoyer los campos a imprimir'; +$s_printing_options_link = 'Opciones d\'impresión'; +$s_bugnote_title = 'Títulu de la nota'; +$s_bugnote_date = 'Data de la nota'; +$s_bugnote_description = 'Descripción de la nota'; +$s_error_no_proceed = 'Por favor, use\'l botón «Atrás» del restolador pa volver a la páxina anterior. Allí pue iguar cualquier problema que s\'identificara nesti error o seleicionar otra aición. Tamién pue facer clic nuna opción de la barra de menú pa dir direutamente a una seición nueva.'; +$s_login_error = 'La to cuenta pue tar desactivada o bloquiada, o escurque\'l nome d\'usuariu o contraseña qu\'escribisti ye incorreutu.'; +$s_login_cookies_disabled = 'El to navegador o nun sabe como xestionar les cookies, o refuga xestionales.'; +$s_go_back = 'Volver'; +$s_proceed = 'Siguir'; +$s_switch = 'Cambiar'; +$s_logged_in_as = 'Aniciasti sesión como'; +$s_prefix_for_deleted_users = 'usuariu'; +$s_administrator = 'alministrador'; +$s_myself = 'Yo mesmu'; +$s_default_access_level = 'Nivel d\'accesu predetermináu'; +$s_issue_status_percentage = 'Porcentaxe d\'incidencies por estáu'; +$s_access_levels_enum_string = '10:llector,25:informador,40:actualizador,55:desendolcador,70:xestor,90:alministrador'; +$s_project_status_enum_string = '10:desendolcu,30:publicación,50:estable,70:anticuáu'; +$s_project_view_state_enum_string = '10:públicu,50:priváu'; +$s_view_state_enum_string = '10:públicu,50:priváu'; +$s_priority_enum_string = '10:nenguna,20:baxa,30:normal,40:alta,50:urxente,60:inmediata'; +$s_severity_enum_string = '10:carauterística,20:llixeru,30:testu,40:axuste,50:menor,60:mayor,70:cuelgue,80:bloquéu'; +$s_reproducibility_enum_string = '10:siempre,30:dacuando,50:al debalu,70:nun se comprobó,90:nun ye reproducible,100:desconocío'; +$s_status_enum_string = '10:nuevu,20:más datos,30:reconocíu,40:confirmáu,50:atribuíu,80:resueltu,90:zarráu'; +$s_resolution_enum_string = '10:abiertu,20:iguáu,30:reabiertu,40:nun pue reproducise,50:nun pue iguase,60:duplicáu,70:nun se riquen cambios,80:suspendíu,90:nun va iguase'; +$s_projection_enum_string = '10:nengún,30:axuste,50:igua menor,70:igua mayor,90:rediseñu'; +$s_eta_enum_string = '10:nengún,20:< 1 día,30:2-3 díes,40:< 1 selmana,50:< 1 mes,60:> 1 mes'; +$s_sponsorship_enum_string = '0:Sin pagar,1:Solicitáu,2:Pagáu'; +$s_new_account_subject = 'Rexistru de cuenta'; +$s_new_account_greeting = 'Gracies por rexistrate. Tienes una cuenta col nome d\'usuariu "%1$s". Pa completar el rexistru, visita la URL siguiente (asegúrate d\'escribilo n\'una sola llinia) y configura la to contraseña d\'accesu:'; +$s_new_account_greeting_admincreated = 'L\'usuariu %1$s creó una cuenta pa ti col nome d\'usuariu «%2$s«. Pa completar el rexistru, visita la URL siguiente (asegúrate de que ta escrito n\'una sola llinia) y configura una contraseña d\'accesu propia:'; +$s_new_account_username = 'Nome d\'usuariu:'; +$s_new_account_message = 'Si nun solicitasti nengún rexistru, inora esti mensaxe y nun pasará nada.'; +$s_new_account_do_not_reply = 'Nun respuendas a esti mensaxe'; +$s_new_account_email = 'Corréu electrónicu:'; +$s_new_account_IP = 'Direición IP remota:'; +$s_new_account_signup_msg = 'Creóse la cuenta siguiente:'; +$s_reset_request_msg = 'Alguién (supuestamente tu) solicitó una cambiu de la contraseña con comprobación per corréu electrónicu. Si nun fuisti tu, inora esti mensaxe y nun asocederá nada. + +Si solicitasti esta comprobación, visita la siguiente URL pa cambiar la contraseña:'; +$s_reset_request_in_progress_msg = 'Si disti\'l nome d\'usuariu y direición de corréu electrónicu correutos de la to cuenta, acabamos d\'unviate un mensaxe de confirmación. En recibiendo\'l mensaxe, sigui les instrucciones que contien pa cambiar la contraseña de la cuenta.'; +$s_email_notification_title_for_status_bug_new = 'La siguiente incidencia agora ta n\'estáu NUEVA (otra vuelta)'; +$s_email_notification_title_for_status_bug_feedback = 'La siguiente incidencia rique MÁS INFORMACIÓN.'; +$s_email_notification_title_for_status_bug_acknowledged = 'La siguiente incidencia ACEUTÓSE.'; +$s_email_notification_title_for_status_bug_confirmed = 'La siguiente incidencia CONFIRMÓSE.'; +$s_email_notification_title_for_status_bug_assigned = 'La siguiente incidencia ATRIBUYÓSE.'; +$s_email_notification_title_for_status_bug_resolved = 'La siguiente incidencia RESOLVIÓSE.'; +$s_email_notification_title_for_status_bug_closed = 'La siguiente incidencia ZARRÓSE.'; +$s_email_notification_title_for_action_bug_submitted = 'La siguiente incidencia UNVIÓSE.'; +$s_email_notification_title_for_action_bug_assigned = 'La siguiente incidencia ATRIBUYÓSE.'; +$s_email_notification_title_for_action_bug_reopened = 'La siguiente incidencia REABRIÓSE.'; +$s_email_notification_title_for_action_bug_deleted = 'La siguiente incidencia DESANICIÓSE.'; +$s_email_notification_title_for_action_bug_updated = 'La siguiente incidencia ANOVÓSE.'; +$s_email_notification_title_for_action_sponsorship_added = 'La siguiente incidencia PATROCINÓSE.'; +$s_email_notification_title_for_action_sponsorship_updated = 'Camudóse un patrociniu de la siguiente incidencia.'; +$s_email_notification_title_for_action_sponsorship_deleted = 'Retiróse un patrociniu de la siguiente incidencia.'; +$s_email_notification_title_for_action_bugnote_submitted = 'Amestóse una NOTA a esta incidencia.'; +$s_email_notification_title_for_action_duplicate_of_relationship_added = 'La siguiente incidencia marcóse como DUPLICADA DE la incidencia %1$s.'; +$s_email_notification_title_for_action_has_duplicate_relationship_added = 'La incidencia %1$s marcóse como DUPLICADA DE la siguiente incidencia.'; +$s_email_notification_title_for_action_related_to_relationship_added = 'La siguiente incidencia marcóse como RELLACIONADA CON la incidencia %1$s'; +$s_email_notification_title_for_action_dependant_on_relationship_added = 'La siguiente incidencia marcóse como PADRE DE la incidencia %1$s'; +$s_email_notification_title_for_action_blocks_relationship_added = 'La siguiente incidencia marcóse como FÍA DE la incidencia %1$s.'; +$s_email_notification_title_for_action_duplicate_of_relationship_deleted = 'La siguiente incidencia DESmarcóse como DUPLICADA DE la incidencia %1$s.'; +$s_email_notification_title_for_action_has_duplicate_relationship_deleted = 'La incidencia %1$s quitóse de DUPLICADA DE la siguiente incidencia.'; +$s_email_notification_title_for_action_related_to_relationship_deleted = 'La siguiente incidencia marcóse como NON RELLACIONADA CON la incidencia %1$s'; +$s_email_notification_title_for_action_dependant_on_relationship_deleted = 'La siguiente incidencia quitóse de PADRE DE la incidencia %1$s'; +$s_email_notification_title_for_action_blocks_relationship_deleted = 'La siguiente incidencia quitóse de FÍA DE la incidencia %1$s.'; +$s_email_notification_title_for_action_relationship_child_resolved = 'La incidencia RELLACIONADA %1$s RESOLVIÓSE.'; +$s_email_notification_title_for_action_relationship_child_closed = 'La incidencia RELLACIONADA %1$s ZARRÓSE.'; +$s_email_notification_title_for_action_monitor = 'La incidencia %1$s agora ta monitorizada pol usuariu %2$s.'; +$s_email_reporter = 'Informáu por'; +$s_email_handler = 'Atribuíu a'; +$s_email_project = 'Proyeutu'; +$s_email_project_label = 'Proyeutu:'; +$s_email_bug = 'ID de la incidencia'; +$s_email_category = 'Categoría'; +$s_email_reproducibility = 'Reproducibilidá'; +$s_email_severity = 'Severidá'; +$s_email_priority = 'Prioridá'; +$s_email_status = 'Estáu'; +$s_email_resolution = 'Resolución'; +$s_email_duplicate = 'Duplicáu'; +$s_email_fixed_in_version = 'Iguao na versión'; +$s_email_target_version = 'Previsto pa la versión'; +$s_email_date_submitted = 'Data d\'unviu'; +$s_email_last_modified = 'Últimu cambiu'; +$s_email_summary = 'Resume'; +$s_email_description = 'Descripción'; +$s_email_additional_information = 'Otra información'; +$s_email_steps_to_reproduce = 'Pasos pa reproducilo'; +$s_account_protected_msg = 'Cuenta protexida. Nun pué cambiase la configuración...'; +$s_account_removed_msg = 'Desanicióse la to cuenta...'; +$s_confirm_delete_msg = '¿Tas seguru de que quies desaniciar la to cuenta?'; +$s_delete_account_button = 'Desaniciar cuenta'; +$s_manage_profiles_link = 'Perfiles'; +$s_change_preferences_link = 'Preferencies'; +$s_edit_account_title = 'Editar la cuenta'; +$s_username = 'Nome d\'usuariu'; +$s_username_label = 'Nome d\'usuariu'; +$s_realname = 'Nome real'; +$s_realname_label = 'Nome real'; +$s_email = 'Corréu'; +$s_email_label = 'Corréu'; +$s_password = 'Contraseña'; +$s_no_password_change = 'La contraseña ta controlada por otru sistema, poro, nun pué editase equí.'; +$s_confirm_password = 'Confirma la contraseña'; +$s_current_password = 'Conseña actual'; +$s_access_level = 'Nivel d\'accesu'; +$s_access_level_label = 'Nivel d\'accesu'; +$s_update_user_button = 'Actualizar usuariu'; +$s_verify_warning = 'Comprobóse la to información de cuenta. El mensaxe de confirmación de cuenta que recibisti agora ye inválidu.'; +$s_verify_change_password = 'Tienes d\'establecer equí una contraseña pa poder volver a aniciar sesión.'; +$s_default_account_preferences_title = 'Preferencies de la cuenta'; +$s_default_project = 'Proyeutu predetermináu'; +$s_refresh_delay = 'Allancia del refrescu'; +$s_minutes = 'minutos'; +$s_redirect_delay = 'Allancia na redireición'; +$s_seconds = 'segundos'; +$s_with_minimum_severity = 'Con una severidá mínima de'; +$s_bugnote_order = 'Orde de les notes'; +$s_bugnote_order_asc = 'Ascendiente'; +$s_bugnote_order_desc = 'Descendiente'; +$s_email_on_new = 'Unviar corréu si hai incidencies nueves'; +$s_email_on_assigned = 'Unviar corréu si hai cambiu d\'atribución'; +$s_email_on_feedback = 'Unviar corréu si hai más información'; +$s_email_on_resolved = 'Unviar corréu si se resuelve'; +$s_email_on_closed = 'Unviar corréu si se zarra'; +$s_email_on_reopened = 'Unviar corréu si se reabre'; +$s_email_on_bugnote_added = 'Unviar corréu si s\'amiesta una nota'; +$s_email_on_status_change = 'Unviar corréu si hai cambiu d\'estáu'; +$s_email_on_priority_change = 'Unviar corréu si hai cambiu de prioridá'; +$s_email_bugnote_limit = 'Llende de notes per corréu'; +$s_language = 'Llingua'; +$s_update_prefs_button = 'Anovar preferencies'; +$s_reset_prefs_button = 'Reaniciar les preferencies'; +$s_timezone = 'Estaya horaria'; +$s_prefs_reset_msg = 'Reaniciáronse les preferencies...'; +$s_prefs_updated_msg = 'Anováronse les preferencies...'; +$s_profile_added_msg = 'Perfil amestáu...'; +$s_profile_deleted_msg = 'Perfil desaniciáu...'; +$s_edit_profile_title = 'Editar el perfil'; +$s_platform = 'Plataforma'; +$s_platform_label = 'Plataforma:'; +$s_additional_description = 'Descripción estra'; +$s_update_profile_button = 'Anovar el perfil'; +$s_profile_defaulted_msg = 'Anováu el perfil predetermináu...'; +$s_add_profile_title = 'Amestar perfil'; +$s_add_profile_button = 'Amestar perfil'; +$s_edit_or_delete_profiles_title = 'Editar o desaniciar perfiles'; +$s_edit_profile = 'Editar perfil'; +$s_make_default = 'Facer predetermináu'; +$s_delete_profile = 'Desaniciar perfil'; +$s_select_profile = 'Seleicionar perfil'; +$s_submit_button = 'Unviar'; +$s_profile_updated_msg = 'Perfil anováu...'; +$s_my_sponsorship = 'Los mios patrocinadores'; +$s_update_sponsorship_button = 'Cambiar l\'estáu de pagu'; +$s_no_sponsored = 'Nun s\'alcontraron incidencies patrocinaes atribuíes a ti.'; +$s_own_sponsored = 'Incidencies que patrocinasti:'; +$s_issues_handled = 'Incidencies patrocinaes que tienes atribuíes:'; +$s_no_own_sponsored = 'Nun patrocinasti nenguna incidencia.'; +$s_sponsor = 'Patrocinador'; +$s_sponsor_verb = 'Patrocinar'; +$s_amount = 'Cantidá'; +$s_total_owing = 'Total debíu'; +$s_total_paid = 'Total pagáu'; +$s_sponsor_hide = 'Tapecer resueltes y pagaes'; +$s_sponsor_show = 'Ver too'; +$s_payment_updated = 'Información de pagu anovada.'; +$s_account_updated_msg = 'La to cuenta anovóse correutamente...'; +$s_email_updated = 'La direición de corréu anovóse correutamente'; +$s_realname_duplicated = 'El nome real ta utilizándolu otru usuariu'; +$s_realname_updated = 'Nome real anováu correutamente'; +$s_password_updated = 'Contraseña anovada correutamente'; +$s_multiple_projects = 'Les incidencies que seleicionasti son de proyeutos diferentes. Los siguientes parámetros espeyen les preferencies pa tolos proyeutos. Si esto ye incorreuto, intenta\'l cambiu con una esbilla d\'incidencies menor.'; +$s_new_bug_title = 'Nueva Incidencia'; +$s_feedback_bug_title = 'Solicitar más información de la incidencia'; +$s_acknowledged_bug_title = 'Aceptar incidencia'; +$s_confirmed_bug_title = 'Confirmar incidencia'; +$s_assigned_bug_title = 'Atribuir incidencia'; +$s_new_bug_button = 'Nueva incidencia'; +$s_feedback_bug_button = 'Solicitar más información'; +$s_acknowledged_bug_button = 'Aceptar incidencia'; +$s_confirmed_bug_button = 'Confirmar incidencia'; +$s_assigned_bug_button = 'Atribuir incidencia'; +$s_bug_close_msg = 'La incidencia zarróse...'; +$s_close_immediately = 'Zarrar darréu:'; +$s_closed_bug_title = 'Zarrar incidencia'; +$s_bug_deleted_msg = 'La incidencia desanicióse...'; +$s_delete_bug_sure_msg = '¿Tas seguru de querer desaniciar esta incidencia?'; +$s_delete_bug_button = 'Desaniciar'; +$s_monitor_bug_button = 'Monitorizar'; +$s_unmonitor_bug_button = 'Dexar de monitorizar'; +$s_file_upload_msg = 'Ficheru xubíu correutamente.'; +$s_upload_file = 'Xubir ficheru'; +$s_upload_files = 'Xubir ficheros'; +$s_select_file = 'Seleicionar un ficheru'; +$s_select_files = 'Seleicionar ficheros'; +$s_upload_file_button = 'Xubir ficheru'; +$s_upload_files_button = 'Xubir ficheros'; +$s_max_file_size_label = 'Tamañu máximu:'; +$s_bug_reopened_msg = 'La incidencia reabrióse...'; +$s_reopen_add_bugnote_title = 'Amestar una nota col motivu pa reabrir la incidencia'; +$s_bugnote_add_reopen_button = 'Amestar la nota y reabrir la incidencia'; +$s_resolved_bug_title = 'Resolver incidencia'; +$s_resolved_bug_button = 'Resolver incidencia'; +$s_bug_resolved_msg = 'Resolvióse la incidencia. Escribe una nota más abaxo...'; +$s_resolve_add_bugnote_title = 'Amestar una nota col motivu pa resolver la incidencia'; +$s_bugnote_add_resolve_button = 'Amestar nota'; +$s_from = 'De'; +$s_to = 'Pa'; +$s_sent_you_this_reminder_about = 'unvióte esti recordatoriu sobro'; +$s_bug_reminder = 'Unviar un recordatoriu'; +$s_reminder_sent_to = 'Recordatoriu unviáu a'; +$s_reminder_sent_none = 'Nun pudo unviase nengún recordatoriu'; +$s_reminder_list_truncated = 'la llista de receptores ta truncada'; +$s_bug_send_button = 'Unviar'; +$s_reminder = 'Recordatoriu'; +$s_reminder_explain = 'Esta nota unviaráse a los receptores esbillaos, solicitando comentarios tocante a esta incidencia.'; +$s_reminder_monitor = 'Estos receptores tamién principiarán a monitorizar la incidencia. Puen quitar la suscripción usando\'l botón "Dexar de monitorizar".'; +$s_reminder_store = 'La nota almacenaráse cola incidencia.'; +$s_confirm_sponsorship = 'Confirma que quies patrocinar la incidencia %1$d pa %2$s.'; +$s_stick_bug_button = 'Apegar'; +$s_unstick_bug_button = 'Despegar'; +$s_bug_updated_msg = 'La incidencia anovóse correutamente...'; +$s_back_to_bug_link = 'Volver a la incidencia'; +$s_update_simple_link = 'Anovamientu simple'; +$s_updating_bug_advanced_title = 'Anovando la información de la incidencia'; +$s_id = 'ID'; +$s_category = 'Categoría'; +$s_category_label = 'Categoría:'; +$s_severity = 'Severidá'; +$s_severity_label = 'Severidá:'; +$s_reproducibility = 'Reproducibilidá'; +$s_date_submitted = 'Data d\'unviu'; +$s_last_update = 'Caberu anovamientu'; +$s_reporter = 'Informador'; +$s_reporter_label = 'Informador:'; +$s_assigned_to = 'Atribuíu a'; +$s_assigned_to_label = 'Atribuíu a:'; +$s_priority = 'Prioridá'; +$s_priority_label = 'Prioridá:'; +$s_resolution = 'Resolución'; +$s_resolution_label = 'Resolución:'; +$s_status = 'Estáu'; +$s_status_label = 'Estáu:'; +$s_duplicate_id = 'ID duplicada'; +$s_os = 'SO'; +$s_os_label = 'SO:'; +$s_projection = 'Proyeición'; +$s_os_version = 'Versión del S.O.'; +$s_os_version_label = 'Versión del S.O.:'; +$s_eta = 'Tiempu estimáu'; +$s_product_version = 'Versión del productu'; +$s_product_version_label = 'Versión del productu:'; +$s_build = 'Compilación'; +$s_fixed_in_version = 'Iguao na versión'; +$s_fixed_in_version_label = 'Iguao na versión:'; +$s_target_version = 'Previsto pa la versión'; +$s_target_version_label = 'Previsto pa la versión:'; +$s_votes = 'Votos'; +$s_summary = 'Resume'; +$s_description = 'Descripción'; +$s_steps_to_reproduce = 'Pasos pa reproducilo'; +$s_update_information_button = 'Anovar la información'; +$s_sticky_issue = 'Incidencia pegada'; +$s_profile = 'Perfil'; +$s_profile_label = 'Perfil:'; +$s_updating_bug_simple_title = 'Anovando la información de la incidencia'; +$s_view_revisions = 'Ver revisiones'; +$s_view_num_revisions = 'Ver %1$d revisiones'; +$s_revision = 'Revisión'; +$s_revision_by = '%1$s por %2$s'; +$s_revision_drop = 'Descartar'; +$s_bug_revision_dropped_history = 'Revisión d\'incidencia descartada'; +$s_bugnote_revision_dropped_history = 'Revisión de nota descartada'; +$s_all_revisions = 'Toles revisiones'; +$s_back_to_issue = 'Volver a la incidencia'; +$s_confirm_revision_drop = '¿Tas seguru que quies descartar esta revisión de la incidencia?'; +$s_vote_added_msg = 'Amestóse\'l votu...'; +$s_bugnote_added_msg = 'Amestóse la nota...'; +$s_bugnote_deleted_msg = 'La nota desanicióse correutamente...'; +$s_bug_notes_title = 'Notes'; +$s_edit_bugnote_title = 'Editar nota'; +$s_no_bugnotes_msg = 'Nun hai notes axuntaes a esta incidencia.'; +$s_delete_link = 'Desaniciar'; +$s_add_bugnote_title = 'Amestar nota'; +$s_add_bugnote_button = 'Amestar nota'; +$s_bugnote_edit_link = 'Editar'; +$s_closed_bug_button = 'Zarrar incidencia'; +$s_bugnote_updated_msg = 'La nota anovóse correutamente...'; +$s_last_edited = 'Última edición:'; +$s_hide_content = 'Anubrir conteníu'; +$s_show_content = 'Amosar conteníu'; +$s_webmaster_contact_information = 'Comunícate col alministrador pa pidir ayuda'; +$s_total_queries_executed = 'Total de consultes executaes: %1$d'; +$s_unique_queries_executed = 'Consultes úniques executaes: %1$d'; +$s_total_query_execution_time = 'Tiempu total d\'execución de la consulta: %1$s segundos'; +$s_page_execution_time = 'Tiempu d\'execución de la páxina: %1$s segundos'; +$s_memory_usage_in_kb = 'Usu de la memoria: %1$s KiB'; +$s_log_page_number = 'Númberu'; +$s_log_page_time = 'Tiempu d\'execución'; +$s_log_page_caller = 'Llamante'; +$s_log_page_event = 'Actividá'; +$s_please_report = 'Por favor, informa d\'esto al %1$s.'; +$s_click_to_login = 'Entrar'; +$s_warning_plain_password_authentication = 'Atención: Ta utilizándose autenticación por contraseña en testu planu; esto espondrá les contraseñes a los alministradores.'; +$s_warning_default_administrator_account_present = 'Avisu: Tendríes de desactivar la cuenta "alministrador" predeterminada o cambiar la so contraseña.'; +$s_warning_admin_directory_present = 'Aviso: El direutoriu d\'alministradores tendría de desaniciase.'; +$s_warning_change_setting = 'Avisu: "%1$s" nun ta establecíu al so valor predetermináu (%2$s).'; +$s_warning_security_hazard = 'Esto ye un posible riesgu de seguridá que pué esponer información sensible.'; +$s_warning_integrity_hazard = 'Esto fadrá que MantisBT siga cuando asocedan fallos y pué dar problemes d\'integrida del sistema o datos.'; +$s_warning_debug_email = 'Atención: "debug_email" nun ta definíu como OFF; tolos correos electrónicos d\'avisu van unviase a "%1$s".'; +$s_error_database_no_schema_version = 'Error: La estructura de la base da datos paez que nun ta actualizada (config(databaseversion) ye 0) o corrupta. Comprueba que la base de datos ta funcionando. Nun podemos recuperar la versión del esquema de la base de datos. La tabla de configuración nun devolvió una versión válida del esquema de la base de datos. Pide ayuda na llista de corréu mantis-help si ye necesario.'; +$s_error_database_version_out_of_date_2 = 'Avisu: La estructura de la base de datos pué que nun tea actualizada. Anuévala equí antes d\'aniciar sesión.'; +$s_error_code_version_out_of_date = 'Avisu: La estructura de la base de datos ta más actualizada que\'l códigu instaláu. Actualiza\'l códigu.'; +$s_login_page_info = 'Bienveníos al Xestor d\'incidencies.'; +$s_login_title = 'Entrar'; +$s_save_login = 'Recordar la información d\'aniciu de sesión nesti restolador'; +$s_secure_session = 'Sesión segura'; +$s_secure_session_long = 'Permitir utilizar la sesión sólo dende esta direición IP.'; +$s_choose_project = 'Escueye un proyeutu'; +$s_login_button = 'Entrar'; +$s_signup_link = 'Solicitar una nueva cuenta'; +$s_lost_password_link = '¿Perdisti la contraseña?'; +$s_select_project_button = 'Seleccionar proyeutu'; +$s_lost_password_title = 'Restaurar contraseña'; +$s_lost_password_done_title = 'Unvióse\'l mensaxe de contraseña'; +$s_lost_password_subject = 'Restaurar contraseña'; +$s_lost_password_info = 'Pa recuperar la contraseña perdida, proporciona\'l nome y direición de corréu electrónicu de la cuenta.

Si los datos correspuenden con una cuenta válida, recibirás per corréu electrónicu una direición URL especial que contien un códigu de validación pa la cuenta. Sigui esti enllaz pa cambiar la contraseña.'; +$s_lost_password_confirm_hash_OK = 'Aceutóse la to confirmación. Por favor anueva la contraseña.'; +$s_open_and_assigned_to_me_label = 'Abiertos y atribuíos a min:'; +$s_open_and_reported_to_me_label = 'Abiertos de los qu\'informé yo:'; +$s_newer_news_link = 'Noticies más nueves'; +$s_older_news_link = 'Noticies anteriores'; +$s_archives = 'Archivos'; +$s_rss = 'RSS'; +$s_site_information = 'Información del sitiu'; +$s_mantis_version = 'Versión de MantisBT'; +$s_schema_version = 'Versión del esquema'; +$s_site_path = 'Camín del sitiu'; +$s_core_path = 'Camín principal'; +$s_plugin_path = 'Camín del complementu'; +$s_created_user_part1 = 'Usuariu creáu'; +$s_created_user_part2 = 'con un nivel d\'accesu de'; +$s_create_new_account_title = 'Crear una cuenta nueva'; +$s_verify_password = 'Comprobar la contraseña'; +$s_enabled = 'Activáu'; +$s_enabled_label = 'Activáu'; +$s_protected = 'Protexíu'; +$s_protected_label = 'Protexíu'; +$s_create_user_button = 'Crear un usuariu'; +$s_hide_disabled = 'Tapecer los desactivaos'; +$s_filter_button = 'Aplicar filtru'; +$s_default_filter = 'Filtru predetermináu'; +$s_create_filter_link = 'Crear un enllaz permanente'; +$s_create_short_link = 'Crear un enllaz curtiu'; +$MANTIS_ERROR[ERROR_GENERIC] = 'Hebo un error nel trescursu d\'esta aición. Seique quiera informar d\'esti error al so alministrador llocal.'; +$MANTIS_ERROR[ERROR_SQL] = 'Deteutóse un error SQL.'; +$MANTIS_ERROR[ERROR_REPORT] = 'Alcontróse un error nel so informe.'; +$MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nun s\'especificó nengún ficheru.'; +$MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'El tipu de ficheru nun ta permitíu.'; +$MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'El direutoriu nun esiste. Por favor, revise la configuración del proyeutu.'; +$MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Yá esiste un proyeutu con esi nome.'; diff --git a/lang/strings_breton.txt b/lang/strings_breton.txt index 9cd4b7be15..769578720f 100644 --- a/lang/strings_breton.txt +++ b/lang/strings_breton.txt @@ -1338,3 +1338,4 @@ $MANTIS_ERROR[ERROR_DEPRECATED_SUPERSEDED] = 'Arc\'hweladur dibrizet : "%1$s", i $MANTIS_ERROR[ERROR_DISPLAY_USER_ERROR_INLINE] = 'Diwallit : Kefluniet eo ar reizhiad evit diskwel ar fazioù MantisBT (E_USER_ERROR) er memes linenn. Kendalc\'het e vo da seveniñ ar programm ;abalamour da se e c\'hallfe bezañ kudennoù yec\'hed gant ar roadennoù pe ar reizhiad.'; $MANTIS_ERROR[ERROR_TYPE_MISMATCH] = 'Doare roadenn diembreget. Gweredekait ar c\'hemennadoù fazi dre ar munud evit gouzout hiroc\'h.'; $MANTIS_ERROR[ERROR_BUG_CONFLICTING_EDIT] = 'Hizivaet eo bet ar gudenn-se gant un implijer all. Distroit d\'ar gudenn-se, mar plij, ha kinnigit ho kemmoù en-dro.'; +$MANTIS_ERROR[ERROR_SPAM_SUSPECTED] = 'Tizhet ho peus bevenn obererezh aotreet %d darvoud e-pad an %d eilenn diwezhañ ; kaelet eo bet hoc\'h obererezh evit herzel ouzh ar strob, klaskit en-dro diwezhatoc\'h.'; diff --git a/lang/strings_chinese_traditional.txt b/lang/strings_chinese_traditional.txt index 467c48f910..ccb0ace39b 100644 --- a/lang/strings_chinese_traditional.txt +++ b/lang/strings_chinese_traditional.txt @@ -504,7 +504,7 @@ $s_login_page_info = '歡迎使用問題追蹤系統'; $s_login_title = '登入'; $s_save_login = '於此瀏覽器記住我的登入資訊'; $s_secure_session = '使用安全性工作階段連線'; -$s_secure_session_long = '僅允許來自目前 IP 位置的工作階段連線'; +$s_secure_session_long = '僅允許來自目前 IP 位址的工作階段連線'; $s_choose_project = '選擇專案'; $s_login_button = '登入'; $s_signup_link = '註冊新帳號'; diff --git a/lang/strings_czech.txt b/lang/strings_czech.txt index c3ec53659b..f3a200fa75 100644 --- a/lang/strings_czech.txt +++ b/lang/strings_czech.txt @@ -65,6 +65,7 @@ $s_actiongroup_menu_update_view_status = 'Upravit stav zobrazení'; $s_actiongroup_menu_update_category = 'Upravit kategorii'; $s_actiongroup_menu_set_sticky = '(Od)nastavit "sticky"'; $s_actiongroup_menu_update_field = 'Upravit pole %1$s'; +$s_actiongroup_menu_update_product_version = 'Aktualizovat Verzi Produktu'; $s_actiongroup_menu_update_target_version = 'Změnit cílovou verzi'; $s_actiongroup_menu_update_fixed_in_version = 'Změnit "vyřešeno ve verzi"'; $s_actiongroup_menu_update_product_build = 'Změnit číslo sestavení'; @@ -114,6 +115,7 @@ $s_bugnote_link_title = 'Přímý odkaz na poznámku'; $s_delete_bugnote_button = 'Smazat poznámku'; $s_delete_bugnote_sure_msg = 'Opravdu si přejete smazat tento report?'; $s_bug_relationships = 'Závislosti'; +$s_bug_relationships_label = 'Závislosti:'; $s_empty_password_sure_msg = 'Uživatel má prázdné heslo. Opravdu je to to, co si přejete?'; $s_empty_password_button = 'Použít prázdné heslo'; $s_reauthenticate_title = 'Ověřit'; @@ -161,6 +163,7 @@ $s_status_bugs_conf_msg = 'Vybrat stav problémů'; $s_view_status_bugs_conf_msg = 'Vybrat stav zobrazení problémů'; $s_category_bugs_conf_msg = 'Zvolte kategorii problémů'; $s_set_sticky_bugs_conf_msg = 'Opravdu chcete (od)nastavit tyto problémy jako "sticky"?'; +$s_product_version_bugs_conf_msg = 'Aktualizovat Verzi Produktu na'; $s_fixed_in_version_bugs_conf_msg = 'Upravit "vyřešeno ve verzi"'; $s_target_version_bugs_conf_msg = 'Nastavit cílovou verzi na'; $s_close_group_bugs_button = 'Uzavřít problémy'; @@ -174,6 +177,7 @@ $s_status_group_bugs_button = 'Změnit stav'; $s_category_group_bugs_button = 'Změnit kategorii'; $s_view_status_group_bugs_button = 'Upravit zobrazení problému'; $s_set_sticky_group_bugs_button = '(Od)nastavit "sticky"'; +$s_product_version_group_bugs_button = 'Aktualizovat Verzi Produktu'; $s_fixed_in_version_group_bugs_button = 'Změnit "vyřešeno ve verzi"'; $s_target_version_group_bugs_button = 'Změnit cílovou verzi'; $s_update_severity_title = 'Aktualizovat závažnost'; @@ -399,8 +403,8 @@ $s_reminder_sent_none = 'Nemohou být odeslány žádné upomínky'; $s_reminder_list_truncated = 'seznam příjemců byl vyčištěn'; $s_bug_send_button = 'Odeslat'; $s_reminder = 'Upozornění'; -$s_reminder_explain = 'Toto upozornění je odesláno příjemci, který byl uveden jako žadatel o odezvu ohledně tohoto problému.'; -$s_reminder_monitor = 'Tito příjemci jsou zařazeni ke sledování tohoto problému. Mohou se odhlásit použitím tlačítka \'Konec sledování\'.'; +$s_reminder_explain = 'Toto upozornění bude zasláno vybraným příjemcům, se žádostí o názor na tento problém.'; +$s_reminder_monitor = 'Tito příjemci jsou zařazeni ke sledování problému. Mohou se odhlásit použitím tlačítka \'Konec sledování\'.'; $s_reminder_store = 'Toto upozornění je uloženo jako poznámka k problému.'; $s_confirm_sponsorship = 'Prosím potvrďte že chcete sponzorovat problém %1$d z %2$s.'; $s_stick_bug_button = 'Přišpendlit'; @@ -418,11 +422,13 @@ $s_reproducibility = 'Reprodukovatelnost'; $s_date_submitted = 'Datum vložení'; $s_last_update = 'Poslední změna'; $s_reporter = 'Reportér'; +$s_reporter_label = 'Reportér:'; $s_assigned_to = 'Přiřazen'; $s_assigned_to_label = 'Přiřazeno:'; $s_priority = 'Priorita'; $s_priority_label = 'Priorita:'; $s_resolution = 'Řešení'; +$s_resolution_label = 'Řešení:'; $s_status = 'Stav'; $s_status_label = 'Stav:'; $s_duplicate_id = 'Duplicitní ID'; @@ -446,12 +452,14 @@ $s_steps_to_reproduce = 'Postup na reprodukci problému'; $s_update_information_button = 'Upravit'; $s_sticky_issue = '"Sticky" problém'; $s_profile = 'Profil'; +$s_profile_label = 'Profil:'; $s_updating_bug_simple_title = 'Úprava problému'; $s_view_revisions = 'Zobrazit revize'; +$s_view_num_revisions = 'Zobrazit %1$d revizí'; $s_revision = 'Revize'; $s_revision_by = '%1$s z %2$s'; $s_revision_drop = 'Zahodit'; -$s_bug_revision_dropped_history = 'Vynechány chybové revize'; +$s_bug_revision_dropped_history = 'Revize problému zahozeny'; $s_bugnote_revision_dropped_history = 'Vynechány revize poznámek'; $s_all_revisions = 'Všechny revize'; $s_back_to_issue = 'Zpět na problém'; @@ -468,11 +476,18 @@ $s_add_bugnote_button = 'Přidat poznámku'; $s_bugnote_edit_link = 'Upravit'; $s_closed_bug_button = 'Uzavřít problém'; $s_bugnote_updated_msg = 'Poznámka byla úspěšně upravena.'; +$s_last_edited = 'Naposledy upraveno:'; $s_hide_content = 'Skrýt obsah'; $s_show_content = 'Zobrazit obsah'; -$s_total_queries_executed = 'Vykonáno celkem %1$d dotazů.'; -$s_unique_queries_executed = 'Vykonáno %1$d unikátních dotazů.'; -$s_memory_usage_in_kb = 'využitá paměť: %1$s KB'; +$s_webmaster_contact_information = 'Kontaktujte správce pro pomoc'; +$s_total_queries_executed = 'Celkem dotazů vykonáno: %1$d'; +$s_unique_queries_executed = 'Unikátních dotazů vykonáno: %1$d'; +$s_total_query_execution_time = 'Celkový čas dotazu: %1$s sekund'; +$s_page_execution_time = 'Čas spuštění stránky: %1$s sekund'; +$s_memory_usage_in_kb = 'Využití paměti: %1$s KiB'; +$s_log_page_number = 'Číslo'; +$s_log_page_time = 'Čas spuštění'; +$s_log_page_caller = 'Volající'; $s_please_report = 'Chybu nahlašte na %1$s.'; $s_click_to_login = 'Přihlásit se'; $s_warning_plain_password_authentication = 'Varování: používá se autentizace pomocí hesla v čitelné podobě. Administrátoři jej potenciálně mohou zneužít.'; @@ -638,7 +653,7 @@ $s_project_delete_msg = 'Skutečně chcete smazat tento projekt a všechny při $s_project_delete_button = 'Smazat projekt'; $s_edit_project_title = 'Editovat projekt'; $s_project_name = 'Jméno projektu'; -$s_view_status = 'Zobrazit stav'; +$s_view_status = 'Stav zobrazení'; $s_public = 'veřejný'; $s_private = 'soukromý'; $s_update_project_button = 'Aktualizovat projekt'; @@ -1064,15 +1079,15 @@ $s_on_date = 'v'; $s_on = 'zap.'; $s_off = 'vyp.'; $s_wiki = 'Wiki'; -$s_tags = 'Značky'; -$s_tags_label = 'Značky:'; -$s_tag_details = 'Detaily značky: %1$s'; -$s_tag_id = 'Název značky'; +$s_tags = 'Štítky'; +$s_tags_label = 'Štítky:'; +$s_tag_details = 'Detail štítku: %1$s'; +$s_tag_id = 'Název štítku'; $s_tag_name = 'Název'; $s_tag_creator = 'Tvůrce'; $s_tag_created = 'Datum vytvoření'; $s_tag_updated = 'Poslední změna'; -$s_tag_description = 'Popis značky'; +$s_tag_description = 'Popis štítku'; $s_tag_statistics = 'Statistiky využití'; $s_tag_update = 'Upravit štítek: %1$s'; $s_tag_update_return = 'Zpět na štítek'; @@ -1082,7 +1097,7 @@ $s_tag_delete_message = 'Jste si jistý, že chcete smazat tento štítek?'; $s_tag_existing = 'Existující štítky'; $s_tag_none_attached = 'Žádné štítky nepřiloženy.'; $s_tag_attach = 'Přidat'; -$s_tag_attach_long = 'Přidané štítky'; +$s_tag_attach_long = 'Přidat štítek'; $s_tag_attach_failed = 'Přidání štítku selhalo.'; $s_tag_detach = 'Odděl \'%1$s\''; $s_tag_separate_by = '(Oddělte \'%1$s\')'; diff --git a/lang/strings_german.txt b/lang/strings_german.txt index b52532f1c0..d9ee239332 100644 --- a/lang/strings_german.txt +++ b/lang/strings_german.txt @@ -677,7 +677,7 @@ $s_delete_category_button = 'Kategorie löschen'; $s_edit_project_category_title = 'Projektkategorie bearbeiten'; $s_update_category_button = 'Kategorie aktualisieren'; $s_category_updated_msg = 'Kategorien erfolgreich aktualisiert …'; -$s_create_first_project = 'Ein Projekt erstellen, um Probleme zu protokollieren.'; +$s_create_first_project = 'Erstellen Sie ein Projekt, um Einträge erfassen zu können.'; $s_add_subproject_title = 'Unterprojekt hinzufügen'; $s_project_deleted_msg = 'Projekt gelöscht …'; $s_project_delete_msg = 'Soll das Projekt mit allen zugehörigen Einträgen gelöscht werden?'; diff --git a/lang/strings_interlingua.txt b/lang/strings_interlingua.txt index 9123d22719..f3ceab6658 100644 --- a/lang/strings_interlingua.txt +++ b/lang/strings_interlingua.txt @@ -54,6 +54,7 @@ $s_actiongroup_menu_update_view_status = 'Actualisar visibilitate'; $s_actiongroup_menu_update_category = 'Actualisar categoria'; $s_actiongroup_menu_set_sticky = 'Fixar/Disfixar'; $s_actiongroup_menu_update_field = 'Actualisar %1$s'; +$s_actiongroup_menu_update_product_version = 'Actualisar le version del producto'; $s_actiongroup_menu_update_target_version = 'Actualisar version de destination'; $s_actiongroup_menu_update_fixed_in_version = 'Actualisar version de resolution'; $s_actiongroup_menu_update_product_build = 'Actualisar compilation del producto'; @@ -151,6 +152,7 @@ $s_status_bugs_conf_msg = 'Selige stato del problemas'; $s_view_status_bugs_conf_msg = 'Selige visibilitate del problemas'; $s_category_bugs_conf_msg = 'Selige categoria del problemas'; $s_set_sticky_bugs_conf_msg = 'Es tu secur de voler marcar/dismarcar iste problemas como fixe?'; +$s_product_version_bugs_conf_msg = 'Actualisar le version del producto a'; $s_fixed_in_version_bugs_conf_msg = 'Actualisar le version de resolution a'; $s_target_version_bugs_conf_msg = 'Actualisar version de destination a'; $s_close_group_bugs_button = 'Clauder problemas'; @@ -164,6 +166,7 @@ $s_status_group_bugs_button = 'Actualisar stato'; $s_category_group_bugs_button = 'Actualisar categoria'; $s_view_status_group_bugs_button = 'Actualisar visibilitate'; $s_set_sticky_group_bugs_button = 'Fixar/Disfixar'; +$s_product_version_group_bugs_button = 'Actualisar le version del producto'; $s_fixed_in_version_group_bugs_button = 'Actualisar version de resolution'; $s_target_version_group_bugs_button = 'Actualisar version de destination'; $s_update_severity_title = 'Actualisar severitate'; @@ -389,7 +392,7 @@ $s_reminder_sent_none = 'Nulle rememoration ha potite esser inviate'; $s_reminder_list_truncated = 'lista de destinatarios truncate'; $s_bug_send_button = 'Inviar'; $s_reminder = 'Rememoration'; -$s_reminder_explain = 'Iste nota essera inviate al destinatarios listate como requestante commentario sur iste problema.'; +$s_reminder_explain = 'Iste nota essera inviate al destinatarios seligite, requestante lor aviso sur iste problema.'; $s_reminder_monitor = 'Iste destinatarios comenciara anque a surveliar le problema. Illes pote cancellar le subscription con le button "Finir surveliantia".'; $s_reminder_store = 'Iste nota essera immagazinate con le problema.'; $s_confirm_sponsorship = 'Per favor confirma que tu vole sponsorisar le problema %1$d pro %2$s.'; @@ -669,6 +672,7 @@ $s_copy_to = 'Copiar verso'; $s_categories_and_version_title = 'Categorias e versiones'; $s_categories = 'Categorias'; $s_add_category_button = 'Adder categoria'; +$s_add_and_edit_category_button = 'Adder e modificar categoria'; $s_versions = 'Versiones'; $s_add_version_button = 'Adder version'; $s_add_and_edit_version_button = 'Adder e modificar version'; @@ -814,10 +818,10 @@ $s_selected_project = 'Projecto seligite'; $s_valid_project_msg = 'Tu debe seliger un projecto valide.'; $s_signup_done_title = 'Creation de conto succedite.'; $s_password_emailed_msg = 'Felicitationes. Tu te ha registrate con successo. Tu recipera ora un e-mail de confirmation pro verificar tu adresse de e-mail. Visita le ligamine inviate a te in iste message pro activar tu conto.'; -$s_no_reponse_msg = 'Tu ha septe dies pro completar le processo de confirmation; si tu non completa le confirmation del conto intra septe dies, iste nove conto pote esser purgate.'; +$s_no_reponse_msg = 'Tu ha septe dies pro completar le processo de confirmation; si tu non lo face durante iste periodo, le nove conto pote esser eliminate.'; $s_signup_captcha_request_label = 'Entra le codice como appare in le quadro al dextra:'; $s_signup_captcha_refresh = 'Generar un nove codice'; -$s_signup_info = 'Post le completion de iste formulario e verification de tu responsas, tu recipera un e-mail de confirmation al adresse de e-mail que tu specificava.
Con le e-mail de confirmation, tu potera activar tu conto. Si tu non activa tu conto intra septe dies, illo essera purgate.
Tu debe specificar un adresse de e-mail valide pro poter reciper le message de confirmation.'; +$s_signup_info = 'Post le completion de iste formulario e verification de tu responsas, tu recipera un messsage de confirmation al adresse de e-mail que tu specificava.
Con le ligamine fornite in iste message, tu potera activar tu conto. Si tu non lo face intra septe dies, le conto pote esser eliminate.
Tu debe specificar un adresse de e-mail valide pro poter reciper le message de confirmation.'; $s_signup_title = 'Crear conto'; $s_signup_button = 'Crear conto'; $s_no_password_request = 'Tu contrasigno es gerite per un altere systema. Per favor contacta tu administrator de systema.'; @@ -967,7 +971,7 @@ $s_custom_field_type_enum_string = '0:Catena,1:Numeric,2:Flottante,3:Enumeration $s_confirm_used_custom_field_deletion = 'Iste campo es actualmente ligate a un o plus projectos. Si tu continua, tote le valores de iste campo essera permanentemente delite. Iste action non pote esser disfacite. Si tu non vole deler iste campo, preme le button Retro del navigator. Pro continuar, clicca le button hic infra'; $s_confirm_custom_field_deletion = 'Es tu secur de voler deler iste campo personalisate e tote le valores associate?'; $s_field_delete_button = 'Deler campo'; -$s_confirm_custom_field_unlinking = 'Es tu secur de voler remover (disligar) iste campo personalisate del projecto e deler tote le valores associate?'; +$s_confirm_custom_field_unlinking = 'Es tu secur de voler disligar iste campo personalisate del projecto? Le valores non essera delite durante que le campo personalisate mesme non es delite.'; $s_field_remove_button = 'Remover campo'; $s_hide_status = 'Celar stato'; $s_hide_status_label = 'Celar stato:'; @@ -1199,7 +1203,7 @@ $MANTIS_ERROR[ERROR_CONFIG_OPT_NOT_FOUND] = 'Option de configuration "%1$s" non $MANTIS_ERROR[ERROR_CONFIG_OPT_CANT_BE_SET_IN_DB] = 'Le option de configuration "%1$s" non pote esser definite in le base de datos. Illo debe esser specificate in config_inc.php.'; $MANTIS_ERROR[ERROR_LANG_STRING_NOT_FOUND] = 'Catena "%1$s" non trovate.'; $MANTIS_ERROR[ERROR_BUGNOTE_NOT_FOUND] = 'Nota non trovate.'; -$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Projecto "%1$d" non trovate.'; +$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Projecto "%1$s" non trovate.'; $MANTIS_ERROR[ERROR_DB_FIELD_NOT_FOUND] = 'Campo de base de datos "%1$s" non trovate.'; $MANTIS_ERROR[ERROR_HANDLER_ACCESS_TOO_LOW] = 'Le gestor de problemas non ha sufficiente derectos de accesso pro gerer le problema in iste stato.'; $MANTIS_ERROR[ERROR_PROJECT_NAME_NOT_UNIQUE] = 'Un projecto con iste nomine ja existe. Per favor retorna e entra un altere nomine.'; @@ -1279,9 +1283,9 @@ $MANTIS_ERROR[ERROR_TAG_NOT_ATTACHED] = 'Iste etiquetta non es associate a iste $MANTIS_ERROR[ERROR_TAG_ALREADY_ATTACHED] = 'Iste etiquetta es ja associate a iste problema.'; $MANTIS_ERROR[ERROR_TOKEN_NOT_FOUND] = 'Le indicio non poteva esser trovate.'; $MANTIS_ERROR[ERROR_EVENT_UNDECLARED] = 'Le evento "%1$s" non ha ancora essite declarate.'; -$MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'Le plug-in non es registrate in MantisBT.'; -$MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Le plug-in es ja installate.'; -$MANTIS_ERROR[ERROR_PLUGIN_PAGE_NOT_FOUND] = 'Pagina de plug-in non trovate.'; +$MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'Le plug-in "%1$s" non es registrate.'; +$MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Le plug-in "%1$s" es jam installate.'; +$MANTIS_ERROR[ERROR_PLUGIN_PAGE_NOT_FOUND] = 'Le pagina "%2$s" non existe in le plug-in "%1$s".'; $MANTIS_ERROR[ERROR_PLUGIN_INSTALL_FAILED] = 'Le installation del plug-in ha fallite: %1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_UPGRADE_FAILED] = 'Le actualisation del schema de plug-in falleva in le bloco #%1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_UPGRADE_NEEDED] = 'Le plug-in "%1$s" debe esser actualisate ante de poter acceder a iste pagina.'; diff --git a/lang/strings_italian.txt b/lang/strings_italian.txt index 7eb3ebe4cc..dff65dae75 100644 --- a/lang/strings_italian.txt +++ b/lang/strings_italian.txt @@ -46,6 +46,8 @@ * @author McDutchie * @author Nemo bis * @author PeppeAeco + * @author Purodha + * @author Statix64 * @author Stefano-c * @author Ximo17 */ @@ -402,7 +404,7 @@ $s_reminder_list_truncated = 'elenco destinatari troncato'; $s_bug_send_button = 'Invia'; $s_reminder = 'Memorandum'; $s_reminder_explain = 'Questo memorandum verrà inviato agli utenti selezionati a cui si richiede un feedback sull\'anomalia.'; -$s_reminder_monitor = 'Questi destinatari verranno aggiunti agli utenti che tengono sotto controllo l\'anomalia.'; +$s_reminder_monitor = 'Questi destinatari verranno aggiunti agli utenti che tengono sotto controllo l\'anomalia. Essi potranno annullare l\'iscrizione utilizzando il bottone "Fine monitoraggio".'; $s_reminder_store = 'Questo memorandum verrà memorizzato con l\'anomalia.'; $s_confirm_sponsorship = 'Conferma di voler sponsorizzare l\'anomalia %1$d per %2$s.'; $s_stick_bug_button = 'Evidenza'; @@ -453,6 +455,7 @@ $s_profile = 'Profilo'; $s_profile_label = 'Profilo:'; $s_updating_bug_simple_title = 'Aggiorna le informazioni sull\'anomalia'; $s_view_revisions = 'Visualizza versioni'; +$s_view_num_revisions = 'Vista %1$d revisione'; $s_revision = 'Revisione'; $s_revision_by = '%1$s di %2$s'; $s_revision_drop = 'Scarica'; @@ -476,8 +479,11 @@ $s_bugnote_updated_msg = 'La nota sull\'anomalia è stata aggiornata con success $s_last_edited = 'Ultima modifica:'; $s_hide_content = 'Nascondi il contenuto'; $s_show_content = 'Mostra il contenuto'; +$s_webmaster_contact_information = 'Contattare %1$s" title="Contatta il webmaster via e-mail.">amministratore per assistenza'; $s_total_queries_executed = 'Interrogazioni eseguite in totale: %1$d'; $s_unique_queries_executed = 'Interrogazioni uniche eseguite: %1$d'; +$s_total_query_execution_time = 'Totale tempo di esecuzione della query: %1$s secondi'; +$s_page_execution_time = 'Tempo di esecuzione della pagina: %1$s secondi'; $s_memory_usage_in_kb = 'Memoria in uso: %1$s KiB'; $s_log_page_number = 'Numero'; $s_log_page_time = 'Tempo di esecuzione'; @@ -489,6 +495,9 @@ $s_warning_plain_password_authentication = 'Attenzione: E\' sta $s_warning_default_administrator_account_present = 'Attenzione: Dovresti disabilitare l\'utenza \'amministratore\' di default oppure cambiarne la password.'; $s_warning_admin_directory_present = 'ATTENZIONE: La cartella Admin dovrebbe essere rimossa.'; $s_warning_change_setting = 'Attenzione: "%1$s" non è impostato al valore predefinito (%2$s).'; +$s_warning_security_hazard = 'Questo è un potenziale rischio per la sicurezza, in quanto può esporre informazioni sensibili.'; +$s_warning_integrity_hazard = 'Questo comporta che MantisBT continuerà quando si verifica un errore e ciò può portare a sistema/problemi di integrità dei dati.'; +$s_warning_debug_email = 'Attenzione: "debug_email" non è impostato su OFF, tutte le e-mail di notifica sarà inviata a "%1$s".'; $s_error_database_no_schema_version = 'Errore: la struttura del database è obsoleta (config(databaseversion) è 0) o corrotta. Controlla che il database sia in esecuzione - non è possibile rintracciare la versione dello schema di database. La configurazione della tabella non ha ritornato uno schema valido di database - Per favore, richiedi supporto alla mailing list mantis-help, se necessario.'; $s_error_database_version_out_of_date_2 = 'Attenzione: La struttura di database é obsoleta. Per favore, aggiornala qui dopo avere effettuato l\'accesso'; $s_error_code_version_out_of_date = ' Attenzione: La struttura di database é più recente del programma installato. Per favore, aggiorna la versione di programma.'; @@ -560,6 +569,7 @@ $s_date_created = 'Data inserimento'; $s_last_visit = 'Ultima visita'; $s_last_visit_label = 'Ultima visita:'; $s_edit_user_link = 'Modifica utente'; +$s_separate_list_items_by = '(gli elementi nelle liste sono separati da "%1$s")'; $s_config_all_projects = 'Nota: Queste configurazioni impattano TUTTI I PROGETTI, a meno che non siano specializzate dal singolo progetto.'; $s_config_project = 'Nota: Queste configurazioni impattano SOLO il progetto %1$s.'; $s_colour_coding = 'Nella tabella seguente, sono applicati i seguenti codici-colore:'; @@ -674,6 +684,7 @@ $s_copy_to = 'Copia su'; $s_categories_and_version_title = 'Categorie e versioni'; $s_categories = 'Categorie'; $s_add_category_button = 'Nuova categoria'; +$s_add_and_edit_category_button = 'Aggiungere e Modificare Categoria'; $s_versions = 'Versioni'; $s_add_version_button = 'Nuova versione'; $s_add_and_edit_version_button = 'Aggiungi e modifica versione'; @@ -819,10 +830,10 @@ $s_selected_project = 'Progetto selezionato'; $s_valid_project_msg = 'Selezionare un progetto valido'; $s_signup_done_title = 'Registrazione dell\'account eseguita'; $s_password_emailed_msg = 'Congratulazioni. Registrazione completata con successo: riceverai una email di conferma per verificare che l\'indirizzo email da te indicato è corretto. Per attivare l\'account appena creato ed impostare la password di accesso dovrai visitare l\'indirizzo URL indicato all\'interno della email.'; -$s_no_reponse_msg = 'Hai sette giorni di tempo per completare e confermare la registrazione dell\'account; non rispondendo a questo messaggio entro una settimana, il nuovo account potrebbe essere eliminato.'; +$s_no_reponse_msg = 'Hai sette giorni di tempo per completare il processo di conferma dell\'account; se non riesci a farlo all\'interno di questo periodo di tempo, i nuovi account registrati potrebbero essere eliminati.'; $s_signup_captcha_request_label = 'Inserisci il codice come è mostrato nella casella a destra:'; $s_signup_captcha_refresh = 'Genera un nuovo codice'; -$s_signup_info = 'Dopo aver completato il modulo di registrazione, ti verrà inviata una email di conferma all\'indirizzo email specificato.
L\'email conterrà le istruzioni per attivare l\'account appena creato. Non rispondendo a questo messaggio entro una settimana, l\'account potrebbe essere eliminato.
Occorre indicare un indirizzo email valido ed esistente per poter ricevere l\'email di conferma.'; +$s_signup_info = 'Al completamento di questo form e dopo avere verificato le tue risposte, ti verrà inviato un messaggio di conferma all\'indirizzo email specificato.
Utilizzando il link fornito nell\'e-mail potrai attivare il tuo account. Se non effettuerai l\'attivazione entro sette giorni, l\'account potrebbe essere eliminato.
Devi specificare un indirizzo valido di posta elettronica per ricevere l\'email di conferma dell\'account.'; $s_signup_title = 'Registrazione'; $s_signup_button = 'Registrati'; $s_no_password_request = 'La password è gestita da un altro sistema. Contattare il proprio amministratore.'; @@ -869,6 +880,7 @@ $s_all = 'tutte'; $s_show = 'Mostra'; $s_show_label = 'Mostra:'; $s_changed = 'Evidenzia modifiche (ore)'; +$s_changed_label = 'Modifiche in evidenza (ore):'; $s_viewing_bugs_title = 'Elenco delle anomalie'; $s_updated = 'Ultima modifica'; $s_sticky = 'In primo piano'; @@ -1000,8 +1012,11 @@ $s_sponsorship_more_info = 'Maggiori informazioni sulla sponsorizzazione'; $s_sponsorship_total = 'Totale sponsorizzazioni'; $s_changelog = 'Registro modifiche'; $s_changelog_empty = 'Il registro non contiene nessuna informazione'; +$s_changelog_empty_manager = 'Nessun registro modifiche disponibile. Le anomalie vengono riportate se i progetti hanno versioni e se le anomalie sono state risolte con "risolto in versione" impostato.'; $s_roadmap = 'Roadmap'; $s_resolved_progress = '%1$d di %2$d anomalie risolte (%3$d%%).'; +$s_roadmap_empty = 'Nessuna informazione sui Rilasci è disponibile'; +$s_roadmap_empty_manager = 'Nessuna informazione sui Rilasci è disponibile. Le anomalie vengono riportate se i progetti hanno versioni e se se anomalie hanno impostato "assegnata alla versione"'; $s_http_auth_realm = 'MantisBT Login'; $s_bug = 'anomalia'; $s_bugs = 'anomalie'; @@ -1169,6 +1184,7 @@ $s_manage_user = 'Gestisci Utente'; $s_install_information = 'MantisBT Informazioni d\'installazione'; $s_database_information = 'MantisBT Informazioni del Database'; $s_path_information = 'MantisBT Informazioni percorso'; +$s_mantisbt_database_statistics = 'Statistiche del Database MantisBT'; $s_php_version = 'Versione PHP'; $s_adodb_version = 'Versione ADOdb'; $s_month_january = 'Gennaio'; diff --git a/lang/strings_japanese.txt b/lang/strings_japanese.txt index 4297ceeae1..d18fddac48 100644 --- a/lang/strings_japanese.txt +++ b/lang/strings_japanese.txt @@ -1052,8 +1052,8 @@ $s_reopen_issue = '課題の差戻し'; $s_view_private_issues = '非公開課題の参照'; $s_update_readonly_issues = '編集不可課題の更新'; $s_update_issue_status = '課題のステータス変更'; -$s_set_view_status = '公開度を設定 (公開か非公開)'; -$s_update_view_status = '公開度を更新 (公開か非公開)'; +$s_set_view_status = '新たなイシューかノートが報告された時の公開度を設定'; +$s_update_view_status = '新たなイシューかノートが報告された時の公開度を変更'; $s_show_list_of_users_monitoring_issue = '課題を監視している利用者一覧の表示'; $s_notes = 'コメント'; $s_add_notes = 'コメントの追加'; diff --git a/lang/strings_korean.txt b/lang/strings_korean.txt index 0636afbc56..1c7cc06724 100644 --- a/lang/strings_korean.txt +++ b/lang/strings_korean.txt @@ -41,6 +41,7 @@ * @author Changwoo * @author Hong3e * @author Priviet + * @author Revi * @author Wtspout * @author 고기랑 * @author 관인생략 @@ -686,7 +687,7 @@ $s_not_released = '아직 릴리스하지 않음'; $s_scheduled_release = '릴리스 예정'; $s_obsolete = '더 이상 사용되지 않음'; $s_version_updated_msg = '버전 정보가 바뀌었습니다.'; -$s_account_delete_protected_msg = '계정이 보호되었습니다. 이 계정을 삭제할수 없습니다.'; +$s_account_delete_protected_msg = '계정이 보호되었습니다. 이 계정을 삭제할 수 없습니다.'; $s_account_deleted_msg = '계정이 삭제되었습니다....'; $s_delete_account_sure_msg = '이 계정을 삭제하시겠습니까?'; $s_notify_user = '사용자 알림'; diff --git a/lang/strings_latvian.txt b/lang/strings_latvian.txt index e8335d4463..b466372661 100644 --- a/lang/strings_latvian.txt +++ b/lang/strings_latvian.txt @@ -39,6 +39,7 @@ * @file * * @author Papuass + * @author Silraks */ $s_actiongroup_menu_move = 'Pārvietot'; @@ -141,6 +142,7 @@ $s_resolution_enum_string = '10:atvērts,20:izlabots/realizēts,30:atkārtoti at $s_projection_enum_string = '10:nav,30:sīkas izmaiņas,50:izmaiņas,70:būtiskas izmaiņas,90:pārprojektēšana'; $s_eta_enum_string = '10:nav,20:< 1 dienu,30:2-3 dienas,40:< 1 nedēļu,50:< 1 mēnesi,60:> 1 mēnesi'; $s_new_account_username = 'Lietotāja vārds:'; +$s_new_account_email = 'E-pasts:'; $s_email_notification_title_for_status_bug_feedback = 'Sekojošam buga pieteikumam nepieciešama PAPILDINFORMĀCIJA.'; $s_email_notification_title_for_status_bug_acknowledged = 'Sekojošs buga pieteikums ir APSTIPRINĀTS(ackn).'; $s_email_notification_title_for_status_bug_confirmed = 'Sekojošs buga pieteikums ir APSTIPRINĀTS(conf).'; @@ -218,6 +220,7 @@ $s_delete_profile = 'Dzēst profilu'; $s_select_profile = 'Izvēlēties profilu'; $s_submit_button = 'Iesniegt'; $s_profile_updated_msg = 'Profils saglabāts...'; +$s_sponsor_show = 'Rādīt visus'; $s_account_updated_msg = 'Lietotāja konts saglabāts...'; $s_email_updated = 'Email address successfully updated'; $s_bug_close_msg = 'Kļūda aizvērta...'; @@ -252,6 +255,7 @@ $s_back_to_bug_link = 'Atpakaļ pie kļūdas'; $s_update_simple_link = 'Labošana'; $s_updating_bug_advanced_title = 'Informācijas par kļūdu labošana'; $s_category = 'Kategorija'; +$s_category_label = 'Kategorija:'; $s_severity = 'Kritiskums'; $s_reproducibility = 'Atkārtojamība'; $s_date_submitted = 'Reģistrēts'; @@ -349,6 +353,7 @@ $s_add_version_button = 'Pielikt versiju'; $s_edit_link = 'Labot'; $s_actions = 'Darbības'; $s_version = 'Versija'; +$s_version_label = 'Versija:'; $s_timestamp = 'Laiks'; $s_update = 'Labot'; $s_add_project_title = 'Pievienot projektu'; @@ -475,6 +480,7 @@ $s_percentage_fixed = '% atrisināti'; $s_percentage_errors = '% neapstiprinājās'; $s_errors = 'Kļūdas'; $s_total = 'Kopā'; +$s_days = 'Dienas'; $s_time_stats = 'Statistika par kļūdu risināšanas ilgumu'; $s_longest_open_bug = 'viss ilgāgā kļūda'; $s_longest_open = 'lielākais laiks'; @@ -485,6 +491,7 @@ $s_reporter_stats = 'ziņotāja statistika'; $s_orct = '(atvērti/atrisināti/slēgti/kopā)'; $s_any = 'visi'; $s_show = 'Parādīt'; +$s_show_label = 'Rādīt:'; $s_changed = 'Izmaiņas (pa stundu)'; $s_viewing_bugs_title = 'Kļūdu apskate'; $s_updated = 'Atjaunināts'; @@ -496,14 +503,25 @@ $s_prev = 'iepr.'; $s_next = 'nākoš.'; $s_first = 'pirmais'; $s_last = 'pēdējais'; +$s_yes = 'Jā'; +$s_no = 'Nē'; +$s_ok = 'Labi'; +$s_select_all = 'Izvēlēties visu'; +$s_use_query = 'Izmantot filtru'; +$s_delete_query = 'Dzēst filtru'; +$s_query_deleted = 'Filtrs dzēsts'; +$s_save_query = 'Saglabāt pašreizējo filtru'; $s_view_simple_link = 'Apskate'; $s_product_build = 'produkta apakšversija'; $s_system_profile = 'Sistēmas (darba vides) apraksts'; $s_update_bug_button = 'Labot'; $s_bug_assign_to_button = 'Piešķirts:'; $s_reopen_bug_button = 'Atkārtoti atvērt'; +$s_close_bug_button = 'Aizvērt'; +$s_move_bug_button = 'Pārvietot'; $s_attached_files = 'Failu pievienošana'; $s_publish = 'Publicēt'; +$s_add_user_to_monitor = 'Pievienot'; $s_no_users_monitoring_bug = 'Neviens lietotājs neveic šī buga monitoringu.'; $s_users_monitoring_bug = 'Lietotāji, kas veic monitoringu'; $s_monitoring_user_list = 'Lietotāju saraksts'; @@ -524,6 +542,7 @@ $s_custom_field_access_level_r = 'Lasīšanas tiesības'; $s_custom_field_access_level_rw = 'Labošanas tiesības'; $s_custom_field_length_min = 'Min. garums'; $s_custom_field_length_max = 'Max. garums'; +$s_custom_field_filter_by = 'Pievienot filtram'; $s_custom_field_sequence = 'Secība(n.p.k)'; $s_custom_field_type_enum_string = '0:Teksts,1:Skaitlis,2:Decimālskaitlis,3:Uzskaitījums,4:E-pasts,5:Izvēles rūtiņa,6:Saraksts,7:Vairāku izvēļu saraksts,8:Datums,9:Radio poga,10:Teksta lauks'; $s_confirm_used_custom_field_deletion = 'šis lauks ir saistīts ar vismaz vienu projektu. Ja turpināsiet, visas vērtības tiks izdzēstas. Šī darbība ir neatceļama. Lai atliktu, spiediet atgriezieties uz iepriekšējo lapu.'; @@ -533,8 +552,18 @@ $s_hide_status = 'Slēpt statusu'; $s_filter_closed = 'Aizvērtie'; $s_filter_resolved = 'Atrisinātie'; $s_attachments = 'pielikums(-i)'; +$s_kb = 'KB'; +$s_add_new_relationship_button = 'Pievienot'; +$s_replace_relationship_button = 'Aizvietot'; +$s_delete_relationship_button = 'Dzēst'; +$s_view = 'Skatīt'; +$s_delete_attachment_button = 'Dzēst'; +$s_save_filters = 'Saglabāt filtrus'; $s_from_date = 'No'; $s_to_date = 'Kam'; +$s_time_tracking_stopwatch_start = 'Sākt'; +$s_time_tracking_stopwatch_stop = 'Apturēt'; +$s_time_tracking_stopwatch_reset = 'Sākt no sākuma'; $MANTIS_ERROR[ERROR_GENERIC] = 'darbības izpildes rezultātā notikusi kļūda. Iespējams, Jūs vēlaties par to ziņot savam lokālajam administrātoram.'; $MANTIS_ERROR[ERROR_SQL] = 'Notikusi SQL kļūda.'; $MANTIS_ERROR[ERROR_REPORT] = 'Jūsu ziņojumā konstatētas kļūdas.'; diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index 47a5b9db9d..e74424af1e 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -155,7 +155,7 @@ $s_status_group_bugs_button = 'De Zohshtand ändere'; $s_category_group_bugs_button = 'De Saachjropp ändere'; $s_view_status_group_bugs_button = 'De Seeshbakeit ändere'; $s_fixed_in_version_group_bugs_button = 'De Version ändere, wo et jedonn wohr'; -$s_target_version_group_bugs_button = 'De aanjepeilte Version ändere'; +$s_target_version_group_bugs_button = 'De aanjepeilte Väsjohn ändere'; $s_update_severity_title = 'Et Jeweesch ändere'; $s_update_severity_msg = 'Donn dä Aanjelääjeheit ier Jeweesch ußwähle'; $s_update_severity_button = 'Jeweesch ändere'; @@ -169,7 +169,7 @@ $s_error_no_proceed = 'Nämm dä „Retuur“-Knopp vun Dingem Brauser un jang e Doh kanns De repareeere, wat jraadt verkeht woor, udder en annder Akßjuhn nämme. Natöörlesch kanns De och över et Mennü janz jet andersch donn jonn.'; $s_login_error = 'Dinge Zohjang heh künnt afjeschalldt sin, udder jeschpächt, udder Dinge Nahme als Metmaacher, udder Ding Paßwoot es verkeeht ennjejovve.'; $s_login_cookies_disabled = 'Dinge Web_Brauser kann udder well met cookies net ömjonn.'; -$s_go_back = 'Jangk retuur'; +$s_go_back = 'Jangk retuhr'; $s_proceed = 'Wiggerjonn!'; $s_switch = 'Wääßelle'; $s_logged_in_as = 'Enjelogg als'; @@ -195,7 +195,7 @@ $s_new_account_greeting = 'Märßi för et Aanmällde. Do häß jez ene Zohjang $s_new_account_greeting_admincreated = 'Dä Metmaacher „%1$s“ hät ene Zohjang met däm Metmaacher_Nahme „%2$s“ för Desch ennjereschdt. Öm Ding Aanmeldung fähdesch ze maache, jangk op dä URL hee dronger (Paß drop op, dat dä en eine Reih shteiht) un donn dann Ding eije Paßwoot faßlähje:'; $s_new_account_username = 'Metmaacher_Nahme:'; $s_new_account_message = 'Wann De kein Aanmeldung hann wells, dann verjeß heh di Nohreesch un et paßeet eijfach nix.'; -$s_new_account_do_not_reply = 'Donn nit op hee di Nohreesch antwoote!'; +$s_new_account_do_not_reply = 'Donn nit op heh di Nohreesch antwoote!'; $s_new_account_email = 'e-mail:'; $s_new_account_IP = 'Vun dä IP-Addräß:'; $s_new_account_signup_msg = 'Heh dä Zohjang es ennjereschdt woode:'; @@ -220,10 +220,10 @@ $s_email_notification_title_for_action_has_duplicate_relationship_added = 'Di Aa $s_email_notification_title_for_action_related_to_relationship_added = 'Di Aanjelääjeheit heh es verwandt met dä Aanjelääjeheit %1$s.'; $s_email_notification_title_for_action_dependant_on_relationship_added = 'Di Aanjelääjeheit heh noh hängk aff vun dä Aanjelääjeheit %1$s.'; $s_email_notification_title_for_action_blocks_relationship_added = 'Di Aanjelääjeheit heh noh muß et ehz jedonn sinn, domet de Aanjelääjeheit %1$s fähdesch jemaat wähde kann.'; -$s_email_notification_title_for_action_duplicate_of_relationship_deleted = 'Di Aanjelääjeheit heh noh es jäz nit mieh dubbel met dä Aanjelääjeheit %1$s.'; -$s_email_notification_title_for_action_has_duplicate_relationship_deleted = 'Di Aanjelääjeheit %1$s es jäz nit mieh dubbel met dä Aanjelääjeheit heh noh.'; -$s_email_notification_title_for_action_related_to_relationship_deleted = 'Di Aanjelääjeheit heh noh es jäz nit mieh verwandt met dä Aanjelääjeheit %1$s.'; -$s_email_notification_title_for_action_dependant_on_relationship_deleted = 'Di Aanjelääjeheit heh noh hängk jäz nit mieh aff vun dä Aanjelääjeheit %1$s.'; +$s_email_notification_title_for_action_duplicate_of_relationship_deleted = 'Di Aanjelääjeheit heh noh es jäz nit mih dubbel met dä Aanjelääjeheit %1$s.'; +$s_email_notification_title_for_action_has_duplicate_relationship_deleted = 'Di Aanjelääjeheit %1$s es jäz nit mih dubbel met dä Aanjelääjeheit heh noh.'; +$s_email_notification_title_for_action_related_to_relationship_deleted = 'Di Aanjelääjeheit heh noh es jäz nit mih verwandt met dä Aanjelääjeheit %1$s.'; +$s_email_notification_title_for_action_dependant_on_relationship_deleted = 'Di Aanjelääjeheit heh noh hängk jäz nit mih aff vun dä Aanjelääjeheit %1$s.'; $s_email_notification_title_for_action_blocks_relationship_deleted = 'Di Aanjelääjeheit heh noh es jäz nit mieh nüüdesch, öm de Aanjelääjeheit %1$s jedonn ze krijje.'; $s_email_notification_title_for_action_relationship_child_resolved = 'De verwandte Aanjelääjeheit %1$s es jäz jedonn.'; $s_email_notification_title_for_action_relationship_child_closed = 'De verwandte Aanjelääjeheit %1$s es jäz zohjemaat.'; @@ -287,7 +287,7 @@ $s_email_on_priority_change = 'Scheck en e-mail wann ene Rang j $s_email_bugnote_limit = 'Schegg en e-mail wann nit mih Noteze zohjelohße sin'; $s_language = 'Schprohch'; $s_update_prefs_button = 'Lohß Jonn!'; -$s_reset_prefs_button = 'Enshtellunge retuur säze'; +$s_reset_prefs_button = 'Enschtällonge retuhr säze'; $s_timezone = 'Ziggzohn'; $s_prefs_reset_msg = 'De Enshtellunge sin zeröck jesaz …'; $s_prefs_updated_msg = 'De Enshtellunge sin om neue Shtand …'; @@ -374,24 +374,24 @@ $s_resolution = 'Lösung'; $s_status = 'Stattus'; $s_duplicate_id = 'Dubbelte Kännong'; $s_os = 'Bedrievßsystem'; -$s_os_version = 'Version vum Bedrievßsystem'; +$s_os_version = 'Väsjohn vum Bedrievßsystem'; $s_eta = 'Opwand'; $s_product_version = 'De Väsjohn vum Produk'; -$s_fixed_in_version = 'Jedonn en dä Version'; -$s_target_version = 'Jeplaant för de Version'; +$s_fixed_in_version = 'Jedonn en dä Väsjohn'; +$s_target_version = 'Jeplaant för de Väsjohn'; $s_votes = 'Schtemme'; $s_summary = 'Zosammefaßong'; $s_update_information_button = 'Lohß Jonn!'; $s_profile = 'Profihl'; $s_updating_bug_simple_title = 'Aanjahbe övver di Aanjelääjheit obb ene neue Schtand bränge'; -$s_view_revisions = 'Versione aankike'; +$s_view_revisions = 'Väsjohne aankike'; $s_revision = 'Väsjohn'; $s_revision_by = 'vum %2$s aam %1$s'; $s_revision_drop = 'Falle lohße'; $s_bug_revision_dropped_history = 'Di Version vun däm bug es fott.'; $s_bugnote_revision_dropped_history = 'Di Version vun dä Notiz es fott.'; $s_all_revisions = 'All Versione'; -$s_back_to_issue = 'Retuur noh dä Aanjelääjeheit'; +$s_back_to_issue = 'Retuhr noh dä Aanjelääjeheit'; $s_confirm_revision_drop = 'Wells De verhaftesch heh di Version vun dä Aanjelääjeheit falle lohße?'; $s_vote_added_msg = 'Di Shtemm es dobei jekumme.'; $s_bugnote_added_msg = 'En Notiz es dobei jedonn.'; @@ -428,7 +428,7 @@ $s_newer_news_link = 'Neuer Nohreeschte'; $s_older_news_link = 'Ähler Nohreeschte'; $s_archives = 'Aschiive'; $s_rss = 'RSS'; -$s_mantis_version = 'MantisBT sing Version'; +$s_mantis_version = 'MantisBT sing Väsjohn'; $s_created_user_part1 = 'Metmaacher aanjelaat'; $s_created_user_part2 = 'met däm Rääsch för der Zohjreff op däm Nivoh'; $s_create_new_account_title = 'Ene neue Zohjang för ene Metmaacher aanlääje'; @@ -519,12 +519,12 @@ $s_signup_info = 'Wann De dat Fommulaa heh kumplätt ußjeföllt has, un Ding An $s_signup_title = 'Aanmälde'; $s_signup_button = 'Aanmälde'; $s_no_password_request = 'Ding Paßwoot weed vun enem andere Süßteem verwalldt. Donn Desch aan Dinge Verwallder vun däm Süßteem wende.'; -$s_edit_site_settings_title = 'Enschtellunge för di Websait Ändere'; +$s_edit_site_settings_title = 'Enschtällonge för di Weßait ändere'; $s_save_settings_button = 'Enschtällonge faßhallde'; $s_site_settings_title = 'Enschtällonge för di Webßait'; $s_system_info_link = 'Enfommazjuhne övver et Süßteem'; $s_site_settings_link = 'Enschtällonge för di Webßait'; -$s_site_settings_updated_msg = 'De Enschtellunge för di Webßait sin jäz aanjepaß'; +$s_site_settings_updated_msg = 'De Enschtällonge för di Webßait sin jäz aanjepaß'; $s_summary_title = 'Zosammefaßong'; $s_summary_advanced_link = 'Fottjeschredde Zosammefaßung'; $s_by_project = 'Zoteer noh\'m Projäk'; @@ -559,7 +559,7 @@ $s_none = 'keine'; $s_search = 'Söhke'; $s_view_prev_link = 'Vörijje beloore'; $s_view_next_link = 'Näkßte beloore'; -$s_prev = 'Retuur'; +$s_prev = 'Retuhr'; $s_next = 'Vöran'; $s_first = 'Eezte'; $s_last = 'Läz'; @@ -573,7 +573,7 @@ $s_select_all = 'Alle Ußwähle'; $s_use_query = 'Fellter bruche'; $s_delete_query = 'Felter fottschmiiße'; $s_query_deleted = 'Felter fottjeschmeße'; -$s_save_query = 'Donn hee dä Felter faßhallde'; +$s_save_query = 'Donn heh dä Felter faßhallde'; $s_reset_query = 'De Ußwahl ophävve'; $s_query_name = 'Dä Nahme fun däm Felter'; $s_query_exists = 'Dä beschtemmpte Felter singk ald doh ze sin.'; @@ -809,7 +809,7 @@ $MANTIS_ERROR[ERROR_PROJECT_NAME_INVALID] = 'Dat es ene onjöltijje Name för e $MANTIS_ERROR[ERROR_USER_BY_NAME_NOT_FOUND] = 'Ene Metmaacher met däm Name „%1$s“ kunnt mer nit fenge.'; $MANTIS_ERROR[ERROR_USER_BY_ID_NOT_FOUND] = 'Ene Metmaacher met dä Kännong „%1$d“ kunnt mer nit fenge.'; $MANTIS_ERROR[ERROR_AUTH_INVALID_COOKIE] = 'De Login-Daate, di Dinge Brauser faßjehallde hät, sin verkeeht. Müjjelesch, dat Dinge Zohjang un Dinge Name als ene Metmaacher fott sin?'; -$MANTIS_ERROR[ERROR_USER_PREFS_NOT_FOUND] = 'Enshtällunge för hee dä Metmaacher kunnte mer nit fenge.'; +$MANTIS_ERROR[ERROR_USER_PREFS_NOT_FOUND] = 'Enshtällunge för heh dä Metmaacher kunnte mer nit fenge.'; $MANTIS_ERROR[ERROR_NEWS_NOT_FOUND] = 'Di Neujeschkeijt kunnt mer nit fenge.'; $MANTIS_ERROR[ERROR_USER_CREATE_PASSWORD_MISMATCH] = 'De aanjejovve Paßwööter sin nit ejaal.'; $MANTIS_ERROR[ERROR_GPC_ARRAY_EXPECTED] = 'E Feld sullt för %1$s aanjejovve sin, ävver mer han e Täxshtöcksche krääje.'; @@ -817,7 +817,7 @@ $MANTIS_ERROR[ERROR_GPC_ARRAY_UNEXPECTED] = 'E Täxshtöcksche sullt för %1$s a $MANTIS_ERROR[ERROR_GPC_NOT_NUMBER] = 'En Zahl sullt för %1$s aanjejovve sin.'; $MANTIS_ERROR[ERROR_BUG_NOT_FOUND] = 'Aanjelääjeheit %1$d nit jefonge.'; $MANTIS_ERROR[ERROR_FILTER_NOT_FOUND] = 'Ene Felter %1$s ham_mer nit jefonge.'; -$MANTIS_ERROR[ERROR_FILTER_TOO_OLD] = 'Dä Felter, dä De bruche wells, es täschnesch övverhollt un kann nit mieh op ene neue Shtand jebraat wääde. Bes esu joot, un donn dä eijfaach neu aanlääje.'; +$MANTIS_ERROR[ERROR_FILTER_TOO_OLD] = 'Dä Felter, dä De bruche wells, es täschnesch övverhollt un kann nit mih op ene neue Shtand jebraat wääde. Bes esu johd, un donn dä eijfaach neu aanlääje.'; $MANTIS_ERROR[ERROR_EMAIL_INVALID] = 'Kapodde Addräß för de e-mail.'; $MANTIS_ERROR[ERROR_EMAIL_DISPOSABLE] = 'Adräße för e-mail, di mer jlish widder fottshmiiß, udder su udder esu nur eijmohl bruche kann, sin nit johjelohße'; $MANTIS_ERROR[ERROR_USER_PROFILE_NOT_FOUND] = 'Profihl nit jefonge.'; diff --git a/lang/strings_serbian.txt b/lang/strings_serbian.txt index 7cdf32e3ce..2b17c7341f 100644 --- a/lang/strings_serbian.txt +++ b/lang/strings_serbian.txt @@ -41,6 +41,7 @@ * @author Charmed94 * @author Milicevic01 * @author Rancher + * @author Srdjan m * @author Милан Јелисавчић * @author Михајло Анђелковић */ @@ -59,6 +60,7 @@ $s_actiongroup_menu_update_view_status = 'Ажурирај видљивост'; $s_actiongroup_menu_update_category = 'Ажурирај категорију'; $s_actiongroup_menu_set_sticky = 'залепи/одлепи'; $s_actiongroup_menu_update_field = 'Ажурирај %1$s'; +$s_actiongroup_menu_update_product_version = 'Ажурирај верзију производа'; $s_actiongroup_menu_update_target_version = 'Ажурирај крајњу верзију'; $s_actiongroup_menu_update_fixed_in_version = 'Ажурирај „исправљено у верзији“'; $s_actiongroup_menu_update_product_build = 'Ажурирај састав производа'; @@ -81,6 +83,8 @@ $s_private_project_msg = 'Овај пројекат је приватан. До $s_access_level_project = 'Степен приступа пројекту'; $s_view_submitted_bug_link = 'Погледај пријављени проблем %1$s'; $s_assigned_projects = 'Додељени пројекти'; +$s_assigned_projects_label = 'Додељени пројекти'; +$s_unassigned_projects_label = 'Неподељени пројекти'; $s_print = 'Штампај'; $s_jump = 'Иди'; $s_copy_users = 'Копирај кориснике'; @@ -106,6 +110,7 @@ $s_bugnote_link_title = 'Непосредна веза до белешке'; $s_delete_bugnote_button = 'Обриши белешку'; $s_delete_bugnote_sure_msg = 'Желите ли да обришете ову белешку?'; $s_bug_relationships = 'Односи'; +$s_bug_relationships_label = 'Односи:'; $s_empty_password_sure_msg = 'Корисник има празну лозинку. Јесте ли сигурни да тако желите да оставите?'; $s_empty_password_button = 'Користи празну лозинку'; $s_reauthenticate_title = 'Провера'; @@ -153,6 +158,7 @@ $s_status_bugs_conf_msg = 'Изаберите стање проблема'; $s_view_status_bugs_conf_msg = 'Изаберите стање видљивости проблема'; $s_category_bugs_conf_msg = 'Изаберите категорију проблема'; $s_set_sticky_bugs_conf_msg = 'Желите ли да залепите/одлепите ове проблеме?'; +$s_product_version_bugs_conf_msg = 'Ажурирај верзију производа на'; $s_fixed_in_version_bugs_conf_msg = 'Ажурирај „исправљено у верзији“ на'; $s_target_version_bugs_conf_msg = 'Ажурирај крајњу верзију у'; $s_close_group_bugs_button = 'Затвори проблеме'; @@ -166,6 +172,7 @@ $s_status_group_bugs_button = 'Ажурирај стање'; $s_category_group_bugs_button = 'Ажурирај категорију'; $s_view_status_group_bugs_button = 'Ажурирај видљивост'; $s_set_sticky_group_bugs_button = 'Залепи/одлепи'; +$s_product_version_group_bugs_button = 'Ажурирај верзију производа'; $s_fixed_in_version_group_bugs_button = 'Ажурирај „исправљено у верзији“'; $s_target_version_group_bugs_button = 'Ажурирај крајњу верзију'; $s_update_severity_title = 'Ажурирај озбиљност'; @@ -246,6 +253,7 @@ $s_email_notification_title_for_action_monitor = 'Проблем %1$s сада $s_email_reporter = 'Известилац'; $s_email_handler = 'Додељено'; $s_email_project = 'Пројекат'; +$s_email_project_label = 'Пројекат:'; $s_email_bug = 'Назнака проблема'; $s_email_category = 'Категорија'; $s_email_reproducibility = 'Умножавање'; @@ -270,12 +278,17 @@ $s_manage_profiles_link = 'Профили'; $s_change_preferences_link = 'Поставке'; $s_edit_account_title = 'Измена налога'; $s_username = 'Корисничко име'; +$s_username_label = 'Корисничко име'; $s_realname = 'Право име'; +$s_realname_label = 'Право име'; $s_email = 'Е-пошта'; +$s_email_label = 'Е-пошта'; $s_password = 'Лозинка'; $s_no_password_change = 'Лозинком управља други систем, па зато не може да се мења овде.'; $s_confirm_password = 'Потврдите лозинку'; +$s_current_password = 'Тренутна лозинка'; $s_access_level = 'Степен приступа'; +$s_access_level_label = 'Степен приступа'; $s_update_user_button = 'Ажурирај корисника'; $s_verify_warning = 'Подаци вашег налога су потврђени. Потврдна порука коју сте примили сада више не важи.'; $s_verify_change_password = 'Овде морате да поставите лозинку да бисте могли да се поново пријавите.'; @@ -309,6 +322,7 @@ $s_profile_added_msg = 'Профил је додат.'; $s_profile_deleted_msg = 'Профил је обрисан.'; $s_edit_profile_title = 'Уређивање профила'; $s_platform = 'Платформа'; +$s_platform_label = 'Платформа:'; $s_additional_description = 'Додатни опис'; $s_update_profile_button = 'Ажурирај профил'; $s_profile_defaulted_msg = 'Подразумевани профил је ажуриран.'; @@ -384,7 +398,7 @@ $s_reminder_list_truncated = 'листа прималаца је скраћен $s_bug_send_button = 'Пошаљи'; $s_reminder = 'Подсетник'; $s_reminder_explain = 'Ова порука ће бити послата примаоцима који су пријављени на овај проблем.'; -$s_reminder_monitor = 'Ови примаоци ће исто тако почети да надгледају проблем. Они се могу одјавити преко дугмета „Прекини надгледање“.'; +$s_reminder_monitor = 'Ови примаоци ће исто тако почети да надгледају проблем; они се могу одјавити преко дугмета Прекини надгледање.'; $s_reminder_store = 'Ова белешка ће бити сачувана заједно с проблемом.'; $s_confirm_sponsorship = 'Потврдите да желите да спонзоришете проблем %1$d за %2$s.'; $s_stick_bug_button = 'Залепи'; @@ -395,23 +409,34 @@ $s_update_simple_link = 'Просто ажурирање'; $s_updating_bug_advanced_title = 'Ажурирање података о проблему'; $s_id = 'Назнака'; $s_category = 'Категорија'; +$s_category_label = 'Категорија:'; $s_severity = 'Тежина'; +$s_severity_label = 'Тежина:'; $s_reproducibility = 'Умножавање'; $s_date_submitted = 'Датум слања'; $s_last_update = 'Последње ажурирање'; $s_reporter = 'Известилац'; +$s_reporter_label = 'Известилац:'; $s_assigned_to = 'Додељено'; +$s_assigned_to_label = 'Додељено:'; $s_priority = 'Важност'; +$s_priority_label = 'Приоритет:'; $s_resolution = 'Решење'; +$s_resolution_label = 'Решење:'; $s_status = 'Стање'; +$s_status_label = 'Стање:'; $s_duplicate_id = 'Назнака дупликата'; $s_os = 'Оперативни систем'; +$s_os_label = 'Оперативни систем:'; $s_projection = 'Прогноза'; $s_os_version = 'Верзија ОС'; +$s_os_version_label = 'Верзија оперативног система:'; $s_eta = 'Процењени рок:'; $s_product_version = 'Верзија производа'; +$s_product_version_label = 'Верзија производа:'; $s_build = 'Састав'; $s_fixed_in_version = 'Исправљено у верзији'; +$s_fixed_in_version_label = 'Исправљено у верзији:'; $s_target_version = 'Крајња верзија'; $s_votes = 'Гласова'; $s_summary = 'Кратак опис'; @@ -420,8 +445,10 @@ $s_steps_to_reproduce = 'Кораци за умножавање'; $s_update_information_button = 'Ажурирај податке'; $s_sticky_issue = 'Лепљиви проблем'; $s_profile = 'Профил'; +$s_profile_label = 'Профил:'; $s_updating_bug_simple_title = 'Ажурирање података о проблему'; $s_view_revisions = 'Погледај измене'; +$s_view_num_revisions = 'Види %1$d измене'; $s_revision = 'Измена'; $s_revision_by = '%1$s од %2$s'; $s_revision_drop = 'Изостави'; @@ -442,11 +469,14 @@ $s_add_bugnote_button = 'Додај белешку'; $s_bugnote_edit_link = 'Уреди'; $s_closed_bug_button = 'Затвори проблем'; $s_bugnote_updated_msg = 'Белешка је ажурирана.'; +$s_last_edited = 'Последња измена:'; $s_hide_content = 'Сакриј садржај'; $s_show_content = 'Прикажи садржај'; -$s_total_queries_executed = 'Извршено упита: %1$d.'; -$s_unique_queries_executed = 'Извршено засебних упита: %1$d.'; -$s_memory_usage_in_kb = 'искоришћено меморије: %1$s kB'; +$s_total_queries_executed = 'Извршено упита: %1$d'; +$s_unique_queries_executed = 'Извршено засебних упита: %1$d'; +$s_memory_usage_in_kb = 'искоришћено меморије: %1$s KiB'; +$s_log_page_number = 'Број'; +$s_log_page_event = 'Догађај'; $s_please_report = 'Молимо вас да пријавите ово на %1$s.'; $s_click_to_login = 'Пријава'; $s_warning_plain_password_authentication = 'Упозорење: користи се проста провера лозинке. Ова лозинка ће бити видљива администраторима.'; @@ -486,6 +516,7 @@ $s_create_new_account_title = 'Отварање налога'; $s_verify_password = 'Потврди лозинку'; $s_enabled = 'Омогућено'; $s_protected = 'Заштићено'; +$s_protected_label = 'Заштићено'; $s_create_user_button = 'Направи корисника'; $s_hide_disabled = 'Сакриј онемогућено'; $s_filter_button = 'Примени филтер'; @@ -517,6 +548,7 @@ $s_manage_accounts_title = 'Управљање налозима'; $s_p = 'з'; $s_date_created = 'Датум стварања'; $s_last_visit = 'Последња посета'; +$s_last_visit_label = 'Последња посета:'; $s_edit_user_link = 'Уреди корисника'; $s_config_all_projects = 'Напомена: ове поставке утичу на све пројекте.'; $s_config_project = 'Напомена: ове поставке се односе само на пројекат %1$s.'; @@ -558,6 +590,7 @@ $s_assign_issue = 'Додели проблем'; $s_allow_reporter_close = 'Дозволи известиоцу да затвори проблем'; $s_allow_reporter_reopen = 'Дозволи известиоцу да поново отвори проблем'; $s_set_status_assigned = 'Постави стање при додељивању проблема одговорног лица'; +$s_edit_own_bugnotes = 'Уреди властите белешке'; $s_limit_access = 'Ограничи приступ известиоцу до сопствених проблема'; $s_submit_status = 'Стање на које је назначен нови проблем'; $s_assigned_status = 'Стање на које се постављају самододељени проблеми'; @@ -593,6 +626,7 @@ $s_plugin_install = 'Инсталирај'; $s_plugin_upgrade = 'Догради'; $s_plugin_uninstall = 'Уклони'; $s_plugin_uninstall_message = 'Желите ли да уклоните додатак „%1$s“?'; +$s_plugin_key_label = 'Кључ:'; $s_plugin_key_met = 'додатак је спреман'; $s_plugin_key_unmet = 'не зависи'; $s_plugin_key_dated = 'застареле зависности'; @@ -721,6 +755,7 @@ $s_title = 'Наслов'; $s_project_file_deleted_msg = 'Пројектна датотека је обрисана.'; $s_confirm_file_delete_msg = 'Желите ли да обришете ову датотеку?'; $s_filename = 'Назив датотеке'; +$s_filename_label = 'Назив датотеке:'; $s_file_update_button = 'Ажурирај датотеку'; $s_file_delete_button = 'Обриши датотеку'; $s_project_documentation_title = 'Пројектна документација'; @@ -763,7 +798,7 @@ $s_valid_project_msg = 'Морате да изаберете исправан п $s_signup_done_title = 'Налог је отворен.'; $s_password_emailed_msg = 'Честитамо! Успешно сте се уписали. Сада ћемо вам послати поруку за потврду е-адресе. Налог ћете активирати кликом на везу која је наведена у тој поруци.'; $s_no_reponse_msg = 'Имате седам дана да довршите потврђивање налога; ако то не урадите у задатом року, налог може бити поништен.'; -$s_signup_info = 'Када попуните овај образац и проверите одговоре, биће вам послата потврдна порука преко е-поште.
Путем ове поруке можете да активирате свој налог. Ако га не активирате у року од седам дана, он ће бити поништен.
Морате да наведете исправну е-адресу да бисте добили потврдну поруку.'; +$s_signup_info = 'Када попуните овај образац и проверите одговоре, биће вам послата потврдна порука преко е-поште.
Путем везе у е-поруци, моћи ћете да активирате свој налог. Ако га не активирате у року од седам дана, он ће бити поништен.
Морате да наведете исправну е-адресу да бисте добили потврдну поруку.'; $s_signup_title = 'Регистрација'; $s_signup_button = 'Отвори налог'; $s_no_password_request = 'Вашом лозинком управља други систем. Обратите се системском администратору.'; @@ -808,10 +843,12 @@ $s_orct = '(отворени/решени/затворени/укупно)'; $s_any = 'било који'; $s_all = 'све'; $s_show = 'Прикажи'; -$s_changed = 'Измењено'; +$s_show_label = 'Прикажи:'; +$s_changed = 'Истакнуто промењено (сати)'; $s_viewing_bugs_title = 'Преглед проблема'; $s_updated = 'Ажурирано'; $s_sticky = 'Прикажи лепљиве проблеме'; +$s_sort_label = 'Поређај по:'; $s_issue_id = 'Број проблема'; $s_recently_visited = 'Недавно посећено'; $s_priority_abbreviation = 'В'; @@ -827,7 +864,10 @@ $s_prev = 'Претходно'; $s_next = 'Следеће'; $s_first = 'Прва'; $s_last = 'Последња'; +$s_start_date_label = 'Почетни датум:'; +$s_end_date_label = 'Завршни датум:'; $s_use_date_filters = 'Користи филтере за период'; +$s_use_date_filters_label = 'Користи филтере за период:'; $s_yes = 'Да'; $s_no = 'Не'; $s_open_filters = 'Промени филтер'; @@ -840,6 +880,7 @@ $s_query_deleted = 'Филтер је обрисан'; $s_save_query = 'Сачувај тренутни филтер'; $s_reset_query = 'Поништи филтер'; $s_query_name = 'Назив филтера'; +$s_query_name_label = 'Назив филтера:'; $s_query_exists = 'Овај филтер већ постоји.'; $s_query_dupe_name = 'Филтер с истим називом већ постоји. Изаберите други.'; $s_query_blank_name = 'Не можете да сачувате филтер без назива. Именујте овај филтер пре него што га сачувате.'; @@ -849,6 +890,7 @@ $s_open_queries = 'Управљање филтерима'; $s_query_delete_msg = 'Желите ли да обришете овај филтер?'; $s_view_simple_link = 'Основни преглед'; $s_product_build = 'Састав производа'; +$s_product_build_label = 'Састав производа:'; $s_system_profile = 'Опис система'; $s_update_bug_button = 'Уреди'; $s_bug_assign_to_button = 'Додели:'; @@ -874,6 +916,7 @@ $s_update_custom_field_button = 'Ажурирај прилагођено пољ $s_add_existing_custom_field = 'Додај постојеће прилагођено поље'; $s_edit_custom_field_title = 'Уређивање прилагођеног поља'; $s_custom_field = 'Поље'; +$s_custom_field_label = 'Поље:'; $s_custom_fields_setup = 'Прилагођена поља'; $s_custom_field_name = 'Назив'; $s_custom_field_project_count = 'Број пројеката'; @@ -896,7 +939,9 @@ $s_custom_field_require_resolved = 'Потребно при решавању'; $s_custom_field_require_closed = 'Потребно при затварању'; $s_link_custom_field_to_project_title = 'Повежи прилагођено поље с пројектом'; $s_link_custom_field_to_project_button = 'Повежи прилагођено поље'; +$s_linked_projects_label = 'Повезани пројекти:'; $s_custom_field_sequence = 'Низ'; +$s_custom_field_sequence_label = 'Низ'; $s_custom_field_type_enum_string = '0:Ниска,1:Бројчано,2:Со остатком,3:Пребројавање,4:Е-пошта,5:Кућица за означавање,6:Списак,7:Вишеизборни списак,8:Датум,9:Радио,10:Textarea'; $s_confirm_used_custom_field_deletion = 'Ово поље је тренутно повезано с барем једним пројектом. Ако наставите, све вредности овог поља ће бити трајно обрисане. Ова радња је неповратна. Ако не желите да обришете ово поље, кликните на дугме „Назад“ на вашем интернет прегледачу. Да бисте наставили, кликните на дугме испод.'; $s_confirm_custom_field_deletion = 'Желите ли да обришете ово прилагођено поље и све повезане вредности?'; @@ -912,6 +957,7 @@ $s_and_above = 'И изнад'; $s_advanced_filters = 'Напредни филтери'; $s_simple_filters = 'Основни филтери'; $s_monitored_by = 'Надгледа'; +$s_monitored_by_label = 'Надгледа:'; $s_attachments = 'прилози'; $s_bytes = 'бајтови'; $s_attachment_missing = 'Недостаје прилог'; @@ -945,12 +991,12 @@ $s_relationship_with_parent = 'Однос с надређеним проблем $s_delete_relationship_button = 'Обриши'; $s_delete_relationship_sure_msg = 'Желите ли да обришете овај однос?'; $s_relationship_warning_blocking_bugs_not_resolved = 'Нису сви подређени овог проблема решени или затворени.'; -$s_relationship_warning_blocking_bugs_not_resolved_2 = 'Пажња: нису сви подређени овог проблема решени или затворени.
Пре него што решите/затворите надређени проблем, прво решите или затворите све повезане подређене проблеме.'; +$s_relationship_warning_blocking_bugs_not_resolved_2 = 'Пажња: нису сви подређени овог проблема решени или затворени.
Пре него што решите/затворите надређени проблем, прво решите или затворите све повезане подређене проблеме.'; $s_create_child_bug_button = 'Клонирај'; $s_bug_cloned_to = 'Проблем је клониран'; $s_bug_created_from = 'Проблем је створен из'; $s_copy_from_parent = 'Копирај допуњене податке из надређеног проблема'; -$s_copy_notes_from_parent = 'Копирај белешке о грешци'; +$s_copy_notes_from_parent = 'Копирај белешке о проблему'; $s_copy_attachments_from_parent = 'Копирај прилоге'; $s_viewing_bug_relationship_graph_title = 'Графикон односа'; $s_viewing_bug_dependency_graph_title = 'Графикон зависности'; @@ -973,11 +1019,11 @@ $s_view_private_issues = 'Погледај приватне проблеме'; $s_update_readonly_issues = 'Ажурирај проблеме доступне само за читање'; $s_update_issue_status = 'Ажурирај стање проблема'; $s_set_view_status = 'Постави видљивост стања (јавно или приватно)'; -$s_update_view_status = 'Ажурирај видљивост стања (јавно или приватно)'; +$s_update_view_status = 'Промени видљивост стања постојећег проблема или белешке'; $s_show_list_of_users_monitoring_issue = 'Прикажи списак корисника који надгледају проблем'; $s_notes = 'Белешке'; $s_add_notes = 'Додај белешке'; -$s_view_private_notes = 'Погледај приватне белешке'; +$s_view_private_notes = 'Погледај туђе приватне белешке'; $s_news = 'Новости'; $s_view_private_news = 'Погледај приватне новости'; $s_manage_news = 'Управљај новостима'; @@ -1030,6 +1076,7 @@ $s_on = 'Укључено'; $s_off = 'Искључено'; $s_wiki = 'Вики'; $s_tags = 'Ознаке'; +$s_tags_label = 'Ознаке:'; $s_tag_details = 'Детаљи ознаке: %1$s'; $s_tag_id = 'Назнака ознаке'; $s_tag_name = 'Назив'; @@ -1066,7 +1113,9 @@ $s_time_tracking = 'Временска евиденција'; $s_time_tracking_time_spent = 'Проведено време:'; $s_time_tracking_get_info_button = 'Преузми временску евиденцију'; $s_time_tracking_cost_per_hour = 'Цена по часу'; +$s_time_tracking_cost_per_hour_label = 'Цена по часу:'; $s_time_tracking_cost = 'Цена'; +$s_time_tracking_cost_label = 'Цена:'; $s_total_time_for_issue = 'Укупно време за проблем – %1$s'; $s_time_tracking_stopwatch_start = 'Почни'; $s_time_tracking_stopwatch_stop = 'Заустави'; @@ -1105,6 +1154,8 @@ $s_month_september = 'септембар'; $s_month_october = 'октобар'; $s_month_november = 'новембар'; $s_month_december = 'децембар'; +$s_timeline_title = 'Временска линија'; +$s_timeline_more = 'Више догађаја...'; $MANTIS_ERROR[ERROR_GENERIC] = 'Дошло је до грешке за време ове радње. Можете да је пријавите свом локалном администратору.'; $MANTIS_ERROR[ERROR_SQL] = 'Пронађена је грешка SQL.'; $MANTIS_ERROR[ERROR_REPORT] = 'Пронађена је грешка у вашој пријави.'; @@ -1123,7 +1174,7 @@ $MANTIS_ERROR[ERROR_CONFIG_OPT_NOT_FOUND] = 'Не могу да пронађем $MANTIS_ERROR[ERROR_CONFIG_OPT_CANT_BE_SET_IN_DB] = 'Не могу да додам поставку „%1$s“ у базу података. Она треба да се постави у config_inc.php.'; $MANTIS_ERROR[ERROR_LANG_STRING_NOT_FOUND] = 'Не могу да пронађем ниску „%1$s“.'; $MANTIS_ERROR[ERROR_BUGNOTE_NOT_FOUND] = 'Не могу да пронађем белешку.'; -$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Не могу да пронађем пројекат „%1$d“.'; +$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Не могу да пронађем пројекат „%1$s“.'; $MANTIS_ERROR[ERROR_DB_FIELD_NOT_FOUND] = 'Не могу да пронађем поље „%1$s“ у бази података.'; $MANTIS_ERROR[ERROR_HANDLER_ACCESS_TOO_LOW] = 'Лице назначено за решавање проблема нема довољно права да ради на проблему с таквим стањем.'; $MANTIS_ERROR[ERROR_PROJECT_NAME_NOT_UNIQUE] = 'Пројекат с тим називом већ постоји. Вратите се и унесите други назив.'; @@ -1134,6 +1185,7 @@ $MANTIS_ERROR[ERROR_AUTH_INVALID_COOKIE] = 'Подаци за пријаву к $MANTIS_ERROR[ERROR_USER_PREFS_NOT_FOUND] = 'Не могу да пронађем поставке овог корисника.'; $MANTIS_ERROR[ERROR_NEWS_NOT_FOUND] = 'Не могу да пронађем новост.'; $MANTIS_ERROR[ERROR_USER_CREATE_PASSWORD_MISMATCH] = 'Лозинке се не поклапају.'; +$MANTIS_ERROR[ERROR_USER_CURRENT_PASSWORD_MISMATCH] = 'Тренутна лозинка је неисправна.'; $MANTIS_ERROR[ERROR_GPC_ARRAY_EXPECTED] = 'За %1$s се очекивао строј, али је добијена ниска.'; $MANTIS_ERROR[ERROR_GPC_ARRAY_UNEXPECTED] = 'За %1$s се очекивала ниска, али је добијен строј.'; $MANTIS_ERROR[ERROR_GPC_NOT_NUMBER] = 'За %1$s се очекивао број.'; @@ -1203,9 +1255,9 @@ $MANTIS_ERROR[ERROR_TAG_NOT_ATTACHED] = 'Ознака није закачена $MANTIS_ERROR[ERROR_TAG_ALREADY_ATTACHED] = 'Ознака је већ закачена на тај проблем.'; $MANTIS_ERROR[ERROR_TOKEN_NOT_FOUND] = 'Не могу да пронађем жетон.'; $MANTIS_ERROR[ERROR_EVENT_UNDECLARED] = 'Догађај „%1$s“ још није објављен.'; -$MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'Додатак није уписан у MantisBT.'; +$MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'Додатак „%1$s“ није уписан у MantisBT.'; $MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Додатак „%1$s“ је већ инсталиран.'; -$MANTIS_ERROR[ERROR_PLUGIN_PAGE_NOT_FOUND] = 'Не могу да пронађем страницу додатка.'; +$MANTIS_ERROR[ERROR_PLUGIN_PAGE_NOT_FOUND] = 'Страница „%2$s“ не постоју у додатку „%1$s“.'; $MANTIS_ERROR[ERROR_PLUGIN_INSTALL_FAILED] = 'Не могу да инсталирам прикључак: %1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_UPGRADE_FAILED] = 'Не могу да доградим шему додатка у блоку #%1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_GENERIC] = 'За време извршавања додатка „%2$s“, дошло је до непознате грешке „%1$s“.'; diff --git a/lang/strings_slovak.txt b/lang/strings_slovak.txt index a59d720f3f..5d278c570b 100644 --- a/lang/strings_slovak.txt +++ b/lang/strings_slovak.txt @@ -42,6 +42,7 @@ * @author Helix84 * @author Kusavica * @author Mikulas1 + * @author Rattkin * @author Rudko * @author Teslaton * @author Wizzard @@ -1080,14 +1081,14 @@ $s_on_date = 'v'; $s_on = 'v'; $s_off = 'Vypnúť'; $s_wiki = 'Wiki'; -$s_tags = 'Značky'; +$s_tags = 'Štítky'; $s_tag_details = 'Detaily Značky: %1$s'; $s_tag_id = 'ID Značky'; $s_tag_name = 'Názov'; $s_tag_creator = 'Tvorca'; $s_tag_created = 'Dátum Vytvorenia'; $s_tag_updated = 'Posledná Zmena'; -$s_tag_description = 'Popis Značky'; +$s_tag_description = 'Popis štítku'; $s_tag_statistics = 'Štatistiky Využitia'; $s_tag_update = 'Aktualizovať Značku: %1$s'; $s_tag_update_return = 'Späť na Značku'; diff --git a/lang/strings_slovene.txt b/lang/strings_slovene.txt index ab4bb6e083..a75ce15ce3 100644 --- a/lang/strings_slovene.txt +++ b/lang/strings_slovene.txt @@ -40,10 +40,11 @@ * * @author Dbc334 * @author Eleassar + * @author Janezdrilc * @author Wertuose */ -$s_actiongroup_menu_move = 'Prestavi'; +$s_actiongroup_menu_move = 'Preimenuj'; $s_actiongroup_menu_copy = 'Kopiraj'; $s_actiongroup_menu_assign = 'Priredi'; $s_actiongroup_menu_close = 'Zapri'; @@ -566,7 +567,7 @@ $s_system_profile = 'Opis sistema'; $s_update_bug_button = 'Uredi'; $s_bug_assign_to_button = 'Dodeli:'; $s_reopen_bug_button = 'Ponovno odpri'; -$s_move_bug_button = 'Prestavi'; +$s_move_bug_button = 'Preimenuj'; $s_attached_files = 'Dodane datoteke'; $s_publish = 'Objavi'; $s_add_user_to_monitor = 'Dodaj'; diff --git a/lang/strings_spanish.txt b/lang/strings_spanish.txt index 30ec39b083..afd07ea26b 100644 --- a/lang/strings_spanish.txt +++ b/lang/strings_spanish.txt @@ -230,7 +230,7 @@ $s_new_account_signup_msg = 'La siguiente cuenta ha sido creada:'; $s_reset_request_msg = 'Si solicitó este cambio, visite la siguiente URL para cambiar su contraseña:'; $s_reset_request_in_progress_msg = 'Si ha proporcionado un usuario y contraseña correctos recibirá un mensaje de confirmación en su dirección de correo electrónico. Cuando reciba este mensaje siga las instrucciones para cambiar la contraseña de su cuenta.'; $s_email_notification_title_for_status_bug_new = 'La siguiente incidencia tiene ahora el estado NUEVA (nuevamente)'; -$s_email_notification_title_for_status_bug_feedback = 'La siguiente incidencia requiere MAS INFORMACIÓN (opinión).'; +$s_email_notification_title_for_status_bug_feedback = 'La siguiente incidencia requiere MÁS INFORMACIÓN (opinión).'; $s_email_notification_title_for_status_bug_acknowledged = 'La siguiente incidencia ha sido ACEPTADA.'; $s_email_notification_title_for_status_bug_confirmed = 'La siguiente incidencia ha sido CONFIRMADA.'; $s_email_notification_title_for_status_bug_assigned = 'La siguiente incidencia ha sido ASIGNADA.'; @@ -1350,7 +1350,7 @@ $MANTIS_ERROR[ERROR_INVALID_DATE_FORMAT] = 'Formato de fecha no válido'; $MANTIS_ERROR[ERROR_INVALID_RESOLUTION] = 'La resolución "%1$s" no está permitida para el estado "%2$s".'; $MANTIS_ERROR[ERROR_UPDATING_TIMEZONE] = 'Imposible actualizar zona horaria.'; $MANTIS_ERROR[ERROR_DEPRECATED_SUPERSEDED] = 'Funcionalidad obsoleta: "%1$s"; utiliza "%2$s" en su lugar.'; -$MANTIS_ERROR[ERROR_DISPLAY_USER_ERROR_INLINE] = 'Advertencia: El sistema está configurado para mostrar errores de MantisBT (E_USER_ERROR). La ejecución del programa continuará, pero puede dar lugar a problemas de integridad del sistema o datos.'; +$MANTIS_ERROR[ERROR_DISPLAY_USER_ERROR_INLINE] = 'Advertencia: el sistema está configurado para mostrar errores de MantisBT (E_USER_ERROR). La ejecución del programa continuará, pero puede dar lugar a problemas de integridad del sistema o de datos.'; $MANTIS_ERROR[ERROR_TYPE_MISMATCH] = 'No coinciden los tipos de datos. Habilita los mensajes de error detallados para más información.'; $MANTIS_ERROR[ERROR_BUG_CONFLICTING_EDIT] = 'Otro usuario actualizó la incidencia. Vuelva a la incidencia y envíe sus cambios de nuevo.'; $MANTIS_ERROR[ERROR_SPAM_SUSPECTED] = 'Has alcanzado el límite de actividad permitida de %d eventos en los últimos %d segundos; tu acción se ha bloqueado para evitar el spam. Inténtalo de nuevo más tarde.'; diff --git a/lang/strings_swedish.txt b/lang/strings_swedish.txt index 63eae1e76e..97420dd5ce 100644 --- a/lang/strings_swedish.txt +++ b/lang/strings_swedish.txt @@ -403,7 +403,7 @@ $s_reminder_sent_none = 'Inga påminnelser kunde skickas'; $s_reminder_list_truncated = 'mottagarlistan trunkerad'; $s_bug_send_button = 'Skicka'; $s_reminder = 'Påminnelse'; -$s_reminder_explain = 'Meddelandet kommer att skickas till mottagare som begärt återkoppling till detta ärende.'; +$s_reminder_explain = 'Detta meddelande kommer att skickas till utvalda mottagare som begärt återkoppling gällande denna fråga.'; $s_reminder_monitor = 'Mottagarna kommer också börja bevaka ärendet. De kan sluta bevaka det genom att använda motsvarande knapp.'; $s_reminder_store = 'Detta meddelande kommer att sparas med ärendet.'; $s_confirm_sponsorship = 'Bekräfta att du vill sponsra ärende %1$d med %2$s.'; diff --git a/lang/strings_swissgerman.txt b/lang/strings_swissgerman.txt index d34093f6c9..fd5da86ea6 100644 --- a/lang/strings_swissgerman.txt +++ b/lang/strings_swissgerman.txt @@ -40,6 +40,7 @@ * * @author Als-Chlämens * @author Als-Holder + * @author Purodha */ $s_actiongroup_menu_move = 'Verschiebe'; diff --git a/lang/strings_turkish.txt b/lang/strings_turkish.txt index d897cb9f86..968cfb8e7c 100644 --- a/lang/strings_turkish.txt +++ b/lang/strings_turkish.txt @@ -47,7 +47,9 @@ * @author Karduelis * @author Khutuck * @author Korayal + * @author McAang * @author Meelo + * @author Rapsar * @author Sayginer * @author Thinkfast * @author Trockya @@ -667,7 +669,7 @@ $s_add_category_button = 'Kategori Ekle'; $s_versions = 'Versiyonlar'; $s_add_version_button = 'Versiyon Ekle'; $s_add_and_edit_version_button = 'Ekle ve Versiyonu Düzenle'; -$s_edit_link = 'Düzenle'; +$s_edit_link = 'Değiştir'; $s_actions = 'İşlemler'; $s_version = 'Versiyon/Alt Versiyon'; $s_version_label = 'Sürüm:'; @@ -755,7 +757,7 @@ $s_add_news_title = 'Haber Ekle'; $s_post_to = 'Yayınlanacak Yer'; $s_post_news_button = 'Haber Yayınla'; $s_edit_or_delete_news_title = 'Haber Düzenle veya Sil'; -$s_edit_post = 'Haber Düzenle'; +$s_edit_post = 'Haber Değiştir'; $s_delete_post = 'Haber Sil'; $s_select_post = 'Haber Seç'; $s_news_updated_msg = 'Haber güncellendi...'; diff --git a/lang/strings_ukrainian.txt b/lang/strings_ukrainian.txt index 6c575bc493..fb7b21d79f 100644 --- a/lang/strings_ukrainian.txt +++ b/lang/strings_ukrainian.txt @@ -45,6 +45,7 @@ * @author Olvin * @author Prima klasy4na * @author SteveR + * @author Translatemyname * @author Ypryima * @author Ата * @author Тест @@ -1259,6 +1260,7 @@ $MANTIS_ERROR[ERROR_FILE_DUPLICATE] = 'Це дублікат файлу. Спо $MANTIS_ERROR[ERROR_FILE_INVALID_UPLOAD_PATH] = 'Неправильний шлях для закачуваних файлів. Папка або не існує, або неможливо в неї що-небудь записати.'; $MANTIS_ERROR[ERROR_FILE_NO_UPLOAD_FAILURE] = 'Файл не було завантажено. Поверніться назад і виберіть файл, перш ніж натиснути завантаження.'; $MANTIS_ERROR[ERROR_FILE_MOVE_FAILED] = 'Вивантажений файл не вдається перемістити в каталог для файлів. Каталог не існує або недоступний для запису веб-сервером.'; +$MANTIS_ERROR[ERROR_FILE_NOT_FOUND] = 'Вкладення з ідентифікатором "%1$d" не знайдено.'; $MANTIS_ERROR[ERROR_BUG_DUPLICATE_SELF] = 'Ви не можете зробити проблему дублікатом неї ж.'; $MANTIS_ERROR[ERROR_BUG_REVISION_NOT_FOUND] = 'Редакцію проблеми не знайдено.'; $MANTIS_ERROR[ERROR_CUSTOM_FIELD_NOT_FOUND] = 'Не можу знайти таке власне поле'; diff --git a/plugins/MantisCoreFormatting/lang/strings_serbian.txt b/plugins/MantisCoreFormatting/lang/strings_serbian.txt index 222f9b3106..6a5b20380b 100644 --- a/plugins/MantisCoreFormatting/lang/strings_serbian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_serbian.txt @@ -39,6 +39,7 @@ * @file * * @author Rancher + * @author Srdjan m */ $s_plugin_format_title = 'Обликовање за MantisBT'; @@ -47,6 +48,6 @@ $s_plugin_format_config = 'Подешавање'; $s_plugin_format_process_text = 'Обрада текста'; $s_plugin_format_process_text_warning_notice = 'Не искључујте ако нисте сигурни шта радите. У искљученом стању, могући су међумесни напади (XSS) на мрежном месту.'; $s_plugin_format_process_urls = 'Обрада адреса'; -$s_plugin_format_process_buglinks = 'MantisBT везе (задаци/коментари)'; +$s_plugin_format_process_buglinks = 'MantisBT унутрашње везе (Проблеми и коментари)'; $s_plugin_format_enabled = 'Укључено'; $s_plugin_format_disabled = 'Искључено'; diff --git a/plugins/XmlImportExport/lang/strings_italian.txt b/plugins/XmlImportExport/lang/strings_italian.txt index e120dfcecd..333a33f0d2 100644 --- a/plugins/XmlImportExport/lang/strings_italian.txt +++ b/plugins/XmlImportExport/lang/strings_italian.txt @@ -46,6 +46,9 @@ $s_plugin_XmlImportExport_title = 'Importa/Esporta anomalie'; $s_plugin_XmlImportExport_description = 'Aggiungi a MantisBT la capacità di Importare e Esportare basata su XML.'; $s_plugin_XmlImportExport_import = 'Importa anomalia'; $s_plugin_XmlImportExport_export = 'Esporta XML'; +$s_plugin_XmlImportExport_import_threshold = 'Importa anomalie'; +$s_plugin_XmlImportExport_export_threshold = 'Esporta anomalie'; +$s_plugin_XmlImportExport_action_update = 'Aggiorna'; $s_plugin_XmlImportExport_importing_in_project = 'Importa anomalia nel progetto:'; $s_plugin_XmlImportExport_import_options = 'Opzioni di importazione'; $s_plugin_XmlImportExport_cross_references = 'Riferimenti incrociati'; diff --git a/plugins/XmlImportExport/lang/strings_serbian.txt b/plugins/XmlImportExport/lang/strings_serbian.txt index 7217ec6c5c..a9b55ea215 100644 --- a/plugins/XmlImportExport/lang/strings_serbian.txt +++ b/plugins/XmlImportExport/lang/strings_serbian.txt @@ -39,12 +39,16 @@ * @file * * @author Rancher + * @author Srdjan m */ $s_plugin_XmlImportExport_title = 'Проблеми у увозу/извозу'; $s_plugin_XmlImportExport_description = 'Додаје могућности увоза и извоза у XML.'; $s_plugin_XmlImportExport_import = 'Увези проблеме'; $s_plugin_XmlImportExport_export = 'XML извоз'; +$s_plugin_XmlImportExport_import_threshold = 'Увези проблеме'; +$s_plugin_XmlImportExport_export_threshold = 'Извези проблеме'; +$s_plugin_XmlImportExport_action_update = 'Ажурирај'; $s_plugin_XmlImportExport_importing_in_project = 'Увожење проблема у пројекат:'; $s_plugin_XmlImportExport_import_options = 'Поставке увоза'; $s_plugin_XmlImportExport_cross_references = 'Упућивања'; diff --git a/plugins/XmlImportExport/lang/strings_turkish.txt b/plugins/XmlImportExport/lang/strings_turkish.txt index 89fc351249..54d8771659 100644 --- a/plugins/XmlImportExport/lang/strings_turkish.txt +++ b/plugins/XmlImportExport/lang/strings_turkish.txt @@ -41,12 +41,14 @@ * @author Hedda Gabler * @author Khutuck * @author Korayal + * @author Uğurkent */ $s_plugin_XmlImportExport_title = 'Sorun Al/Ver'; $s_plugin_XmlImportExport_description = 'MantisBT\'ye XML tabanlı yetenek ekler ve çıkarır.'; $s_plugin_XmlImportExport_import = 'Alma Sorunları'; $s_plugin_XmlImportExport_export = 'XML Ver'; +$s_plugin_XmlImportExport_action_update = 'Güncelleme'; $s_plugin_XmlImportExport_importing_in_project = 'Projedeki Aktarma Sorunları:'; $s_plugin_XmlImportExport_import_options = 'Alma seçenekleri'; $s_plugin_XmlImportExport_cross_references = 'Çapraz referanslar'; From 8d7ea37e892d26a7f90bbc4eeb5121eb908f4569 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Sep 2015 16:03:14 +0200 Subject: [PATCH 12/78] Revert move-js-to-footer This change (see issue #13282) introduced several regressions. This reverts commit 2dbc86b10d10495f1312b781fe0a3519a0d7152a, reversing changes made to aa9b4f8ad7908325633542840805c4c854adb1f1. Fixes #20081, #20088 --- core/html_api.php | 73 ++++++++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 32 deletions(-) diff --git a/core/html_api.php b/core/html_api.php index e7ad5d91c0..2ec13e9f13 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -31,6 +31,7 @@ * html_title * html_css * html_rss_link + * html_head_javascript * (html_meta_redirect) * html_page_top2 * html_page_top2a @@ -206,6 +207,8 @@ function html_page_top1( $p_page_title = null ) { # Advertise the availability of the browser search plug-ins. echo "\t", '' . "\n"; echo "\t", '' . "\n"; + + html_head_javascript(); } /** @@ -300,7 +303,7 @@ function html_page_bottom1a( $p_file = null ) { } /** - * Print the document type and the opening tag + * (1) Print the document type and the opening tag * @return void */ function html_begin() { @@ -309,7 +312,7 @@ function html_begin() { } /** - * Begin the section + * (2) Begin the section * @return void */ function html_head_begin() { @@ -317,7 +320,7 @@ function html_head_begin() { } /** - * Print the content-type + * (3) Print the content-type * @return void */ function html_content_type() { @@ -325,7 +328,7 @@ function html_content_type() { } /** - * Print the window title + * (4) Print the window title * @param string $p_page_title Window title. * @return void */ @@ -356,7 +359,7 @@ function require_css( $p_stylesheet_path ) { } /** - * Print the link to include the CSS file + * (5) Print the link to include the CSS file * @return void */ function html_css() { @@ -390,7 +393,7 @@ function html_css_link( $p_filename ) { /** - * Print an HTML meta tag to redirect to another page + * (6) Print an HTML meta tag to redirect to another page * This function is optional and may be called by pages that need a redirect. * $p_time is the number of seconds to wait before redirecting. * If we have handled any errors on this page return false and don't redirect. @@ -434,7 +437,31 @@ function require_js( $p_script_path ) { } /** - * End the section + * (6a) Javascript... + * @return void + */ +function html_head_javascript() { + global $g_scripts_included; + + echo "\t" . '' . "\n"; + echo "\t" . '' . "\n"; + + if ( config_get_global( 'cdn_enabled' ) == ON ) { + echo "\t" . '' . "\n"; + echo "\t" . '' . "\n"; + } else { + html_javascript_link( 'jquery-' . JQUERY_VERSION . '.min.js' ); + html_javascript_link( 'jquery-ui-' . JQUERY_UI_VERSION . '.min.js' ); + } + + html_javascript_link( 'common.js' ); + foreach ( $g_scripts_included as $t_script_path ) { + html_javascript_link( $t_script_path ); + } +} + +/** + * (7) End the section * @return void */ function html_head_end() { @@ -444,7 +471,7 @@ function html_head_end() { } /** - * Begin the section + * (8) Begin the section * @return void */ function html_body_begin() { @@ -462,7 +489,7 @@ function html_body_begin() { } /** - * Print a user-defined banner at the top of the page if there is one. + * (9) Print a user-defined banner at the top of the page if there is one. * @return void */ function html_top_banner() { @@ -500,7 +527,7 @@ function html_top_banner() { } /** - * Print the user's account information + * (10) Print the user's account information * Also print the select box where users can switch projects * @return void */ @@ -595,7 +622,7 @@ function html_login_info() { } /** - * Print a user-defined banner at the bottom of the page if there is one. + * (11) Print a user-defined banner at the bottom of the page if there is one. * @return void */ function html_bottom_banner() { @@ -633,7 +660,7 @@ function html_is_auto_refresh() { } /** - * Print the page footer information + * (13) Print the page footer information * @return void */ function html_footer() { @@ -751,37 +778,19 @@ function html_footer() { } /** - * End the section + * (14) End the section * @return void */ function html_body_end() { - global $g_scripts_included; - event_signal( 'EVENT_LAYOUT_BODY_END' ); - echo "\t" . '' . "\n"; - echo "\t" . '' . "\n"; - - if ( config_get_global( 'cdn_enabled' ) == ON ) { - echo "\t" . '' . "\n"; - echo "\t" . '' . "\n"; - } else { - html_javascript_link( 'jquery-' . JQUERY_VERSION . '.min.js' ); - html_javascript_link( 'jquery-ui-' . JQUERY_UI_VERSION . '.min.js' ); - } - - html_javascript_link( 'common.js' ); - foreach ( $g_scripts_included as $t_script_path ) { - html_javascript_link( $t_script_path ); - } - echo '', "\n"; echo '', "\n"; } /** - * Print the closing tag + * (15) Print the closing tag * @return void */ function html_end() { From c3f52b74328ef9e50df745da3c6ae91dda226017 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Sep 2015 17:25:04 +0200 Subject: [PATCH 13/78] Fix #20084: explain EVENT_LAYOUT_BODY_END placement --- core/html_api.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/html_api.php b/core/html_api.php index 2ec13e9f13..03c6bc6090 100644 --- a/core/html_api.php +++ b/core/html_api.php @@ -782,6 +782,9 @@ function html_footer() { * @return void */ function html_body_end() { + # Should code need to be added to this function in the future, it should be + # placed *above* this event, which needs to be the last thing to occur + # before the actual body ends (see #20084) event_signal( 'EVENT_LAYOUT_BODY_END' ); echo '', "\n"; From 99172361f1e428dcb1a95de31003331c3694fb5b Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Mon, 7 Sep 2015 11:55:39 -0700 Subject: [PATCH 14/78] Fix invalid query error when updating an issue If a custom field is on the form but has value of null, it caused invalid query error. Fixes #20082 --- core/custom_field_api.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/custom_field_api.php b/core/custom_field_api.php index 94958d9d87..dd4f06af72 100644 --- a/core/custom_field_api.php +++ b/core/custom_field_api.php @@ -1114,10 +1114,14 @@ function custom_field_distinct_values( array $p_field_def, $p_project_id = ALL_P */ function custom_field_value_to_database( $p_value, $p_type ) { global $g_custom_field_type_definition; + + $t_value = $p_value; + if( isset( $g_custom_field_type_definition[$p_type]['#function_value_to_database'] ) ) { - return call_user_func( $g_custom_field_type_definition[$p_type]['#function_value_to_database'], $p_value ); + $t_value = call_user_func( $g_custom_field_type_definition[$p_type]['#function_value_to_database'], $p_value ); } - return $p_value; + + return $t_value === null ? '' : $t_value; } /** From a22ccf0321f806d24ddca44ab727a6a10acb7968 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Wed, 16 Sep 2015 09:25:30 +0200 Subject: [PATCH 15/78] Doc: update obsolete $g_allow_bug_delete_access_level This config option has been replaced by $g_delete_bug_threshold in 2003 (see dea2c10c4064a523f29a7b7298e83f28a9813337 and c68711c7697d78407b3c793257fd8ba1cb6e10f6). Fixes #20116 --- docbook/Admin_Guide/en-US/config/misc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docbook/Admin_Guide/en-US/config/misc.xml b/docbook/Admin_Guide/en-US/config/misc.xml index d05d878db4..93e8864fca 100644 --- a/docbook/Admin_Guide/en-US/config/misc.xml +++ b/docbook/Admin_Guide/en-US/config/misc.xml @@ -63,7 +63,7 @@ - $g_allow_bug_delete_access_level + $g_delete_bug_threshold Allow the specified access level and above to delete bugs. From effa7c630eb5d1619dc0d4b876608b72500fe418 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Fri, 25 Sep 2015 16:10:47 +0200 Subject: [PATCH 16/78] Localisation updates from https://translatewiki.net. --- lang/strings_afrikaans.txt | 2 +- lang/strings_amharic.txt | 2 +- lang/strings_arabic.txt | 2 +- lang/strings_arabicegyptianspoken.txt | 2 +- lang/strings_ast.txt | 56 ++++++++++++++++++- lang/strings_basque.txt | 2 +- lang/strings_belarusian_tarask.txt | 3 +- lang/strings_breton.txt | 3 +- lang/strings_bulgarian.txt | 2 +- lang/strings_catalan.txt | 2 +- lang/strings_chinese_simplified.txt | 5 +- lang/strings_chinese_traditional.txt | 6 +- lang/strings_czech.txt | 2 +- lang/strings_danish.txt | 2 +- lang/strings_dutch.txt | 21 +++---- lang/strings_estonian.txt | 2 +- lang/strings_finnish.txt | 2 +- lang/strings_french.txt | 3 +- lang/strings_galician.txt | 2 +- lang/strings_german.txt | 3 +- lang/strings_greek.txt | 2 +- lang/strings_hebrew.txt | 2 +- lang/strings_hungarian.txt | 2 +- lang/strings_icelandic.txt | 2 +- lang/strings_interlingua.txt | 5 +- lang/strings_italian.txt | 2 +- lang/strings_japanese.txt | 2 +- lang/strings_korean.txt | 2 +- lang/strings_latvian.txt | 2 +- lang/strings_lithuanian.txt | 2 +- lang/strings_macedonian.txt | 5 +- lang/strings_norwegian_bokmal.txt | 2 +- lang/strings_occitan.txt | 2 +- lang/strings_polish.txt | 2 +- lang/strings_portuguese_brazil.txt | 2 +- lang/strings_portuguese_standard.txt | 2 +- lang/strings_ripoarisch.txt | 4 +- lang/strings_romanian.txt | 2 +- lang/strings_russian.txt | 3 +- lang/strings_serbian.txt | 2 +- lang/strings_serbian_latin.txt | 2 +- lang/strings_slovak.txt | 2 +- lang/strings_slovene.txt | 2 +- lang/strings_spanish.txt | 9 +-- lang/strings_swedish.txt | 2 +- lang/strings_swissgerman.txt | 2 +- lang/strings_tagalog.txt | 2 +- lang/strings_turkish.txt | 2 +- lang/strings_ukrainian.txt | 2 +- lang/strings_urdu.txt | 2 +- lang/strings_vietnamese.txt | 2 +- .../lang/strings_afrikaans.txt | 2 +- .../lang/strings_arabic.txt | 2 +- .../lang/strings_basque.txt | 2 +- .../lang/strings_belarusian_tarask.txt | 2 +- .../lang/strings_breton.txt | 2 +- .../lang/strings_bulgarian.txt | 2 +- .../lang/strings_catalan.txt | 2 +- .../lang/strings_chinese_simplified.txt | 2 +- .../lang/strings_chinese_traditional.txt | 2 +- .../lang/strings_czech.txt | 2 +- .../lang/strings_danish.txt | 2 +- .../lang/strings_dutch.txt | 2 +- .../lang/strings_finnish.txt | 2 +- .../lang/strings_french.txt | 2 +- .../lang/strings_galician.txt | 2 +- .../lang/strings_german.txt | 2 +- .../lang/strings_hebrew.txt | 2 +- .../lang/strings_hungarian.txt | 2 +- .../lang/strings_interlingua.txt | 2 +- .../lang/strings_italian.txt | 2 +- .../lang/strings_japanese.txt | 2 +- .../lang/strings_korean.txt | 2 +- .../lang/strings_lithuanian.txt | 2 +- .../lang/strings_macedonian.txt | 2 +- .../lang/strings_norwegian_bokmal.txt | 2 +- .../lang/strings_occitan.txt | 2 +- .../lang/strings_polish.txt | 2 +- .../lang/strings_portuguese_brazil.txt | 2 +- .../lang/strings_portuguese_standard.txt | 2 +- .../lang/strings_ripoarisch.txt | 2 +- .../lang/strings_romanian.txt | 2 +- .../lang/strings_russian.txt | 2 +- .../lang/strings_serbian.txt | 2 +- .../lang/strings_serbian_latin.txt | 2 +- .../lang/strings_slovak.txt | 2 +- .../lang/strings_spanish.txt | 2 +- .../lang/strings_swedish.txt | 2 +- .../lang/strings_swissgerman.txt | 2 +- .../lang/strings_tagalog.txt | 2 +- .../lang/strings_turkish.txt | 2 +- .../lang/strings_ukrainian.txt | 2 +- .../lang/strings_vietnamese.txt | 2 +- plugins/MantisGraph/lang/strings_arabic.txt | 2 +- .../lang/strings_arabicegyptianspoken.txt | 2 +- .../lang/strings_belarusian_tarask.txt | 2 +- plugins/MantisGraph/lang/strings_breton.txt | 2 +- .../MantisGraph/lang/strings_bulgarian.txt | 2 +- plugins/MantisGraph/lang/strings_catalan.txt | 2 +- .../lang/strings_chinese_simplified.txt | 2 +- .../lang/strings_chinese_traditional.txt | 2 +- plugins/MantisGraph/lang/strings_czech.txt | 2 +- plugins/MantisGraph/lang/strings_danish.txt | 2 +- plugins/MantisGraph/lang/strings_dutch.txt | 2 +- plugins/MantisGraph/lang/strings_estonian.txt | 2 +- plugins/MantisGraph/lang/strings_finnish.txt | 2 +- plugins/MantisGraph/lang/strings_french.txt | 2 +- plugins/MantisGraph/lang/strings_galician.txt | 2 +- plugins/MantisGraph/lang/strings_german.txt | 2 +- plugins/MantisGraph/lang/strings_hebrew.txt | 2 +- .../MantisGraph/lang/strings_hungarian.txt | 2 +- .../MantisGraph/lang/strings_interlingua.txt | 2 +- plugins/MantisGraph/lang/strings_italian.txt | 2 +- plugins/MantisGraph/lang/strings_japanese.txt | 2 +- plugins/MantisGraph/lang/strings_korean.txt | 2 +- .../MantisGraph/lang/strings_lithuanian.txt | 2 +- .../MantisGraph/lang/strings_macedonian.txt | 2 +- .../lang/strings_norwegian_bokmal.txt | 2 +- plugins/MantisGraph/lang/strings_occitan.txt | 2 +- plugins/MantisGraph/lang/strings_polish.txt | 2 +- .../lang/strings_portuguese_brazil.txt | 2 +- .../lang/strings_portuguese_standard.txt | 2 +- .../MantisGraph/lang/strings_ripoarisch.txt | 2 +- plugins/MantisGraph/lang/strings_romanian.txt | 2 +- plugins/MantisGraph/lang/strings_russian.txt | 2 +- plugins/MantisGraph/lang/strings_serbian.txt | 2 +- .../lang/strings_serbian_latin.txt | 2 +- plugins/MantisGraph/lang/strings_slovak.txt | 2 +- plugins/MantisGraph/lang/strings_spanish.txt | 2 +- plugins/MantisGraph/lang/strings_swedish.txt | 2 +- .../MantisGraph/lang/strings_swissgerman.txt | 2 +- plugins/MantisGraph/lang/strings_tagalog.txt | 2 +- plugins/MantisGraph/lang/strings_turkish.txt | 2 +- .../MantisGraph/lang/strings_ukrainian.txt | 2 +- .../MantisGraph/lang/strings_vietnamese.txt | 2 +- .../XmlImportExport/lang/strings_arabic.txt | 2 +- .../lang/strings_belarusian_tarask.txt | 2 +- .../XmlImportExport/lang/strings_breton.txt | 2 +- .../lang/strings_bulgarian.txt | 2 +- .../XmlImportExport/lang/strings_catalan.txt | 2 +- .../lang/strings_chinese_simplified.txt | 2 +- .../lang/strings_chinese_traditional.txt | 2 +- .../XmlImportExport/lang/strings_czech.txt | 2 +- .../XmlImportExport/lang/strings_danish.txt | 2 +- .../XmlImportExport/lang/strings_dutch.txt | 2 +- .../XmlImportExport/lang/strings_finnish.txt | 2 +- .../XmlImportExport/lang/strings_french.txt | 2 +- .../XmlImportExport/lang/strings_galician.txt | 2 +- .../XmlImportExport/lang/strings_german.txt | 4 +- .../XmlImportExport/lang/strings_hebrew.txt | 2 +- .../lang/strings_hungarian.txt | 2 +- .../lang/strings_interlingua.txt | 2 +- .../XmlImportExport/lang/strings_italian.txt | 2 +- .../XmlImportExport/lang/strings_japanese.txt | 2 +- .../XmlImportExport/lang/strings_korean.txt | 2 +- .../lang/strings_macedonian.txt | 2 +- .../lang/strings_norwegian_bokmal.txt | 2 +- .../XmlImportExport/lang/strings_occitan.txt | 2 +- .../XmlImportExport/lang/strings_polish.txt | 2 +- .../lang/strings_portuguese_brazil.txt | 2 +- .../lang/strings_portuguese_standard.txt | 2 +- .../lang/strings_ripoarisch.txt | 2 +- .../XmlImportExport/lang/strings_romanian.txt | 2 +- .../XmlImportExport/lang/strings_russian.txt | 2 +- .../XmlImportExport/lang/strings_serbian.txt | 2 +- .../lang/strings_serbian_latin.txt | 2 +- .../XmlImportExport/lang/strings_slovak.txt | 2 +- .../XmlImportExport/lang/strings_spanish.txt | 2 +- .../XmlImportExport/lang/strings_swedish.txt | 2 +- .../lang/strings_swissgerman.txt | 2 +- .../XmlImportExport/lang/strings_tagalog.txt | 2 +- .../XmlImportExport/lang/strings_turkish.txt | 2 +- .../lang/strings_ukrainian.txt | 2 +- .../lang/strings_vietnamese.txt | 2 +- 174 files changed, 258 insertions(+), 192 deletions(-) diff --git a/lang/strings_afrikaans.txt b/lang/strings_afrikaans.txt index bdb804014b..02a5ae8f61 100644 --- a/lang/strings_afrikaans.txt +++ b/lang/strings_afrikaans.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_amharic.txt b/lang/strings_amharic.txt index 00f0b19e2a..d37e16b6c5 100644 --- a/lang/strings_amharic.txt +++ b/lang/strings_amharic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_arabic.txt b/lang/strings_arabic.txt index e0ff61a130..7f62622226 100644 --- a/lang/strings_arabic.txt +++ b/lang/strings_arabic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_arabicegyptianspoken.txt b/lang/strings_arabicegyptianspoken.txt index 69f3b2a01c..2f21bd99e0 100644 --- a/lang/strings_arabicegyptianspoken.txt +++ b/lang/strings_arabicegyptianspoken.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_ast.txt b/lang/strings_ast.txt index a988b8a879..12f2f7012e 100644 --- a/lang/strings_ast.txt +++ b/lang/strings_ast.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -531,6 +531,60 @@ $s_filter_button = 'Aplicar filtru'; $s_default_filter = 'Filtru predetermináu'; $s_create_filter_link = 'Crear un enllaz permanente'; $s_create_short_link = 'Crear un enllaz curtiu'; +$s_filter_permalink = 'El siguiente ye un enllaz permanente al filtru configuráu anguaño:'; +$s_manage_users_link = 'Alministrar usuarios'; +$s_manage_projects_link = 'Alministrar proyectos'; +$s_manage_custom_field_link = 'Alministrar campos personalizaos'; +$s_manage_global_profiles_link = 'Alministrar perfiles globales'; +$s_manage_plugin_link = 'Alministrar complementos'; +$s_permissions_summary_report = 'Informe de permisos'; +$s_manage_config_link = 'Alministrar la configuración'; +$s_manage_threshold_config = 'Llendes del fluxu de trabayu'; +$s_manage_email_config = 'Avisos per corréu'; +$s_manage_workflow_config = 'Transiciones del fluxu de trabayu'; +$s_manage_workflow_graph = 'Gráfica del fluxu de trabayu'; +$s_manage_tags_link = 'Alministrar etiquetes'; +$s_create_new_account_link = 'Crear una cuenta nueva'; +$s_projects_link = 'Proyeutos'; +$s_documentation_link = 'Documentación'; +$s_new_accounts_title = 'Cuentes nueves'; +$s_1_week_title = '1 selmana'; +$s_never_logged_in_title = 'Nunca anició sesión'; +$s_prune_accounts = 'Purgar cuentes'; +$s_hide_inactive = 'Tapecer Inactives'; +$s_show_disabled = 'Amosar los desactivaos'; +$s_manage_accounts_title = 'Alministrar Cuentes'; +$s_date_created = 'Data de creación'; +$s_last_visit = 'Cabera visita'; +$s_last_visit_label = 'Cabera visita:'; +$s_edit_user_link = 'Editar usuariu'; +$s_separate_list_items_by = '(dixebrar los elementos de la llista con "%1$s")'; +$s_config_all_projects = 'Nota: Esta configuración afeuta a tolos proyectos, nun siendo que se redefina a nivel de proyectu.'; +$s_config_project = 'Nota: Esta configuración afeuta namái al proyectu %1$s'; +$s_colour_coding = 'Na tabla inferior, aplícase\'l siguiente códigu de colores:'; +$s_colour_project = 'La configuración del proyectu tien prioridá sobre les demás.'; +$s_colour_global = 'Toles configuraciones del proyectu tienen prioridá sobre la configuración predeterminada.'; +$s_issue_reporter = 'Usuariu qu\'informó de la incidencia'; +$s_issue_handler = 'Usuariu que xestiona la incidencia'; +$s_users_added_bugnote = 'Usuarios qu\'añadieron notes a la incidencia'; +$s_change_configuration = 'Actualizar la configuración'; +$s_message = 'Mensaxe'; +$s_default_notify = 'Estableciendo los marcadores de notificación predeterminaos a'; +$s_action_notify = 'Estableciendo los marcadores de notificaciones d\'aición a'; +$s_notify_defaults_change_access = 'Quién pué cambiar los valores de notificación predeterminaos'; +$s_notify_actions_change_access = 'Quién pué cambiar los valores de notificación'; +$s_revert_to_system = 'Borrar la configuración de tolos proyectos'; +$s_revert_to_all_project = 'Borrar la configuración específica de proyectu'; +$s_non_existent = 'non esistente'; +$s_current_status = 'Estáu actual'; +$s_next_status = 'Estáu siguiente'; +$s_workflow = 'Fluxu de trabayu'; +$s_workflow_thresholds = 'Llendes qu\'afeuten al fluxu de trabayu'; +$s_threshold = 'Llende'; +$s_status_level = 'Estáu'; +$s_alter_level = 'Quién pué alterar esti valor'; +$s_validation = 'Validación del fluxu de trabayu'; +$s_comment = 'Comentariu de validación'; $MANTIS_ERROR[ERROR_GENERIC] = 'Hebo un error nel trescursu d\'esta aición. Seique quiera informar d\'esti error al so alministrador llocal.'; $MANTIS_ERROR[ERROR_SQL] = 'Deteutóse un error SQL.'; $MANTIS_ERROR[ERROR_REPORT] = 'Alcontróse un error nel so informe.'; diff --git a/lang/strings_basque.txt b/lang/strings_basque.txt index 972b75d01a..8b09a9ded9 100644 --- a/lang/strings_basque.txt +++ b/lang/strings_basque.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_belarusian_tarask.txt b/lang/strings_belarusian_tarask.txt index 542b7f96ab..b98e223ef7 100644 --- a/lang/strings_belarusian_tarask.txt +++ b/lang/strings_belarusian_tarask.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -883,6 +883,7 @@ $s_issue_id = 'Праблема №'; $s_recently_visited = 'Апошнія наведаныя'; $s_note_user_id_label = 'Камэнтар ад:'; $s_filter_match_type = 'Тып адпаведнасьці'; +$s_filter_match_type_label = 'Супадзеньне з тыпам:'; $s_filter_match_all = 'Усе ўмовы'; $s_filter_match_any = 'Любая ўмова'; $s_none = 'ніякія'; diff --git a/lang/strings_breton.txt b/lang/strings_breton.txt index 769578720f..2c2b87bba0 100644 --- a/lang/strings_breton.txt +++ b/lang/strings_breton.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -882,6 +882,7 @@ $s_issue_id = 'Draen niv.'; $s_recently_visited = 'Gweladennet nevez zo'; $s_note_user_id_label = 'Notenn gant :'; $s_filter_match_type = 'Seurt klotadur'; +$s_filter_match_type_label = 'Seurt klotadur'; $s_filter_match_all = 'An holl Zivizoù'; $s_filter_match_any = 'Forzh peseurt Diviz'; $s_none = 'hini ebet'; diff --git a/lang/strings_bulgarian.txt b/lang/strings_bulgarian.txt index 6f30a4d026..504a329916 100644 --- a/lang/strings_bulgarian.txt +++ b/lang/strings_bulgarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_catalan.txt b/lang/strings_catalan.txt index ad3cafe1ca..9acf864574 100644 --- a/lang/strings_catalan.txt +++ b/lang/strings_catalan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_chinese_simplified.txt b/lang/strings_chinese_simplified.txt index 34a985ab72..c7715e460e 100644 --- a/lang/strings_chinese_simplified.txt +++ b/lang/strings_chinese_simplified.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -739,7 +739,7 @@ $s_show_all_users = '全部'; $s_users_unused = '未用'; $s_users_new = '新的'; $s_account_reset_protected_msg = '帐号受保护,不能重置密码。'; -$s_account_reset_msg = '确认邮件已经发往你的邮箱...'; +$s_account_reset_msg = '一封确认请求已发往选定用户的电子邮件地址。通过使用它,用户将可以更改他们的密码。'; $s_account_reset_msg2 = '账号密码已经置为空...'; $s_account_unlock_msg = '该帐户已解锁。'; $s_manage_user_protected_msg = '帐号受保护;“用户级别”和“是否启用”信息不能修改;其他信息已成功更新。'; @@ -894,6 +894,7 @@ $s_issue_id = '问题 #'; $s_recently_visited = '最近浏览的'; $s_note_user_id_label = '注释自:'; $s_filter_match_type = '匹配类型'; +$s_filter_match_type_label = '匹配类型:'; $s_filter_match_all = '所有情况'; $s_filter_match_any = '任何情况'; $s_none = '无'; diff --git a/lang/strings_chinese_traditional.txt b/lang/strings_chinese_traditional.txt index ccb0ace39b..60b99a9dae 100644 --- a/lang/strings_chinese_traditional.txt +++ b/lang/strings_chinese_traditional.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -734,7 +734,7 @@ $s_show_all_users = '全部'; $s_users_unused = '未使用'; $s_users_new = '新增'; $s_account_reset_protected_msg = '帳號受保護。無法重設密碼。'; -$s_account_reset_msg = '確認訊息已寄送至選擇使用者的 E-Mail 信箱, +$s_account_reset_msg = '確認訊息已寄送至選擇使用者的 Email 信箱, 使用此功能,使用者將可以更改自己的密碼。'; $s_account_reset_msg2 = '此帳號的密碼已設為空白...'; $s_account_unlock_msg = '帳號已經取消鎖定。'; @@ -1095,7 +1095,7 @@ $s_sponsor_issue = '贊助問題'; $s_assign_sponsored_issue = '分配被贊助的問題'; $s_handle_sponsored_issue = '處理被贊助的問題'; $s_others = '其他'; -$s_see_email_addresses_of_other_users = '檢視其他使用者的 E-Mail 位址'; +$s_see_email_addresses_of_other_users = '查看其他使用者的 Email 地址'; $s_send_reminders = '傳送提醒訊息'; $s_receive_reminders = '接收提醒訊息'; $s_add_profiles = '新增基本資料'; diff --git a/lang/strings_czech.txt b/lang/strings_czech.txt index f3a200fa75..e0495a2467 100644 --- a/lang/strings_czech.txt +++ b/lang/strings_czech.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_danish.txt b/lang/strings_danish.txt index 491aa99e23..88945601de 100644 --- a/lang/strings_danish.txt +++ b/lang/strings_danish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_dutch.txt b/lang/strings_dutch.txt index 9bc578ae18..625ec9d094 100644 --- a/lang/strings_dutch.txt +++ b/lang/strings_dutch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -56,7 +56,7 @@ $s_actiongroup_menu_delete = 'Verwijderen'; $s_actiongroup_menu_resolve = 'Oplossen'; $s_actiongroup_menu_update_priority = 'Prioriteit wijzigen'; $s_actiongroup_menu_update_status = 'Status bijwerken'; -$s_actiongroup_menu_update_severity = 'strengheid bijwerken'; +$s_actiongroup_menu_update_severity = 'Impact bijwerken'; $s_actiongroup_menu_update_view_status = 'Zichtbaarheid wijzigen'; $s_actiongroup_menu_update_category = 'Categorie bijwerken'; $s_actiongroup_menu_set_sticky = 'Sticky'; @@ -67,10 +67,10 @@ $s_actiongroup_menu_update_fixed_in_version = 'Opgelost in versie bijwerken'; $s_actiongroup_menu_update_product_build = 'Productbuild bijwerken'; $s_actiongroup_menu_add_note = 'Notitie toevoegen'; $s_actiongroup_menu_attach_tags = 'Tags toevoegen'; -$s_actiongroup_bugs = 'Geselecteerde Problemen'; -$s_actiongroup_error_issue_is_readonly = 'Probleem is alleen-lezen.'; +$s_actiongroup_bugs = 'Geselecteerde meldingen'; +$s_actiongroup_error_issue_is_readonly = 'Melding is alleen-lezen.'; $s_all_projects = 'Alle projecten'; -$s_move_bugs = 'Problemen verplaatsen'; +$s_move_bugs = 'Meldingen verplaatsen'; $s_operation_successful = 'Handeling uitgevoerd.'; $s_date_order = 'Datumvolgorde'; $s_print_all_bug_page_link = 'Rapporten afdrukken'; @@ -80,7 +80,7 @@ $s_login_anonymously = 'Anoniem aanmelden'; $s_anonymous = 'Anoniem'; $s_jump_to_bugnotes = 'Naar opmerkingen'; $s_public_project_msg = 'Dit project is publiek. Alle gebruikers hebben toegang.'; -$s_private_project_msg = 'Dit project is privé. Alleen beheerders en handmatig toegevoegde gebruikers hebben toegang.'; +$s_private_project_msg = 'Dit project is intern. Alleen beheerders en handmatig toegevoegde gebruikers hebben toegang.'; $s_access_level_project = 'Toegangsniveau project'; $s_view_submitted_bug_link = 'Melding %1$s bekijken'; $s_assigned_projects = 'Toegewezen projecten'; @@ -131,14 +131,14 @@ $s_new_bug = 'Nieuwe melding'; $s_bugnote_added = 'Reactie toegevoegd'; $s_bugnote_edited = 'De reactie is gewijzigd.'; $s_bugnote_deleted = 'Reactie verwijderd'; -$s_summary_updated = 'Samenvatting Bijgewerkt'; -$s_description_updated = 'Beschrijving Bijgewerkt'; +$s_summary_updated = 'Samenvatting bijgewerkt'; +$s_description_updated = 'Beschrijving bijgewerkt'; $s_additional_information_updated = 'Additionele gegevens gewijzigd'; $s_steps_to_reproduce_updated = 'Stappen om te reproduceren gewijzigd'; $s_file_added = 'Bestand toegevoegd'; $s_file_deleted = 'Bestand verwijderd'; $s_bug_deleted = 'Melding verwijderd'; -$s_make_private = 'Privé Maken'; +$s_make_private = 'Intern maken'; $s_make_public = 'Publiek maken'; $s_create_new_project_link = 'Nieuw project aanmaken'; $s_login_link = 'Aanmelden'; @@ -173,7 +173,7 @@ $s_status_group_bugs_button = 'Status wijzigen'; $s_category_group_bugs_button = 'Categorie wijzigen'; $s_view_status_group_bugs_button = 'Zichtbaarheid wijzigen'; $s_set_sticky_group_bugs_button = 'Sticky in- of uitschakelen'; -$s_product_version_group_bugs_button = 'Productversie bewerken'; +$s_product_version_group_bugs_button = 'Productversie bijwerken'; $s_fixed_in_version_group_bugs_button = 'Opgelost in versie bijwerken'; $s_target_version_group_bugs_button = 'Doelversie bijwerken'; $s_update_severity_title = 'Impact bijwerken'; @@ -888,6 +888,7 @@ $s_recently_visited = 'Recent bekeken'; $s_priority_abbreviation = 'P'; $s_note_user_id_label = 'Opmerking van:'; $s_filter_match_type = 'Zoektype'; +$s_filter_match_type_label = 'Zoektype:'; $s_filter_match_all = 'Alle voorwaarden'; $s_filter_match_any = 'Elke voorwaarde'; $s_none = 'geen'; diff --git a/lang/strings_estonian.txt b/lang/strings_estonian.txt index 7e8fa2b3a7..9e30e181f6 100644 --- a/lang/strings_estonian.txt +++ b/lang/strings_estonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_finnish.txt b/lang/strings_finnish.txt index c22d578c36..12052d1337 100644 --- a/lang/strings_finnish.txt +++ b/lang/strings_finnish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_french.txt b/lang/strings_french.txt index 53e6518d8a..114cdf4ebc 100644 --- a/lang/strings_french.txt +++ b/lang/strings_french.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -904,6 +904,7 @@ $s_recently_visited = 'Visité récemment'; $s_priority_abbreviation = 'P'; $s_note_user_id_label = 'Note par :'; $s_filter_match_type = 'Type de correspondance'; +$s_filter_match_type_label = 'Type de correspondance:'; $s_filter_match_all = 'Toutes les conditions'; $s_filter_match_any = 'N\'importe quelle condition'; $s_none = 'aucun'; diff --git a/lang/strings_galician.txt b/lang/strings_galician.txt index 6c9a3fa1e3..8fc334a9af 100644 --- a/lang/strings_galician.txt +++ b/lang/strings_galician.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_german.txt b/lang/strings_german.txt index d9ee239332..c9d66e372a 100644 --- a/lang/strings_german.txt +++ b/lang/strings_german.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -902,6 +902,7 @@ $s_issue_id = 'Eintrag #'; $s_recently_visited = 'Kürzlich geöffnet'; $s_note_user_id_label = 'Notiz von:'; $s_filter_match_type = 'Treffertyp'; +$s_filter_match_type_label = 'Treffertyp:'; $s_filter_match_all = 'Alle Bedingungen'; $s_filter_match_any = 'Beliebige Bedingung'; $s_none = 'keine'; diff --git a/lang/strings_greek.txt b/lang/strings_greek.txt index fed8d80878..af0dd38d04 100644 --- a/lang/strings_greek.txt +++ b/lang/strings_greek.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_hebrew.txt b/lang/strings_hebrew.txt index a8ee5c408c..e8aaf60ea3 100644 --- a/lang/strings_hebrew.txt +++ b/lang/strings_hebrew.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_hungarian.txt b/lang/strings_hungarian.txt index b07006ced8..a7870b91e1 100644 --- a/lang/strings_hungarian.txt +++ b/lang/strings_hungarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_icelandic.txt b/lang/strings_icelandic.txt index 4ece799094..69dc544493 100644 --- a/lang/strings_icelandic.txt +++ b/lang/strings_icelandic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_interlingua.txt b/lang/strings_interlingua.txt index f3ceab6658..a437042c3d 100644 --- a/lang/strings_interlingua.txt +++ b/lang/strings_interlingua.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -558,6 +558,7 @@ $s_date_created = 'Data de creation'; $s_last_visit = 'Ultime visita'; $s_last_visit_label = 'Ultime visita:'; $s_edit_user_link = 'Modificar usator'; +$s_separate_list_items_by = '(separa elementos de lista per "%1$s")'; $s_config_all_projects = 'Nota: Iste configurationes affecta tote le projectos, si non supplantate al nivello de projecto.'; $s_config_project = 'Nota: Iste configurationes affecta solmente le projecto %1$s.'; $s_colour_coding = 'In le tabella hic infra, le sequente codice de colores es applicabile:'; @@ -878,6 +879,7 @@ $s_issue_id = 'Problema №'; $s_recently_visited = 'Recentemente visitate'; $s_note_user_id_label = 'Nota per:'; $s_filter_match_type = 'Typo de correspondentia'; +$s_filter_match_type_label = 'Typo de correspondentia:'; $s_filter_match_all = 'Tote le conditiones'; $s_filter_match_any = 'Qualcunque condition'; $s_none = 'nulle'; @@ -986,6 +988,7 @@ $s_monitored_by = 'Surveliate per'; $s_monitored_by_label = 'Surveliate per:'; $s_attachments = 'annexo(s)'; $s_bytes = 'bytes'; +$s_kb = 'KB'; $s_attachment_missing = 'Annexo mancante'; $s_attachment_count = 'Numero de annexos'; $s_view_attachments_for_issue = 'Vider %1$d annexo(s) pro le problema №%2$d'; diff --git a/lang/strings_italian.txt b/lang/strings_italian.txt index dff65dae75..63019badfd 100644 --- a/lang/strings_italian.txt +++ b/lang/strings_italian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_japanese.txt b/lang/strings_japanese.txt index d18fddac48..823db0d516 100644 --- a/lang/strings_japanese.txt +++ b/lang/strings_japanese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_korean.txt b/lang/strings_korean.txt index 1c7cc06724..4e702e7fa8 100644 --- a/lang/strings_korean.txt +++ b/lang/strings_korean.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_latvian.txt b/lang/strings_latvian.txt index b466372661..21b7e4e727 100644 --- a/lang/strings_latvian.txt +++ b/lang/strings_latvian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_lithuanian.txt b/lang/strings_lithuanian.txt index 83fdf8fa4a..8bee918e6b 100644 --- a/lang/strings_lithuanian.txt +++ b/lang/strings_lithuanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_macedonian.txt b/lang/strings_macedonian.txt index b320b94d0e..9c76b22381 100644 --- a/lang/strings_macedonian.txt +++ b/lang/strings_macedonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -883,6 +883,7 @@ $s_recently_visited = 'Неодамна посетени'; $s_priority_abbreviation = 'П'; $s_note_user_id_label = 'Белешка од:'; $s_filter_match_type = 'Тип на совпаѓање'; +$s_filter_match_type_label = 'Тип на совпаѓање:'; $s_filter_match_all = 'Сите услови'; $s_filter_match_any = 'Било кој услов'; $s_none = 'нема'; @@ -1206,7 +1207,7 @@ $s_timeline_issue_assigned = '%1$s го додел $s_timeline_issue_assigned_to_self = '%1$s го презеде проблемот %2$s'; $s_timeline_issue_unassigned = '%1$s недоделен проблем %2$s'; $s_timeline_no_activity = 'Нема активности во овој временски опсег.'; -$s_timeline_title = 'Хронологија'; +$s_timeline_title = 'Времеслед'; $s_timeline_more = 'Уште настани...'; $s_missing_error_string = 'Отсутна низа за гршека: %1$s'; $MANTIS_ERROR[ERROR_GENERIC] = 'Се појави грешка за време на ова дејство. Ви препорачуваме да ја пријавите кај вашиот месен администратор.'; diff --git a/lang/strings_norwegian_bokmal.txt b/lang/strings_norwegian_bokmal.txt index d2a04a04ca..487e86c4ed 100644 --- a/lang/strings_norwegian_bokmal.txt +++ b/lang/strings_norwegian_bokmal.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_occitan.txt b/lang/strings_occitan.txt index ce140ca7d9..1b3ddc510e 100644 --- a/lang/strings_occitan.txt +++ b/lang/strings_occitan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_polish.txt b/lang/strings_polish.txt index c45e32c519..c4deb053b0 100644 --- a/lang/strings_polish.txt +++ b/lang/strings_polish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_portuguese_brazil.txt b/lang/strings_portuguese_brazil.txt index 1b35c9017a..d52d4fadcc 100644 --- a/lang/strings_portuguese_brazil.txt +++ b/lang/strings_portuguese_brazil.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_portuguese_standard.txt b/lang/strings_portuguese_standard.txt index fb545063a4..1036eb45b8 100644 --- a/lang/strings_portuguese_standard.txt +++ b/lang/strings_portuguese_standard.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index e74424af1e..c0360ec1bf 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -678,7 +678,7 @@ $s_news = 'Nohreeschte'; $s_view_private_news = 'Päsöhnlesch Nohreeschte aanloore'; $s_manage_news = 'Nohreschte verwallde'; $s_view_list_of_attachments = 'Leß met de Aanhäng aanloore'; -$s_download_attachments = 'Aanhäng eronger laade'; +$s_download_attachments = 'Aanhäng eronger lahde'; $s_delete_attachments = 'Aanhäng fottschmiiße'; $s_delete_attachment_button = 'Fottschmiiße'; $s_delete_attachment_sure_msg = 'Wells De heh dä Aanhang verhaftesh fottschmiiße?'; diff --git a/lang/strings_romanian.txt b/lang/strings_romanian.txt index c4acccbb55..b4c81018ad 100644 --- a/lang/strings_romanian.txt +++ b/lang/strings_romanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_russian.txt b/lang/strings_russian.txt index e82caafbd0..21097bb17e 100644 --- a/lang/strings_russian.txt +++ b/lang/strings_russian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -893,6 +893,7 @@ $s_recently_visited = 'Недавно посещенные'; $s_priority_abbreviation = 'П'; $s_note_user_id_label = 'Комментарий от:'; $s_filter_match_type = 'Тип соответствия'; +$s_filter_match_type_label = 'Тип соответствия:'; $s_filter_match_all = 'Все условия'; $s_filter_match_any = 'Любое условие'; $s_none = 'никакие'; diff --git a/lang/strings_serbian.txt b/lang/strings_serbian.txt index 2b17c7341f..ab6bcb602d 100644 --- a/lang/strings_serbian.txt +++ b/lang/strings_serbian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_serbian_latin.txt b/lang/strings_serbian_latin.txt index 9191493ce2..6b78fd8c0e 100644 --- a/lang/strings_serbian_latin.txt +++ b/lang/strings_serbian_latin.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_slovak.txt b/lang/strings_slovak.txt index 5d278c570b..c7d71fdd94 100644 --- a/lang/strings_slovak.txt +++ b/lang/strings_slovak.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_slovene.txt b/lang/strings_slovene.txt index a75ce15ce3..a1e42bcc81 100644 --- a/lang/strings_slovene.txt +++ b/lang/strings_slovene.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_spanish.txt b/lang/strings_spanish.txt index afd07ea26b..51239bfaea 100644 --- a/lang/strings_spanish.txt +++ b/lang/strings_spanish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -118,13 +118,13 @@ $s_announcement = 'Anuncio'; $s_stays_on_top = 'Siempre arriba'; $s_bugnote_link_title = 'Acceso directo a nota'; $s_delete_bugnote_button = 'Eliminar nota'; -$s_delete_bugnote_sure_msg = '¿Está seguro que desea eliminar esta nota?'; +$s_delete_bugnote_sure_msg = '¿Estás seguro de que quieres eliminar esta nota?'; $s_bug_relationships = 'Relaciones'; $s_bug_relationships_label = 'Relaciones:'; -$s_empty_password_sure_msg = 'El usuario tiene una contraseña vacía. ¿Está seguro que es lo que desea?'; +$s_empty_password_sure_msg = 'El usuario tiene una contraseña vacía. ¿Estás seguro de que quieres esto?'; $s_empty_password_button = 'Usar contraseña en blanco'; $s_reauthenticate_title = 'Autenticar'; -$s_reauthenticate_message = 'Está viendo una página segura, pero su sesión ha expirado. Por favor autentíquese para continuar.'; +$s_reauthenticate_message = 'Estás viendo una página segura, pero tu sesión segura ha expirado. Autentifícate para continuar.'; $s_no_category = '(Sin categoría)'; $s_global_categories = 'Categorías globales'; $s_inherit = 'Heredar categorías'; @@ -895,6 +895,7 @@ $s_recently_visited = 'Visitadas recientemente'; $s_priority_abbreviation = 'P'; $s_note_user_id_label = 'Nota de:'; $s_filter_match_type = 'Tipo de coincidencia'; +$s_filter_match_type_label = 'Coincidencia de tipo:'; $s_filter_match_all = 'Todas las condiciones'; $s_filter_match_any = 'Cualquier condición'; $s_none = 'Ninguno'; diff --git a/lang/strings_swedish.txt b/lang/strings_swedish.txt index 97420dd5ce..b1970bf488 100644 --- a/lang/strings_swedish.txt +++ b/lang/strings_swedish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_swissgerman.txt b/lang/strings_swissgerman.txt index fd5da86ea6..0a12438a6e 100644 --- a/lang/strings_swissgerman.txt +++ b/lang/strings_swissgerman.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_tagalog.txt b/lang/strings_tagalog.txt index c353247bf9..37b811ec7c 100644 --- a/lang/strings_tagalog.txt +++ b/lang/strings_tagalog.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_turkish.txt b/lang/strings_turkish.txt index 968cfb8e7c..d42c0f4e7e 100644 --- a/lang/strings_turkish.txt +++ b/lang/strings_turkish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_ukrainian.txt b/lang/strings_ukrainian.txt index fb7b21d79f..2f0a3b48f1 100644 --- a/lang/strings_ukrainian.txt +++ b/lang/strings_ukrainian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_urdu.txt b/lang/strings_urdu.txt index 9c9ee98d77..8d8fcdf5e5 100644 --- a/lang/strings_urdu.txt +++ b/lang/strings_urdu.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lang/strings_vietnamese.txt b/lang/strings_vietnamese.txt index 16d39f8e10..330f3d02e6 100644 --- a/lang/strings_vietnamese.txt +++ b/lang/strings_vietnamese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt b/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt index e934e22b7f..19a7274453 100644 --- a/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt +++ b/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_arabic.txt b/plugins/MantisCoreFormatting/lang/strings_arabic.txt index 3a394f8388..4f9cc140c6 100644 --- a/plugins/MantisCoreFormatting/lang/strings_arabic.txt +++ b/plugins/MantisCoreFormatting/lang/strings_arabic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_basque.txt b/plugins/MantisCoreFormatting/lang/strings_basque.txt index 19a8afc6d0..6cf05b4b62 100644 --- a/plugins/MantisCoreFormatting/lang/strings_basque.txt +++ b/plugins/MantisCoreFormatting/lang/strings_basque.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_belarusian_tarask.txt b/plugins/MantisCoreFormatting/lang/strings_belarusian_tarask.txt index 3b831705f3..aa57dc628f 100644 --- a/plugins/MantisCoreFormatting/lang/strings_belarusian_tarask.txt +++ b/plugins/MantisCoreFormatting/lang/strings_belarusian_tarask.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_breton.txt b/plugins/MantisCoreFormatting/lang/strings_breton.txt index 08242d2e3d..e4e1f00358 100644 --- a/plugins/MantisCoreFormatting/lang/strings_breton.txt +++ b/plugins/MantisCoreFormatting/lang/strings_breton.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_bulgarian.txt b/plugins/MantisCoreFormatting/lang/strings_bulgarian.txt index 17380bc7f5..be6e715365 100644 --- a/plugins/MantisCoreFormatting/lang/strings_bulgarian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_bulgarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_catalan.txt b/plugins/MantisCoreFormatting/lang/strings_catalan.txt index 339f3d7e28..ec5b9f4389 100644 --- a/plugins/MantisCoreFormatting/lang/strings_catalan.txt +++ b/plugins/MantisCoreFormatting/lang/strings_catalan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt b/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt index 8ac085fa8e..70ae0e70fa 100644 --- a/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt +++ b/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_chinese_traditional.txt b/plugins/MantisCoreFormatting/lang/strings_chinese_traditional.txt index d7a3208b35..fa726eefca 100644 --- a/plugins/MantisCoreFormatting/lang/strings_chinese_traditional.txt +++ b/plugins/MantisCoreFormatting/lang/strings_chinese_traditional.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_czech.txt b/plugins/MantisCoreFormatting/lang/strings_czech.txt index 640066187e..e911c5692e 100644 --- a/plugins/MantisCoreFormatting/lang/strings_czech.txt +++ b/plugins/MantisCoreFormatting/lang/strings_czech.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_danish.txt b/plugins/MantisCoreFormatting/lang/strings_danish.txt index d6ffa75579..1ea6311f76 100644 --- a/plugins/MantisCoreFormatting/lang/strings_danish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_danish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_dutch.txt b/plugins/MantisCoreFormatting/lang/strings_dutch.txt index 56044abf87..8b254d8eaa 100644 --- a/plugins/MantisCoreFormatting/lang/strings_dutch.txt +++ b/plugins/MantisCoreFormatting/lang/strings_dutch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_finnish.txt b/plugins/MantisCoreFormatting/lang/strings_finnish.txt index 60434de529..13010b5551 100644 --- a/plugins/MantisCoreFormatting/lang/strings_finnish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_finnish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_french.txt b/plugins/MantisCoreFormatting/lang/strings_french.txt index 72b5531263..20b34f4e3b 100644 --- a/plugins/MantisCoreFormatting/lang/strings_french.txt +++ b/plugins/MantisCoreFormatting/lang/strings_french.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_galician.txt b/plugins/MantisCoreFormatting/lang/strings_galician.txt index a4c1c50481..4fd4b25b71 100644 --- a/plugins/MantisCoreFormatting/lang/strings_galician.txt +++ b/plugins/MantisCoreFormatting/lang/strings_galician.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_german.txt b/plugins/MantisCoreFormatting/lang/strings_german.txt index eecf58a79d..5f2b179cca 100644 --- a/plugins/MantisCoreFormatting/lang/strings_german.txt +++ b/plugins/MantisCoreFormatting/lang/strings_german.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_hebrew.txt b/plugins/MantisCoreFormatting/lang/strings_hebrew.txt index 5ae8b98875..dd875f6790 100644 --- a/plugins/MantisCoreFormatting/lang/strings_hebrew.txt +++ b/plugins/MantisCoreFormatting/lang/strings_hebrew.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_hungarian.txt b/plugins/MantisCoreFormatting/lang/strings_hungarian.txt index c2cfe09c1a..30f9da58bc 100644 --- a/plugins/MantisCoreFormatting/lang/strings_hungarian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_hungarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_interlingua.txt b/plugins/MantisCoreFormatting/lang/strings_interlingua.txt index b7484d3189..33f1620ef4 100644 --- a/plugins/MantisCoreFormatting/lang/strings_interlingua.txt +++ b/plugins/MantisCoreFormatting/lang/strings_interlingua.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_italian.txt b/plugins/MantisCoreFormatting/lang/strings_italian.txt index 1fd65990bc..168457ef5d 100644 --- a/plugins/MantisCoreFormatting/lang/strings_italian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_italian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_japanese.txt b/plugins/MantisCoreFormatting/lang/strings_japanese.txt index 15a55c4a6c..4da3fd488b 100644 --- a/plugins/MantisCoreFormatting/lang/strings_japanese.txt +++ b/plugins/MantisCoreFormatting/lang/strings_japanese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_korean.txt b/plugins/MantisCoreFormatting/lang/strings_korean.txt index ddfd6f5c75..d7e3355ee8 100644 --- a/plugins/MantisCoreFormatting/lang/strings_korean.txt +++ b/plugins/MantisCoreFormatting/lang/strings_korean.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_lithuanian.txt b/plugins/MantisCoreFormatting/lang/strings_lithuanian.txt index e72d3e9dca..81f3a0c6af 100644 --- a/plugins/MantisCoreFormatting/lang/strings_lithuanian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_lithuanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_macedonian.txt b/plugins/MantisCoreFormatting/lang/strings_macedonian.txt index c020e1a09c..1b54de804c 100644 --- a/plugins/MantisCoreFormatting/lang/strings_macedonian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_macedonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt b/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt index 08a1eb5730..ef845057a8 100644 --- a/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt +++ b/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_occitan.txt b/plugins/MantisCoreFormatting/lang/strings_occitan.txt index 03ea4e8715..b8acc9c5f3 100644 --- a/plugins/MantisCoreFormatting/lang/strings_occitan.txt +++ b/plugins/MantisCoreFormatting/lang/strings_occitan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_polish.txt b/plugins/MantisCoreFormatting/lang/strings_polish.txt index 44ba6e09aa..7ec63d10eb 100644 --- a/plugins/MantisCoreFormatting/lang/strings_polish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_polish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt b/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt index 30102e9dcc..dd15092538 100644 --- a/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt +++ b/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt b/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt index 2caa755a1e..0b074e003c 100644 --- a/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt +++ b/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt b/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt index c22e3b35c6..b0d03ed38a 100644 --- a/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt +++ b/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_romanian.txt b/plugins/MantisCoreFormatting/lang/strings_romanian.txt index 76476c1ebb..bdfb8c7079 100644 --- a/plugins/MantisCoreFormatting/lang/strings_romanian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_romanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_russian.txt b/plugins/MantisCoreFormatting/lang/strings_russian.txt index 367b9396b1..71d0650b0e 100644 --- a/plugins/MantisCoreFormatting/lang/strings_russian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_russian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_serbian.txt b/plugins/MantisCoreFormatting/lang/strings_serbian.txt index 6a5b20380b..d6c99d9806 100644 --- a/plugins/MantisCoreFormatting/lang/strings_serbian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_serbian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_serbian_latin.txt b/plugins/MantisCoreFormatting/lang/strings_serbian_latin.txt index 7f1803123d..321f06a340 100644 --- a/plugins/MantisCoreFormatting/lang/strings_serbian_latin.txt +++ b/plugins/MantisCoreFormatting/lang/strings_serbian_latin.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_slovak.txt b/plugins/MantisCoreFormatting/lang/strings_slovak.txt index fafa9d35ee..c3c1854aea 100644 --- a/plugins/MantisCoreFormatting/lang/strings_slovak.txt +++ b/plugins/MantisCoreFormatting/lang/strings_slovak.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_spanish.txt b/plugins/MantisCoreFormatting/lang/strings_spanish.txt index 9272ee4b05..54d6c3a042 100644 --- a/plugins/MantisCoreFormatting/lang/strings_spanish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_spanish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_swedish.txt b/plugins/MantisCoreFormatting/lang/strings_swedish.txt index bc2c20f919..0b50a5cdf9 100644 --- a/plugins/MantisCoreFormatting/lang/strings_swedish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_swedish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt b/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt index cea259a278..a90dd3cd51 100644 --- a/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt +++ b/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_tagalog.txt b/plugins/MantisCoreFormatting/lang/strings_tagalog.txt index fb504dce76..e98126ed92 100644 --- a/plugins/MantisCoreFormatting/lang/strings_tagalog.txt +++ b/plugins/MantisCoreFormatting/lang/strings_tagalog.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_turkish.txt b/plugins/MantisCoreFormatting/lang/strings_turkish.txt index ed7ed2e55b..84d304dae2 100644 --- a/plugins/MantisCoreFormatting/lang/strings_turkish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_turkish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_ukrainian.txt b/plugins/MantisCoreFormatting/lang/strings_ukrainian.txt index 7d32467966..a06d3e4d52 100644 --- a/plugins/MantisCoreFormatting/lang/strings_ukrainian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_ukrainian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisCoreFormatting/lang/strings_vietnamese.txt b/plugins/MantisCoreFormatting/lang/strings_vietnamese.txt index aab7a8b3ca..0d407864ef 100644 --- a/plugins/MantisCoreFormatting/lang/strings_vietnamese.txt +++ b/plugins/MantisCoreFormatting/lang/strings_vietnamese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_arabic.txt b/plugins/MantisGraph/lang/strings_arabic.txt index 2b1a1a504a..ca048f6207 100644 --- a/plugins/MantisGraph/lang/strings_arabic.txt +++ b/plugins/MantisGraph/lang/strings_arabic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt b/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt index 26d2f38302..372794a4da 100644 --- a/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt +++ b/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_belarusian_tarask.txt b/plugins/MantisGraph/lang/strings_belarusian_tarask.txt index e1db2a03bd..69c9d1cf92 100644 --- a/plugins/MantisGraph/lang/strings_belarusian_tarask.txt +++ b/plugins/MantisGraph/lang/strings_belarusian_tarask.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_breton.txt b/plugins/MantisGraph/lang/strings_breton.txt index 3f4b4aa342..ad47231dce 100644 --- a/plugins/MantisGraph/lang/strings_breton.txt +++ b/plugins/MantisGraph/lang/strings_breton.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_bulgarian.txt b/plugins/MantisGraph/lang/strings_bulgarian.txt index 340aa373ab..159078296a 100644 --- a/plugins/MantisGraph/lang/strings_bulgarian.txt +++ b/plugins/MantisGraph/lang/strings_bulgarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_catalan.txt b/plugins/MantisGraph/lang/strings_catalan.txt index 10bbf89250..5aac87b0a1 100644 --- a/plugins/MantisGraph/lang/strings_catalan.txt +++ b/plugins/MantisGraph/lang/strings_catalan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_chinese_simplified.txt b/plugins/MantisGraph/lang/strings_chinese_simplified.txt index 0c15bfdd43..abc367c654 100644 --- a/plugins/MantisGraph/lang/strings_chinese_simplified.txt +++ b/plugins/MantisGraph/lang/strings_chinese_simplified.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_chinese_traditional.txt b/plugins/MantisGraph/lang/strings_chinese_traditional.txt index 174509b1fa..fd9723731e 100644 --- a/plugins/MantisGraph/lang/strings_chinese_traditional.txt +++ b/plugins/MantisGraph/lang/strings_chinese_traditional.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_czech.txt b/plugins/MantisGraph/lang/strings_czech.txt index 45433b8b81..f87f3d2e7e 100644 --- a/plugins/MantisGraph/lang/strings_czech.txt +++ b/plugins/MantisGraph/lang/strings_czech.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_danish.txt b/plugins/MantisGraph/lang/strings_danish.txt index 4ef74bbedf..e30ba7a60d 100644 --- a/plugins/MantisGraph/lang/strings_danish.txt +++ b/plugins/MantisGraph/lang/strings_danish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_dutch.txt b/plugins/MantisGraph/lang/strings_dutch.txt index f1ce6bfdb4..3a00e3bbe3 100644 --- a/plugins/MantisGraph/lang/strings_dutch.txt +++ b/plugins/MantisGraph/lang/strings_dutch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_estonian.txt b/plugins/MantisGraph/lang/strings_estonian.txt index 9fba2f2298..747f955ea3 100644 --- a/plugins/MantisGraph/lang/strings_estonian.txt +++ b/plugins/MantisGraph/lang/strings_estonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_finnish.txt b/plugins/MantisGraph/lang/strings_finnish.txt index 5a108c4a65..1cffdc15ed 100644 --- a/plugins/MantisGraph/lang/strings_finnish.txt +++ b/plugins/MantisGraph/lang/strings_finnish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_french.txt b/plugins/MantisGraph/lang/strings_french.txt index 7541a58112..c57ca725b3 100644 --- a/plugins/MantisGraph/lang/strings_french.txt +++ b/plugins/MantisGraph/lang/strings_french.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_galician.txt b/plugins/MantisGraph/lang/strings_galician.txt index cb06108b1e..95303a1cd6 100644 --- a/plugins/MantisGraph/lang/strings_galician.txt +++ b/plugins/MantisGraph/lang/strings_galician.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_german.txt b/plugins/MantisGraph/lang/strings_german.txt index 5b207aa878..f8acfebaeb 100644 --- a/plugins/MantisGraph/lang/strings_german.txt +++ b/plugins/MantisGraph/lang/strings_german.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_hebrew.txt b/plugins/MantisGraph/lang/strings_hebrew.txt index 876327e29d..6a1051c647 100644 --- a/plugins/MantisGraph/lang/strings_hebrew.txt +++ b/plugins/MantisGraph/lang/strings_hebrew.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_hungarian.txt b/plugins/MantisGraph/lang/strings_hungarian.txt index d1fb9c8ff5..33fb25e9dc 100644 --- a/plugins/MantisGraph/lang/strings_hungarian.txt +++ b/plugins/MantisGraph/lang/strings_hungarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_interlingua.txt b/plugins/MantisGraph/lang/strings_interlingua.txt index f5f5da7479..6c20a976c4 100644 --- a/plugins/MantisGraph/lang/strings_interlingua.txt +++ b/plugins/MantisGraph/lang/strings_interlingua.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_italian.txt b/plugins/MantisGraph/lang/strings_italian.txt index 50fc48a644..e4cad149a8 100644 --- a/plugins/MantisGraph/lang/strings_italian.txt +++ b/plugins/MantisGraph/lang/strings_italian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_japanese.txt b/plugins/MantisGraph/lang/strings_japanese.txt index bb44b4a21c..26ff62f28b 100644 --- a/plugins/MantisGraph/lang/strings_japanese.txt +++ b/plugins/MantisGraph/lang/strings_japanese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_korean.txt b/plugins/MantisGraph/lang/strings_korean.txt index a9ea40864b..732d3ef928 100644 --- a/plugins/MantisGraph/lang/strings_korean.txt +++ b/plugins/MantisGraph/lang/strings_korean.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_lithuanian.txt b/plugins/MantisGraph/lang/strings_lithuanian.txt index 1d61a4c560..da4d25dd5d 100644 --- a/plugins/MantisGraph/lang/strings_lithuanian.txt +++ b/plugins/MantisGraph/lang/strings_lithuanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_macedonian.txt b/plugins/MantisGraph/lang/strings_macedonian.txt index 48de7698c3..301133b01d 100644 --- a/plugins/MantisGraph/lang/strings_macedonian.txt +++ b/plugins/MantisGraph/lang/strings_macedonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt b/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt index 9aa63b70f3..a24dc13738 100644 --- a/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt +++ b/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_occitan.txt b/plugins/MantisGraph/lang/strings_occitan.txt index 36e0bc9e38..f4a8d65811 100644 --- a/plugins/MantisGraph/lang/strings_occitan.txt +++ b/plugins/MantisGraph/lang/strings_occitan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_polish.txt b/plugins/MantisGraph/lang/strings_polish.txt index 1d3f289b94..35610bccea 100644 --- a/plugins/MantisGraph/lang/strings_polish.txt +++ b/plugins/MantisGraph/lang/strings_polish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_portuguese_brazil.txt b/plugins/MantisGraph/lang/strings_portuguese_brazil.txt index 25bb14c565..c89211f9f2 100644 --- a/plugins/MantisGraph/lang/strings_portuguese_brazil.txt +++ b/plugins/MantisGraph/lang/strings_portuguese_brazil.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_portuguese_standard.txt b/plugins/MantisGraph/lang/strings_portuguese_standard.txt index 91bfc11eec..18d19792ba 100644 --- a/plugins/MantisGraph/lang/strings_portuguese_standard.txt +++ b/plugins/MantisGraph/lang/strings_portuguese_standard.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_ripoarisch.txt b/plugins/MantisGraph/lang/strings_ripoarisch.txt index 17dc89f94d..98f9f3b8ef 100644 --- a/plugins/MantisGraph/lang/strings_ripoarisch.txt +++ b/plugins/MantisGraph/lang/strings_ripoarisch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_romanian.txt b/plugins/MantisGraph/lang/strings_romanian.txt index 515c3a9a19..251cbf8fab 100644 --- a/plugins/MantisGraph/lang/strings_romanian.txt +++ b/plugins/MantisGraph/lang/strings_romanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_russian.txt b/plugins/MantisGraph/lang/strings_russian.txt index 196cd6647b..8a7e3165fd 100644 --- a/plugins/MantisGraph/lang/strings_russian.txt +++ b/plugins/MantisGraph/lang/strings_russian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_serbian.txt b/plugins/MantisGraph/lang/strings_serbian.txt index 6512f77cee..5b4d8689e8 100644 --- a/plugins/MantisGraph/lang/strings_serbian.txt +++ b/plugins/MantisGraph/lang/strings_serbian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_serbian_latin.txt b/plugins/MantisGraph/lang/strings_serbian_latin.txt index 10c7685dab..d358d0735b 100644 --- a/plugins/MantisGraph/lang/strings_serbian_latin.txt +++ b/plugins/MantisGraph/lang/strings_serbian_latin.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_slovak.txt b/plugins/MantisGraph/lang/strings_slovak.txt index d761ae2c1a..5c7a72091f 100644 --- a/plugins/MantisGraph/lang/strings_slovak.txt +++ b/plugins/MantisGraph/lang/strings_slovak.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_spanish.txt b/plugins/MantisGraph/lang/strings_spanish.txt index cdf52b88d4..aa582cd891 100644 --- a/plugins/MantisGraph/lang/strings_spanish.txt +++ b/plugins/MantisGraph/lang/strings_spanish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_swedish.txt b/plugins/MantisGraph/lang/strings_swedish.txt index b0f273f1ad..c88d0f3c65 100644 --- a/plugins/MantisGraph/lang/strings_swedish.txt +++ b/plugins/MantisGraph/lang/strings_swedish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_swissgerman.txt b/plugins/MantisGraph/lang/strings_swissgerman.txt index 36c11b11d4..a325110007 100644 --- a/plugins/MantisGraph/lang/strings_swissgerman.txt +++ b/plugins/MantisGraph/lang/strings_swissgerman.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_tagalog.txt b/plugins/MantisGraph/lang/strings_tagalog.txt index 84e982f851..9e79941af6 100644 --- a/plugins/MantisGraph/lang/strings_tagalog.txt +++ b/plugins/MantisGraph/lang/strings_tagalog.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_turkish.txt b/plugins/MantisGraph/lang/strings_turkish.txt index 39379bbb71..f7601bf0a5 100644 --- a/plugins/MantisGraph/lang/strings_turkish.txt +++ b/plugins/MantisGraph/lang/strings_turkish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_ukrainian.txt b/plugins/MantisGraph/lang/strings_ukrainian.txt index b93c359a95..37980b388e 100644 --- a/plugins/MantisGraph/lang/strings_ukrainian.txt +++ b/plugins/MantisGraph/lang/strings_ukrainian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/MantisGraph/lang/strings_vietnamese.txt b/plugins/MantisGraph/lang/strings_vietnamese.txt index e05d5eaccd..c31897b115 100644 --- a/plugins/MantisGraph/lang/strings_vietnamese.txt +++ b/plugins/MantisGraph/lang/strings_vietnamese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_arabic.txt b/plugins/XmlImportExport/lang/strings_arabic.txt index 2d8c35303d..85f87171ed 100644 --- a/plugins/XmlImportExport/lang/strings_arabic.txt +++ b/plugins/XmlImportExport/lang/strings_arabic.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_belarusian_tarask.txt b/plugins/XmlImportExport/lang/strings_belarusian_tarask.txt index e030860707..a3a6c22b37 100644 --- a/plugins/XmlImportExport/lang/strings_belarusian_tarask.txt +++ b/plugins/XmlImportExport/lang/strings_belarusian_tarask.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_breton.txt b/plugins/XmlImportExport/lang/strings_breton.txt index 3a2c7e1cba..c02a373a4d 100644 --- a/plugins/XmlImportExport/lang/strings_breton.txt +++ b/plugins/XmlImportExport/lang/strings_breton.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_bulgarian.txt b/plugins/XmlImportExport/lang/strings_bulgarian.txt index 383e579a81..224df17f64 100644 --- a/plugins/XmlImportExport/lang/strings_bulgarian.txt +++ b/plugins/XmlImportExport/lang/strings_bulgarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_catalan.txt b/plugins/XmlImportExport/lang/strings_catalan.txt index cc38187865..5c6139e99f 100644 --- a/plugins/XmlImportExport/lang/strings_catalan.txt +++ b/plugins/XmlImportExport/lang/strings_catalan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_chinese_simplified.txt b/plugins/XmlImportExport/lang/strings_chinese_simplified.txt index e6d10438f4..416b1275f0 100644 --- a/plugins/XmlImportExport/lang/strings_chinese_simplified.txt +++ b/plugins/XmlImportExport/lang/strings_chinese_simplified.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_chinese_traditional.txt b/plugins/XmlImportExport/lang/strings_chinese_traditional.txt index 5b3ff45e8e..7860febbad 100644 --- a/plugins/XmlImportExport/lang/strings_chinese_traditional.txt +++ b/plugins/XmlImportExport/lang/strings_chinese_traditional.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_czech.txt b/plugins/XmlImportExport/lang/strings_czech.txt index 2200cede6e..e1ca15bb67 100644 --- a/plugins/XmlImportExport/lang/strings_czech.txt +++ b/plugins/XmlImportExport/lang/strings_czech.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_danish.txt b/plugins/XmlImportExport/lang/strings_danish.txt index 3d408b31f0..859bea4165 100644 --- a/plugins/XmlImportExport/lang/strings_danish.txt +++ b/plugins/XmlImportExport/lang/strings_danish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_dutch.txt b/plugins/XmlImportExport/lang/strings_dutch.txt index 79ba63567a..b2feaf51d5 100644 --- a/plugins/XmlImportExport/lang/strings_dutch.txt +++ b/plugins/XmlImportExport/lang/strings_dutch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_finnish.txt b/plugins/XmlImportExport/lang/strings_finnish.txt index 70eba6b2a2..b413a96fbd 100644 --- a/plugins/XmlImportExport/lang/strings_finnish.txt +++ b/plugins/XmlImportExport/lang/strings_finnish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_french.txt b/plugins/XmlImportExport/lang/strings_french.txt index 3afc4df31c..14fe8b1328 100644 --- a/plugins/XmlImportExport/lang/strings_french.txt +++ b/plugins/XmlImportExport/lang/strings_french.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_galician.txt b/plugins/XmlImportExport/lang/strings_galician.txt index 16b53cee78..9a2c45cd59 100644 --- a/plugins/XmlImportExport/lang/strings_galician.txt +++ b/plugins/XmlImportExport/lang/strings_galician.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_german.txt b/plugins/XmlImportExport/lang/strings_german.txt index 8c2486fd27..9a24b3642d 100644 --- a/plugins/XmlImportExport/lang/strings_german.txt +++ b/plugins/XmlImportExport/lang/strings_german.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -63,5 +63,5 @@ $s_plugin_XmlImportExport_disable = 'Deaktivieren'; $s_plugin_XmlImportExport_disable_desc = 'Link deaktivieren'; $s_plugin_XmlImportExport_fallback = 'Fallback-Strategie (wenn ohne Renummerierung):'; $s_plugin_XmlImportExport_fallback_category = 'Ersatz-Kategorie:'; -$s_plugin_XmlImportExport_keep_same_category = 'Versuche, die gleich Kategorie beizubehalten'; +$s_plugin_XmlImportExport_keep_same_category = 'Versuchen, die gleiche Kategorie beizubehalten'; $s_plugin_XmlImportExport_error_no_xml = 'xmlreader- und xmlwriter-Erweiterungen konnten nicht gefunden werden'; diff --git a/plugins/XmlImportExport/lang/strings_hebrew.txt b/plugins/XmlImportExport/lang/strings_hebrew.txt index 9d17dab466..6d62e04a39 100644 --- a/plugins/XmlImportExport/lang/strings_hebrew.txt +++ b/plugins/XmlImportExport/lang/strings_hebrew.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_hungarian.txt b/plugins/XmlImportExport/lang/strings_hungarian.txt index 907ea4a336..ffb0d82e79 100644 --- a/plugins/XmlImportExport/lang/strings_hungarian.txt +++ b/plugins/XmlImportExport/lang/strings_hungarian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_interlingua.txt b/plugins/XmlImportExport/lang/strings_interlingua.txt index 77ef5fa021..d589c3f3ad 100644 --- a/plugins/XmlImportExport/lang/strings_interlingua.txt +++ b/plugins/XmlImportExport/lang/strings_interlingua.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_italian.txt b/plugins/XmlImportExport/lang/strings_italian.txt index 333a33f0d2..853c246534 100644 --- a/plugins/XmlImportExport/lang/strings_italian.txt +++ b/plugins/XmlImportExport/lang/strings_italian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_japanese.txt b/plugins/XmlImportExport/lang/strings_japanese.txt index 692e756bd4..c7d1916c34 100644 --- a/plugins/XmlImportExport/lang/strings_japanese.txt +++ b/plugins/XmlImportExport/lang/strings_japanese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_korean.txt b/plugins/XmlImportExport/lang/strings_korean.txt index 57f3f20a98..76096ab7f0 100644 --- a/plugins/XmlImportExport/lang/strings_korean.txt +++ b/plugins/XmlImportExport/lang/strings_korean.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_macedonian.txt b/plugins/XmlImportExport/lang/strings_macedonian.txt index 2e4b88a817..7e1240e6f9 100644 --- a/plugins/XmlImportExport/lang/strings_macedonian.txt +++ b/plugins/XmlImportExport/lang/strings_macedonian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt b/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt index 69d289e26f..5462b7a437 100644 --- a/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt +++ b/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_occitan.txt b/plugins/XmlImportExport/lang/strings_occitan.txt index c5f180cdbc..0ee62e1d2a 100644 --- a/plugins/XmlImportExport/lang/strings_occitan.txt +++ b/plugins/XmlImportExport/lang/strings_occitan.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_polish.txt b/plugins/XmlImportExport/lang/strings_polish.txt index 328f405ea4..3db0922b26 100644 --- a/plugins/XmlImportExport/lang/strings_polish.txt +++ b/plugins/XmlImportExport/lang/strings_polish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_portuguese_brazil.txt b/plugins/XmlImportExport/lang/strings_portuguese_brazil.txt index 7618f6d2ab..3dc81b0b13 100644 --- a/plugins/XmlImportExport/lang/strings_portuguese_brazil.txt +++ b/plugins/XmlImportExport/lang/strings_portuguese_brazil.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_portuguese_standard.txt b/plugins/XmlImportExport/lang/strings_portuguese_standard.txt index f1f9b0cc9f..e10d5ff8fc 100644 --- a/plugins/XmlImportExport/lang/strings_portuguese_standard.txt +++ b/plugins/XmlImportExport/lang/strings_portuguese_standard.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_ripoarisch.txt b/plugins/XmlImportExport/lang/strings_ripoarisch.txt index 372aa2fda3..a96643c3d7 100644 --- a/plugins/XmlImportExport/lang/strings_ripoarisch.txt +++ b/plugins/XmlImportExport/lang/strings_ripoarisch.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_romanian.txt b/plugins/XmlImportExport/lang/strings_romanian.txt index f5557f1d53..336424e5ab 100644 --- a/plugins/XmlImportExport/lang/strings_romanian.txt +++ b/plugins/XmlImportExport/lang/strings_romanian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_russian.txt b/plugins/XmlImportExport/lang/strings_russian.txt index 8bca1c3343..5cf788ad62 100644 --- a/plugins/XmlImportExport/lang/strings_russian.txt +++ b/plugins/XmlImportExport/lang/strings_russian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_serbian.txt b/plugins/XmlImportExport/lang/strings_serbian.txt index a9b55ea215..acd6c65892 100644 --- a/plugins/XmlImportExport/lang/strings_serbian.txt +++ b/plugins/XmlImportExport/lang/strings_serbian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_serbian_latin.txt b/plugins/XmlImportExport/lang/strings_serbian_latin.txt index 3ebd9a801c..2cd2bddcd8 100644 --- a/plugins/XmlImportExport/lang/strings_serbian_latin.txt +++ b/plugins/XmlImportExport/lang/strings_serbian_latin.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_slovak.txt b/plugins/XmlImportExport/lang/strings_slovak.txt index cde956144a..b596b441c3 100644 --- a/plugins/XmlImportExport/lang/strings_slovak.txt +++ b/plugins/XmlImportExport/lang/strings_slovak.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_spanish.txt b/plugins/XmlImportExport/lang/strings_spanish.txt index 2909723364..37afaeee1f 100644 --- a/plugins/XmlImportExport/lang/strings_spanish.txt +++ b/plugins/XmlImportExport/lang/strings_spanish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_swedish.txt b/plugins/XmlImportExport/lang/strings_swedish.txt index 317ca39c07..650bfb3b20 100644 --- a/plugins/XmlImportExport/lang/strings_swedish.txt +++ b/plugins/XmlImportExport/lang/strings_swedish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_swissgerman.txt b/plugins/XmlImportExport/lang/strings_swissgerman.txt index 555c9f7a32..abd5287c90 100644 --- a/plugins/XmlImportExport/lang/strings_swissgerman.txt +++ b/plugins/XmlImportExport/lang/strings_swissgerman.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_tagalog.txt b/plugins/XmlImportExport/lang/strings_tagalog.txt index 331ddf0ec7..13b2a4bc78 100644 --- a/plugins/XmlImportExport/lang/strings_tagalog.txt +++ b/plugins/XmlImportExport/lang/strings_tagalog.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_turkish.txt b/plugins/XmlImportExport/lang/strings_turkish.txt index 54d8771659..3286b295d2 100644 --- a/plugins/XmlImportExport/lang/strings_turkish.txt +++ b/plugins/XmlImportExport/lang/strings_turkish.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_ukrainian.txt b/plugins/XmlImportExport/lang/strings_ukrainian.txt index 2e7704bc1c..aea4fb445f 100644 --- a/plugins/XmlImportExport/lang/strings_ukrainian.txt +++ b/plugins/XmlImportExport/lang/strings_ukrainian.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/plugins/XmlImportExport/lang/strings_vietnamese.txt b/plugins/XmlImportExport/lang/strings_vietnamese.txt index 4803ebae14..26d8748666 100644 --- a/plugins/XmlImportExport/lang/strings_vietnamese.txt +++ b/plugins/XmlImportExport/lang/strings_vietnamese.txt @@ -2,7 +2,7 @@ /** MantisBT - a php based bugtracking system * * Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org - * Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * Copyright (C) 2002 - 2015 MantisBT Team - mantisbt-dev@lists.sourceforge.net * * MantisBT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by From 6256872b576f155ee9026eacaf1820220fa941cb Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 14 Oct 2015 12:58:28 +0200 Subject: [PATCH 17/78] Localisation updates from https://translatewiki.net. --- lang/strings_chinese_simplified.txt | 6 +- lang/strings_macedonian.txt | 2 +- lang/strings_polish.txt | 61 ++++++++++++++-- lang/strings_portuguese_brazil.txt | 26 +++++-- lang/strings_ripoarisch.txt | 69 ++++++++++++++++--- lang/strings_spanish.txt | 2 +- lang/strings_swedish.txt | 1 + .../lang/strings_chinese_simplified.txt | 2 +- 8 files changed, 144 insertions(+), 25 deletions(-) diff --git a/lang/strings_chinese_simplified.txt b/lang/strings_chinese_simplified.txt index c7715e460e..9d271e9bcd 100644 --- a/lang/strings_chinese_simplified.txt +++ b/lang/strings_chinese_simplified.txt @@ -224,7 +224,7 @@ $s_new_account_greeting = '谢谢你注册本系统. 你的登陆帐号名称是 $s_new_account_greeting_admincreated = '用户%1$s为你创建了用户名为"%2$s"的帐号. 请访问下面的地址以完成你的注册并设置自己的访问密码:'; $s_new_account_username = '用户名:'; $s_new_account_message = '如果你从未申请过注册本系统,请忽略此消息'; -$s_new_account_do_not_reply = '此邮件由系统自动生成,请勿回复'; +$s_new_account_do_not_reply = '请不要回复此消息'; $s_new_account_email = '电子邮箱:'; $s_new_account_IP = 'IP 地址:'; $s_new_account_signup_msg = '已创建如下账号:'; @@ -846,7 +846,7 @@ $s_save_settings_button = '保存设置'; $s_site_settings_title = '站点设置'; $s_system_info_link = '系统信息'; $s_site_settings_link = '站点设置'; -$s_site_settings_updated_msg = '站点设置已经被更新。'; +$s_site_settings_updated_msg = '网站设置已更新'; $s_summary_title = '统计报表'; $s_summary_advanced_link = '图形报表'; $s_by_project = '按项目'; @@ -1247,7 +1247,7 @@ $MANTIS_ERROR[ERROR_PROJECT_NAME_INVALID] = '项目名称无效,项目名称 $MANTIS_ERROR[ERROR_USER_BY_NAME_NOT_FOUND] = '用户名 "%1$s" 无法找到。'; $MANTIS_ERROR[ERROR_USER_BY_ID_NOT_FOUND] = '用户ID "%1$d" 无法找到。'; $MANTIS_ERROR[ERROR_AUTH_INVALID_COOKIE] = '浏览器储存的登录资料无效;也许你的帐号已经被删除了?'; -$MANTIS_ERROR[ERROR_USER_PREFS_NOT_FOUND] = '没有找到帐号的配置信息'; +$MANTIS_ERROR[ERROR_USER_PREFS_NOT_FOUND] = '找不到此用户的参数设置。'; $MANTIS_ERROR[ERROR_NEWS_NOT_FOUND] = '没有找到新闻。'; $MANTIS_ERROR[ERROR_USER_CREATE_PASSWORD_MISMATCH] = '密码与核证结果不匹配'; $MANTIS_ERROR[ERROR_USER_CURRENT_PASSWORD_MISMATCH] = '当前密码不正确。'; diff --git a/lang/strings_macedonian.txt b/lang/strings_macedonian.txt index 9c76b22381..bf226b0e58 100644 --- a/lang/strings_macedonian.txt +++ b/lang/strings_macedonian.txt @@ -1301,7 +1301,7 @@ $MANTIS_ERROR[ERROR_SIGNUP_NOT_MATCHING_CAPTCHA] = 'Тарабниот код з $MANTIS_ERROR[ERROR_LOST_PASSWORD_NOT_ENABLED] = 'Функцијата за изгубена лозинка е недостапна.'; $MANTIS_ERROR[ERROR_LOST_PASSWORD_NO_EMAIL_SPECIFIED] = 'Мора да наведете е-поштенска адреса за да можете да ја смените лозинката.'; $MANTIS_ERROR[ERROR_LOST_PASSWORD_NOT_MATCHING_DATA] = 'Наведените податоци не се совпаѓаат со ниедна регистрирана сметка!'; -$MANTIS_ERROR[ERROR_LOST_PASSWORD_CONFIRM_HASH_INVALID] = 'Потврдната URL-адреса е неважечка или веќе е искористена. Регистрирајте се одново.'; +$MANTIS_ERROR[ERROR_LOST_PASSWORD_CONFIRM_HASH_INVALID] = 'Потврдната URL е неважечка или веќе е искористена. Регистрирајте се одново.'; $MANTIS_ERROR[ERROR_LOST_PASSWORD_MAX_IN_PROGRESS_ATTEMPTS_REACHED] = 'Достигнат е максималниот дозволен број на барања во тек. Контактирајте го систем-администраторот.'; $MANTIS_ERROR[ERROR_PROJECT_RECURSIVE_HIERARCHY] = 'Таа операција би довела до јазол во потпроектната хиерархија.'; $MANTIS_ERROR[ERROR_USER_CHANGE_LAST_ADMIN] = 'Не можете да ја отстраните или обесправите последната администраторска сметка. Ова може да се направи само ако прво создадете друга администраторска сметка.'; diff --git a/lang/strings_polish.txt b/lang/strings_polish.txt index c4deb053b0..ad72d3cb06 100644 --- a/lang/strings_polish.txt +++ b/lang/strings_polish.txt @@ -43,6 +43,7 @@ * @author Chrumps * @author Cysioland * @author Debeet + * @author Expert3222 * @author Py64 * @author Rezonansowy * @author Sp5uhe @@ -87,6 +88,8 @@ $s_private_project_msg = 'Ten projekt jest prywatny. Jedynie administratorzy i r $s_access_level_project = 'Poziom dostępu'; $s_view_submitted_bug_link = 'Zobacz zgłoszenie %1$s'; $s_assigned_projects = 'Projekty przypisane'; +$s_assigned_projects_label = 'Przypisane projekty'; +$s_unassigned_projects_label = 'Nieprzypisane projekty'; $s_print = 'Drukuj'; $s_jump = 'Skocz do'; $s_copy_users = 'Kopiuj użytkowników'; @@ -112,6 +115,7 @@ $s_bugnote_link_title = 'Link bezpośredni do notatki'; $s_delete_bugnote_button = 'Usuń komentarz'; $s_delete_bugnote_sure_msg = 'Czy na pewno chcesz usunąć ten komentarz?'; $s_bug_relationships = 'Powiązania'; +$s_bug_relationships_label = 'Powiązania'; $s_empty_password_sure_msg = 'Użytkownik ma puste hasło. Czy na pewno tego chcesz?'; $s_empty_password_button = 'Użyj pustego hasła'; $s_reauthenticate_title = 'Autoryzuj'; @@ -281,6 +285,7 @@ $s_edit_account_title = 'Edytycja konta'; $s_username = 'Nazwa użytkownika'; $s_username_label = 'Nazwa użytkownika'; $s_realname = 'Imię i nazwisko'; +$s_realname_label = 'Imię i nazwisko'; $s_email = 'E-mail'; $s_email_label = 'E-mail'; $s_password = 'Hasło'; @@ -380,6 +385,7 @@ $s_select_file = 'Wybierz plik'; $s_select_files = 'Wybierz pliki'; $s_upload_file_button = 'Prześlij plik'; $s_upload_files_button = 'Prześlij pliki'; +$s_max_file_size_label = 'Maksymalny rozmiar:'; $s_bug_reopened_msg = 'Zgłoszenie zostało ponownie otwarte...'; $s_reopen_add_bugnote_title = 'Dodaj komentarz z wyjaśnieniem powodu ponownego otwarcia zgłoszenia'; $s_bugnote_add_reopen_button = 'Dodaj komentarz i ponownie otwórz zgłoszenie'; @@ -398,7 +404,7 @@ $s_reminder_list_truncated = 'lista odbiorców skrócona'; $s_bug_send_button = 'Wyślij'; $s_reminder = 'Przypomnienie'; $s_reminder_explain = 'Ten komentarz zostanie wysłany do osób obserwujących zgłoszenie.'; -$s_reminder_monitor = 'Następujący odbiorcy zaczną obserwować zgłoszenie. Mogą zrezygnować za pomocą przycisku Zakończenia obserwowania.'; +$s_reminder_monitor = 'Następujący odbiorcy zaczną obserwować zgłoszenie. Mogą zrezygnować za pomocą przycisku zakończenia obserwowania.'; $s_reminder_store = 'Komentarz zostanie zapisany razem ze zgłoszeniem.'; $s_confirm_sponsorship = 'Proszę potwierdzić chęć sponsorowania zgłoszenia %1$d liczbą %2$s.'; $s_stick_bug_button = 'Przyklej'; @@ -411,25 +417,34 @@ $s_id = 'Identyfikator'; $s_category = 'Kategoria'; $s_category_label = 'Kategoria:'; $s_severity = 'Ważność'; +$s_severity_label = 'Ważność'; $s_reproducibility = 'Powtarzalność'; $s_date_submitted = 'Data zgłoszenia'; $s_last_update = 'Data modyfikacji'; $s_reporter = 'Zgłaszający'; +$s_reporter_label = 'Zgłaszający:'; $s_assigned_to = 'Przypisany do'; +$s_assigned_to_label = 'Przypisane do:'; $s_priority = 'Priorytet'; $s_priority_label = 'Priorytet:'; $s_resolution = 'Rozwiązanie'; +$s_resolution_label = 'Rozdzielczość:'; $s_status = 'Status'; $s_status_label = 'Status:'; $s_duplicate_id = 'Identyfikator kopii'; $s_os = 'System operacyjny'; +$s_os_label = 'System operacyjny:'; $s_projection = 'Przewidywana trudność'; $s_os_version = 'Wersja systemu'; +$s_os_version_label = 'Wersja systemu:'; $s_eta = 'Szacowany termin rozwiązania'; $s_product_version = 'Wersja produktu'; +$s_product_version_label = 'Wersja produktu:'; $s_build = 'Kompilacja'; $s_fixed_in_version = 'Poprawione w wersji'; +$s_fixed_in_version_label = 'Poprawione w wersji:'; $s_target_version = 'Wersja docelowa'; +$s_target_version_label = 'Docelowa wersja:'; $s_votes = 'Głosy'; $s_summary = 'Temat'; $s_description = 'Opis'; @@ -437,8 +452,10 @@ $s_steps_to_reproduce = 'Kroki, by powtórzyć'; $s_update_information_button = 'Aktualizuj informację'; $s_sticky_issue = 'Zgłoszenie przyklejone'; $s_profile = 'Profil'; +$s_profile_label = 'Profil:'; $s_updating_bug_simple_title = 'Aktualizacja informacji o zgłoszeniu'; $s_view_revisions = 'Wyświetl wersje'; +$s_view_num_revisions = 'Zobacz edycje %1$d'; $s_revision = 'Wersja'; $s_revision_by = '%1$s zrobiona przez %2$s'; $s_revision_drop = 'Odrzuć'; @@ -459,17 +476,27 @@ $s_add_bugnote_button = 'Dodaj komentarz'; $s_bugnote_edit_link = 'Edytuj'; $s_closed_bug_button = 'Zamknij zgłoszenie'; $s_bugnote_updated_msg = 'Komentarz został pomyślnie zaktualizowany...'; +$s_last_edited = 'Ostatnio edytowane:'; $s_hide_content = 'Ukryj zawartość'; $s_show_content = 'Pokaż zawartość'; +$s_webmaster_contact_information = 'Skontaktuj się z %1$s" title="Napisz email do webmastera ">administratorem w celu uzyskania pomocy'; $s_total_queries_executed = '%1$d wszystkich wykonanych zapytań.'; $s_unique_queries_executed = '%1$d wykonanych unikalnych zapytań.'; -$s_memory_usage_in_kb = 'wykorzystanie pamięci: %1$s KB'; +$s_total_query_execution_time = 'Całkowity czas wykonania zapytania: %1$s sekund'; +$s_page_execution_time = 'Czas generowania strony: %1$s sekund'; +$s_memory_usage_in_kb = 'Wykorzystanie pamięci: %1$s KB'; +$s_log_page_number = 'Numer'; +$s_log_page_time = 'Czas wykonania'; +$s_log_page_event = 'Wydarzenie'; $s_please_report = 'Należy poinformować o tym %1$s.'; $s_click_to_login = 'Zaloguj'; $s_warning_plain_password_authentication = 'UWAGA: Wykorzystywane jest proste uwierzytelnianie, co powoduje, że Twoje hasło będzie widoczne dla administratorów.'; $s_warning_default_administrator_account_present = 'UWAGA: Powinieneś wyłączyć domyślne konto \'administrator\' lub zmienić jego hasło.'; $s_warning_admin_directory_present = 'UWAGA: Katalog „Admin” powinien zostać usunięty.'; -$s_error_database_no_schema_version = 'BŁĄD! Struktura bazy danych może być nieaktualna (funkcja config(databaseversion) zwróciła 0 i brak jest starych tabel do aktualizacji). Sprawdź czy baza danych jest uruchomiona – nie można sprawdzić wersji schematu bazy danych. W tabeli konfiguracyjnej prawidłowej wersji schematu bazy danych – należy zapytać wsparcie na liście e-mailowej mantis–help jeśli jest to konieczne.'; +$s_warning_change_setting = 'Uwaga: "%1$s" nie jest ustawiona na wartość domyślną (%2$s).'; +$s_warning_security_hazard = 'To niesie potencjalne zagrożenie bezpieczeństwa, ponieważ może doprowadzić do ujawnienia poufnych informacji.'; +$s_warning_integrity_hazard = 'To sprawi, że MantisBT będzie kontynuować pracę, gdy pojawią się błędy, i może prowadzić do problemów z integralnością danych systemu.'; +$s_error_database_no_schema_version = 'BŁĄD: Struktura bazy danych może być nieaktualna (funkcja config(databaseversion) zwróciła 0 i brak jest starych tabel do aktualizacji). Sprawdź, czy baza danych jest uruchomiona – nie możemy sprawdzić wersji schematu bazy danych. Tabela konfiguracji nie zwróciła prawidłowej wersji schematu bazy danych – możesz poprosić o pomoc na liście e-mailowej mantis–help, jeśli jest to konieczne.'; $s_error_database_version_out_of_date_2 = 'UWAGA! Struktura bazy danych może być nieaktualna. Uaktualnij przed zalogowaniem się.'; $s_error_code_version_out_of_date = 'UWAGA! Struktura bazy danych jest nowsza od zainstalowanego kodu. Uaktualnij oprogramowanie.'; $s_login_page_info = 'Witaj w programie do śledzenia i rozwiązywania zgłoszeń.'; @@ -487,6 +514,8 @@ $s_lost_password_done_title = 'Wiadomość o haśle wysłana'; $s_lost_password_subject = 'Resetowanie hasła'; $s_lost_password_info = 'Aby zmienić zapomniane hasło, proszę podać nazwe użytkownika i adres email dla konta.

Jeśli podane dane odpowiadają poprawnemu kontu, otrzymasz w wiadomości email specjalny adres URL zawierający kod weryfikujący dla twojego konta. Proszę otworzyć podany adres aby zmienić hasło.'; $s_lost_password_confirm_hash_OK = 'Twoje potwierdzenie zostało zaakceptowane. Proszę zmienić hasło.'; +$s_open_and_assigned_to_me_label = 'Otwarte i przypisane do mnie:'; +$s_open_and_reported_to_me_label = 'Otwarte i zgłoszone przeze mnie:'; $s_newer_news_link = 'Nowsze wiadomości'; $s_older_news_link = 'Starsze wiadomości'; $s_archives = 'Archiwum'; @@ -502,7 +531,9 @@ $s_created_user_part2 = 'z poziomem dostępu'; $s_create_new_account_title = 'Tworzenie nowego konta'; $s_verify_password = 'Potwierdź hasło'; $s_enabled = 'Włączone'; +$s_enabled_label = 'Włączony'; $s_protected = 'Zabezpieczone'; +$s_protected_label = 'Zabezpieczone'; $s_create_user_button = 'Stwórz użytkownika'; $s_hide_disabled = 'Ukryj wyłączone'; $s_filter_button = 'Filtruj'; @@ -536,6 +567,7 @@ $s_date_created = 'Stworzone'; $s_last_visit = 'Ostatnia wizyta'; $s_last_visit_label = 'Ostatnia wizyta:'; $s_edit_user_link = 'Edytuj dane'; +$s_separate_list_items_by = '(oddziel poszczególne elementy listy za pomocą "%1$s")'; $s_config_all_projects = 'Uwaga: Ta konfiguracja dotyczy WSZYSTKICH PROJEKTÓW.'; $s_config_project = 'Uwaga! Ta konfiguracja dotyczy tylko projektu %1$s.'; $s_colour_coding = 'W tabeli oznaczono poniższymi kolorami, które ustawienia będą stosowane:'; @@ -571,11 +603,16 @@ $s_desc_bug_submit_status = 'Status ustawiany automatycznie nowym zgłoszeniom'; $s_desc_bug_reopen_status = 'Status ustawiany ponownie otwieranym zgłoszeniom'; $s_desc_bug_resolved_status_threshold = 'Status który oznacza, że zgłoszenie zostało zrealizowane'; $s_desc_bug_closed_status_threshold = 'Status gdy problem jest uznawany za zamknięty'; +$s_access_change_access_label = 'Użytkownicy mogący zmieniać poziomy dostępu:'; $s_default_not_in_flow = 'Domyślna wartość „%1$s” nie została wybrana wśród następnych statusów dla „%2$s”. To ustawienie zostanie zignorowanie.'; $s_assign_issue = 'Przypisz zgłoszenie'; $s_allow_reporter_close = 'Zezwól zgłaszającemu na zamknięcie zgłoszenia'; $s_allow_reporter_reopen = 'Zezwól zgłaszającemu na ponowne otwarcie zgłoszenia'; $s_set_status_assigned = 'Ustaw status przy przypisaniu obsługującego zgłoszenie'; +$s_edit_others_bugnotes = 'Edytuj komentarze innych'; +$s_edit_own_bugnotes = 'Edytuj własne komentarze'; +$s_delete_others_bugnotes = 'Usuń komentarze innych'; +$s_delete_own_bugnotes = 'Usuń swoje komentarze'; $s_limit_access = 'Ogranicz dostęp zgłaszających tylko do ich zgłoszeń'; $s_submit_status = 'Status ustawiany nowemu zgłoszeniu'; $s_assigned_status = 'Status na który ustawić automatycznie przypisane zgłoszenia'; @@ -623,6 +660,7 @@ $s_delete_category_button = 'Usuń kategorię'; $s_edit_project_category_title = 'Edycja kategorii'; $s_update_category_button = 'Aktualizuj Kategorię'; $s_category_updated_msg = 'Kategoria została pomyślnie zaktualizowana...'; +$s_create_first_project = 'Utwórz projekt, aby móc zapisywać problemy.'; $s_add_subproject_title = 'Dodaj podprojekt'; $s_project_deleted_msg = 'Projekt został usunięty...'; $s_project_delete_msg = 'Czy na pewno chcesz usunąć ten projekt i wszystkie przypisane do tego projektu zgłoszenia?'; @@ -631,6 +669,7 @@ $s_edit_project_title = 'Edycja projektu'; $s_project_name = 'Nazwa projektu'; $s_project_name_label = 'Nazwa projektu:'; $s_view_status = 'Widoczność'; +$s_view_status_label = 'Widoczność:'; $s_public = 'publiczny'; $s_private = 'prywatny'; $s_update_project_button = 'Aktualizuj projekt'; @@ -786,7 +825,9 @@ $s_valid_project_msg = 'Musisz wybrać prawidłowy projekt.'; $s_signup_done_title = 'Rejestracja konta wykonana.'; $s_password_emailed_msg = 'Gratuluję pomyślnej rejestracji. Wysłana została właśnie wiadomość weryfikująca podany adres email. Odwiedzając adres podany w tej wiadomości aktywujesz swoje konto.'; $s_no_reponse_msg = 'Masz siedem dni na dokończenie procesu potwierdzania konta. Jeśli nie potwierdzisz go w tym okresie, konto zostanie usunięte.'; -$s_signup_info = 'Po wypełnieniu formularza i sprawdzeniu twoich odpowiedzi, otrzymasz na podany adres email wiadomość potwierdzającą.
Wiadomość ta umożliwi pełną aktywację konta. Jeśli nie aktywujesz go w ciągu 7 dni, konto zostanie usunięte.
Musisz podać poprawny adres email aby otrzymać wiadomość potwiedzającą.'; +$s_signup_captcha_request_label = 'Wprowadź kod dokładnie tak, jak w prostokącie po prawej stronie:'; +$s_signup_captcha_refresh = 'Wygeneruj nowy kod'; +$s_signup_info = 'Po wypełnieniu formularza i sprawdzeniu twoich odpowiedzi, otrzymasz na podany adres email wiadomość potwierdzającą.
Wiadomość ta umożliwi pełną aktywację konta. Jeśli nie aktywujesz go w ciągu 7 dni, konto zostanie usunięte.
Musisz podać poprawny adres email, aby otrzymać wiadomość potwierdzającą.'; $s_signup_title = 'Zapisywanie się'; $s_signup_button = 'Zapisz się'; $s_no_password_request = 'Twoje hasło jest zarządzane przez inny system. Skontaktuj się z administratorem.'; @@ -831,14 +872,17 @@ $s_orct = '(otwarty/rozwiązany/zamknięty/łącznie)'; $s_any = 'dowolny'; $s_all = 'wszystkie'; $s_show = 'Pokaż'; +$s_show_label = 'Pokaż:'; $s_changed = 'Zmienione (w godzinach)'; $s_viewing_bugs_title = 'Przeglądanie zgłoszeń'; $s_updated = 'Aktualizacja'; $s_sticky = 'Pokazuj przyklejone zgłoszenia'; +$s_sticky_label = 'Pokazuj przyklejone zgłoszenia'; $s_sort_label = 'Sortuj według:'; $s_issue_id = 'Numer zgłoszenia'; $s_recently_visited = 'Niedawno odwiedzone'; $s_priority_abbreviation = 'P'; +$s_note_user_id_label = 'Komentarz od:'; $s_filter_match_type = 'Typ dopasowania'; $s_filter_match_all = 'Wszystkie warunki'; $s_filter_match_any = 'Dowolny warunek'; @@ -854,6 +898,7 @@ $s_last = 'Ostatnie'; $s_start_date_label = 'Data rozpoczęcia:'; $s_end_date_label = 'Data końcowa:'; $s_use_date_filters = 'Używaj filtrów daty'; +$s_use_date_filters_label = 'Za okres:'; $s_yes = 'Tak'; $s_no = 'Nie'; $s_open_filters = 'Zmień filtr'; @@ -900,6 +945,7 @@ $s_update_custom_field_button = 'Aktualizuj pole niestandardowe'; $s_add_existing_custom_field = 'Dodaj to istniejące pole niestandardowe'; $s_edit_custom_field_title = 'Edytuj pole niestandardowe'; $s_custom_field = 'Pole'; +$s_custom_field_label = 'Pole:'; $s_custom_fields_setup = 'Pola niestandardowe'; $s_custom_field_name = 'Nazwa'; $s_custom_field_project_count = 'Liczba projektów'; @@ -922,14 +968,17 @@ $s_custom_field_require_resolved = 'Wymagane przy rozwiązywaniu'; $s_custom_field_require_closed = 'Wymagane przy zamykaniu'; $s_link_custom_field_to_project_title = 'Dołącz pole niestandardowe do projektu'; $s_link_custom_field_to_project_button = 'Dołącz pole ninestandardowe'; +$s_linked_projects_label = 'Powiązane projekty:'; $s_custom_field_sequence = 'Sekwencja'; -$s_custom_field_type_enum_string = '0:Łańcuch znaków,1:Liczba całkowita,2:Liczba zmiennoprzecinkowa,3:Wyliczanie,4:E-mail,5:Zaznaczanie,6:Lista,7:Lista wielokrotnego wyboru,8:Data,9:Jeden z wielu,10:Textarea'; +$s_custom_field_sequence_label = 'Sekwencja'; +$s_custom_field_type_enum_string = '0:Łańcuch znaków,1:Liczba całkowita,2:Liczba zmiennoprzecinkowa,3:Wyliczanie,4:E-mail,5:Zaznaczanie,6:Lista,7:Lista wielokrotnego wyboru,8:Data,9:Jeden z wielu,10:Obszar tekstu'; $s_confirm_used_custom_field_deletion = 'To pole jest obecnie połączone co najmniej z jednym projektem. Jeżeli je usuniesz, wszystkie wartości zostaną skasowane. Nie będzie też możliwe odzyskanie danych. Jeżeli nie chcesz usunąć tego pola, kliknij Wstecz w przeglądarce. kliknij przycisk poniżej aby kontynuwać'; $s_confirm_custom_field_deletion = 'Czy na pewno chcesz usunąć pole niestandardowe i wszystkie powiązane z nim wartości?'; $s_field_delete_button = 'Usuń pole'; $s_confirm_custom_field_unlinking = 'Czy na pewno chcesz rozłączyć to niestandardowe pole z projektu? Wartości zostaną usunięte, tak długo aż niestandardowe pole jest nie usunięte.'; $s_field_remove_button = 'Usuń pole'; $s_hide_status = 'Ukryj status'; +$s_hide_status_label = 'Ukryj status:'; $s_filter_closed = 'Zamknięte'; $s_filter_resolved = 'Rozwiązane'; $s_hide_closed = 'Ukryj Zamknięte'; @@ -938,8 +987,10 @@ $s_and_above = 'i wyższe'; $s_advanced_filters = 'Zaawansowane filtry'; $s_simple_filters = 'Proste filtry'; $s_monitored_by = 'Obserwowane przez'; +$s_monitored_by_label = 'Obserwowane przez:'; $s_attachments = 'ZAŁĄCZNIKI'; $s_bytes = 'bajtów'; +$s_kb = 'KB'; $s_attachment_missing = 'Brak załącznika'; $s_attachment_count = 'Liczba załączników'; $s_view_attachments_for_issue = 'Pokaż %1$d załączników dla zgłoszenia nr %2$d'; diff --git a/lang/strings_portuguese_brazil.txt b/lang/strings_portuguese_brazil.txt index d52d4fadcc..d4dade7a75 100644 --- a/lang/strings_portuguese_brazil.txt +++ b/lang/strings_portuguese_brazil.txt @@ -50,6 +50,7 @@ * @author Pedroca cerebral * @author TheGabrielZaum * @author Tuliouel + * @author Walesson * @author 555 */ @@ -481,18 +482,26 @@ $s_bugnote_updated_msg = 'A anotação foi atualizada com sucesso...'; $s_last_edited = 'Última edição:'; $s_hide_content = 'Ocultar Conteúdo'; $s_show_content = 'Mostrar Conteúdo'; +$s_webmaster_contact_information = 'Contato administrator para assistência'; $s_total_queries_executed = 'Total de %1$d consultas executadas.'; $s_unique_queries_executed = '%1$d consultas únicas executadas.'; -$s_memory_usage_in_kb = 'uso de memória: %1$s KB'; +$s_total_query_execution_time = 'Tempo de execução de consulta Total:%1$s segundos'; +$s_page_execution_time = 'Tempo de execução da página:%1$s segundos'; +$s_memory_usage_in_kb = 'O uso de memória:%1$s KiB'; $s_log_page_number = 'Número'; $s_log_page_time = 'Tempo de execução'; +$s_log_page_caller = 'Caller'; $s_log_page_event = 'Evento'; $s_please_report = 'Por favor, reporte isto ao %1$s.'; $s_click_to_login = 'Autenticar-se'; $s_warning_plain_password_authentication = 'AVISO: É utilizada a autenticação plena de senha, isto pode expor suas senhas aos administradores.'; $s_warning_default_administrator_account_present = 'AVISO: Você deve desabilitar a conta padrão \'administrador\' ou alterar sua senha.'; $s_warning_admin_directory_present = 'AVISO: Diretório Admin deve ser removido.'; -$s_error_database_no_schema_version = 'ERRO: A estrutura da base de dados parece estar desatualizada (config(databaseversion) esta em 0 e não existem tabelas de antigas atualizações). Por favor verifique se a sua base de dados está rodando - não conseguimos obter a versão do schema da base de dados. A Tabela de Configuração não retornou uma versão do schema da base de dados válida - por favor, solicite suporte na lista de e-mails mantis-help caso seja necessário.'; +$s_warning_change_setting = 'Aviso: "%1$s" não está definido para o valor padrão (%2$s).'; +$s_warning_security_hazard = 'Este é um risco de segurança em potencial, pois ele pode expor informações confidenciais.'; +$s_warning_integrity_hazard = 'Isto fará com que MantisBT para continuar quando ocorre erros e pode levar a problemas de integridade de sistema/dados.'; +$s_warning_debug_email = 'Aviso: "debug_email" não está definido para OFF, todos os e-mails de notificação será enviada para "%1$s".'; +$s_error_database_no_schema_version = 'Error: A estrutura do banco de dados parece estar desatualizado (config(databaseversion) is 0) ou corrompido. Por favor verifique se o seu banco de dados está sendo executado - não podemos recuperar a versão do esquema do banco de dados. Tabela de configuração não retornou uma versão do esquema do banco de dados válida - por favor, pedir apoio na lista de discussão mantis-ajuda, se necessário.'; $s_error_database_version_out_of_date_2 = 'AVISO: A estrutura da base de dados pode estar desatualizada. Por favor atualize aqui antes de entrar.'; $s_error_code_version_out_of_date = 'AVISO: A estrutura da base de dados está mais atualizada que o código instalado. Por favor atualize o código.'; $s_login_page_info = 'Bem-vindo ao Gerenciador de Casos.'; @@ -547,6 +556,7 @@ $s_manage_config_link = 'Gerenciar Configuração'; $s_manage_threshold_config = 'Limiares do Fluxo de Trabalho'; $s_manage_email_config = 'Notificações por E-Mail'; $s_manage_workflow_config = 'Transições de Fluxo de Trabalho'; +$s_manage_workflow_graph = 'Gráfico fluxo de trabalho'; $s_manage_tags_link = 'Gerenciar Marcadores'; $s_create_new_account_link = 'Criar nova conta'; $s_projects_link = 'Projetos'; @@ -562,6 +572,7 @@ $s_date_created = 'Data de Criação'; $s_last_visit = 'Última Visita'; $s_last_visit_label = 'Última Visita:'; $s_edit_user_link = 'Alterar Usuário'; +$s_separate_list_items_by = '(itens de lista separadas por "%1$s")'; $s_config_all_projects = 'Nota: Estas configurações afetam TODOS OS PROJETOS.'; $s_config_project = 'Nota: Estas configurações afetam apenas o projeto %1$s.'; $s_colour_coding = 'Na tabela abaixo, o seguinte código de cores se aplica:'; @@ -608,6 +619,7 @@ $s_edit_others_bugnotes = 'Editar notas dos outros'; $s_edit_own_bugnotes = 'Editar as próprias notas'; $s_delete_others_bugnotes = 'Apagar notas dos outros'; $s_delete_own_bugnotes = 'Apagar as próprias notas'; +$s_change_view_state_own_bugnotes = 'Mudança de estado vista próprias notas'; $s_limit_access = 'Limitar o acesso dos relatores aos seus próprios casos'; $s_submit_status = 'Status para o qual novos casos são ajustados'; $s_assigned_status = 'Status para o qual casos auto-atribuídos são ajustados'; @@ -656,6 +668,7 @@ $s_delete_category_button = 'Apagar Categoria'; $s_edit_project_category_title = 'Alterar Categoria do Projeto'; $s_update_category_button = 'Atualizar Categoria'; $s_category_updated_msg = 'A categoria foi atualizada com sucesso...'; +$s_create_first_project = 'Crie um projeto para ser capaz de registro de problemas.'; $s_add_subproject_title = 'Adicionar subprojeto'; $s_project_deleted_msg = 'O projeto foi removido com sucesso...'; $s_project_delete_msg = 'Você tem certeza que deseja apagar este projeto e todos os relatos de casos anexados?'; @@ -674,6 +687,7 @@ $s_copy_to = 'Copiar Para'; $s_categories_and_version_title = 'Categorias e Versões'; $s_categories = 'Categorias'; $s_add_category_button = 'Adicionar Categoria'; +$s_add_and_edit_category_button = 'Adicionar e editar Categoria'; $s_versions = 'Versões'; $s_add_version_button = 'Adicionar Versão'; $s_add_and_edit_version_button = 'Adicionar e Alterar Versão'; @@ -819,10 +833,10 @@ $s_selected_project = 'Projeto selecionado'; $s_valid_project_msg = 'Você deve escolher um projeto válido'; $s_signup_done_title = 'Registro de conta processado'; $s_password_emailed_msg = 'Parabéns. Você registrou com sucesso. Um e-mail de confirmação lhe está sendo enviado agora para verificar seu endereço de e-mail. Ao visitar o link enviado a você neste e-mail irá ativar sua conta.'; -$s_no_reponse_msg = 'Você terá sete dias para completar o processo de confirmação de conta; se você falhar em completar a confirmação de conta dentro de sete dias, esta conta recém-registrada poderá ser apagada.'; +$s_no_reponse_msg = 'Você tem sete dias para completar o processo de confirmação de conta; se você deixar de fazê-lo dentro deste período, a conta recém-registrada poderá ser purgado.'; $s_signup_captcha_request_label = 'Digite o código como mostrado no quadro à direita:'; $s_signup_captcha_refresh = 'Gerar um novo código'; -$s_signup_info = 'Ao completar este formulário e verificar suas respostas, um e-mail de confirmação lhe será enviado para o endereço de e-mail que você especificou.
Usando o e-mail de confirmação, você será capaz de ativar sua conta. Se você falhar em ativar sua conta dentro de sete dias, ela será apagada.
Você deve especificar um endereço de e-mail válido para poder receber o e-mail de confirmação de conta.'; +$s_signup_info = 'Após a conclusão deste formulário e verificar suas respostas, você será enviada uma mensagem de confirmação para o endereço de e-mail que você especificou.
Usando o link fornecido no e-mail, você será capaz de ativar sua conta. Se você deixar de fazê-lo no prazo de sete dias, pode ser purgado.
Você deve especificar um endereço de e-mail válido, a fim de receber a confirmação de conta de e-mail.'; $s_signup_title = 'Criar Conta'; $s_signup_button = 'Criar Conta'; $s_no_password_request = 'Sua senha é gerenciada por outro sistema. Por favor, contate o administrador de sistemas.'; @@ -879,6 +893,7 @@ $s_issue_id = 'Caso #'; $s_recently_visited = 'Recentemente Visitado'; $s_note_user_id_label = 'Nota Por:'; $s_filter_match_type = 'Tipo de correspondência'; +$s_filter_match_type_label = 'Tipo de correspondência:'; $s_filter_match_all = 'Todas as condições'; $s_filter_match_any = 'Qualquer Condição'; $s_none = 'nenhum'; @@ -1001,8 +1016,11 @@ $s_sponsorship_more_info = 'Mais informações sobre o patrocínio'; $s_sponsorship_total = 'Total Patrocinado'; $s_changelog = 'Registro de Mudanças'; $s_changelog_empty = 'Não há informações disponíveis sobre registros de mudanças'; +$s_changelog_empty_manager = 'Nenhuma informação Change Log disponível. Questões estão incluídas uma vez que os projetos têm versões e problemas são resolvidos com o conjunto "corrigido na versão".'; $s_roadmap = 'Planejamento'; $s_resolved_progress = '%1$d de %2$d caso(s) resolvidos. Progresso (%3$d%%).'; +$s_roadmap_empty = 'Nenhuma informação disponível Roadmap'; +$s_roadmap_empty_manager = 'Nenhuma informação Roteiro disponível. Questões estão incluídas uma vez que os projetos têm versões e questões têm "versão de destino" set.'; $s_http_auth_realm = 'Login do MantisBT'; $s_bug = 'caso'; $s_bugs = 'casos'; diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index c0360ec1bf..aeccc2ee2d 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -57,6 +57,7 @@ $s_actiongroup_menu_update_target_version = 'De Ziilversion ändere'; $s_actiongroup_menu_update_fixed_in_version = 'De Version ändere, woh et mit jedonn sin sull'; $s_actiongroup_menu_update_product_build = 'Bräng, op der neuste Shtand, wann dat Produk et läz als e Projramm jebout wood'; $s_actiongroup_menu_add_note = 'En Notiz dobei donn'; +$s_actiongroup_menu_attach_tags = 'Donn Mekkehronge verjävve'; $s_actiongroup_bugs = 'De ußjesöhk Aanjelääjeheite'; $s_actiongroup_error_issue_is_readonly = 'He di Aanjelääjeheit kanns De bloß lässe.'; $s_all_projects = 'All Projäkte'; @@ -74,6 +75,8 @@ $s_private_project_msg = 'Dat Projäk es $s_access_level_project = 'Et Zohjangsnivoh för dat Projäk'; $s_view_submitted_bug_link = 'Zeisch de ennjedraare Aanjelääjeheit %1$s'; $s_assigned_projects = 'Zohjedeijlte Projäkte'; +$s_assigned_projects_label = 'Zohjedeijlte Projakte'; +$s_unassigned_projects_label = 'Nit zohjedeijlte Projakte'; $s_print = 'Dröcke'; $s_jump = 'Jangk noh de Aanjelääjeheit'; $s_copy_users = 'Metmaacher kopeere'; @@ -99,6 +102,7 @@ $s_bugnote_link_title = 'Diräkte Lengk op di Notiz'; $s_delete_bugnote_button = 'Notiz fottschmiiße'; $s_delete_bugnote_sure_msg = 'Wells De heh di Notiz verhaftesh fott schmiiße?'; $s_bug_relationships = 'Bezöch'; +$s_bug_relationships_label = 'Bezösch'; $s_empty_password_sure_msg = 'En dämm Metmaacher singem Paßwoot shteiht nix dren. Trotzdämm wigger maache?'; $s_empty_password_button = 'Dat Paßwoot sull keine Enhallt han, leddisch sinn, nix dren'; $s_reauthenticate_title = 'Enlogge'; @@ -256,12 +260,17 @@ $s_manage_profiles_link = 'Profihle'; $s_change_preferences_link = 'Enshtellunge ändere'; $s_edit_account_title = 'Zohjang ändere'; $s_username = 'Metmaacher_Nahme'; +$s_username_label = 'Metmaacher_Nahme'; $s_realname = 'Dinge reeschtijje Nahme'; +$s_realname_label = 'Der „reeschteje“ Nahme'; $s_email = 'Adräß för de e-mail'; +$s_email_label = 'De e-mail'; $s_password = 'Et Paßwoot'; $s_no_password_change = 'Dat Paßwoot weet op ene andere Süßteem jehallde, un dröm kam_mer dat hee nit ändere.'; $s_confirm_password = 'Noch ens dat Paßwoot'; +$s_current_password = 'Ed aktoälle Paßwoot'; $s_access_level = 'Et Nivoh vum Zohjang'; +$s_access_level_label = 'Et Nivoh vum Zohjang'; $s_update_user_button = 'Däm Metmaacher sing Daate op der neuste Shtand bränge'; $s_verify_warning = 'De Daate för der Zohjang sen jäz beshtäätesch. De Nohreesch zum Beshtääteje, di De krääje häs, es jäz övverhollt un jelt nit mieh.'; $s_verify_change_password = 'Mer moß heh e Paßwoot faßlääje, öm wider enlogge ze künne.'; @@ -346,8 +355,12 @@ $s_monitor_bug_button = 'Drobb oppaßße!'; $s_unmonitor_bug_button = 'Nimmih drobb oppaßße!'; $s_file_upload_msg = 'Di Dattei es huhjelahde.'; $s_upload_file = 'Dattei huhlaade'; +$s_upload_files = 'Datteije huhlahde'; $s_select_file = 'Dattei ußwähle'; +$s_select_files = 'Datteije ußwähle'; $s_upload_file_button = 'Lohß Jonn!'; +$s_upload_files_button = 'Datteihje huhlahde'; +$s_max_file_size_label = 'De hühßte Jrühße:'; $s_bug_reopened_msg = 'De Aanjelääjeheit es widder opjemaat …'; $s_reopen_add_bugnote_title = 'Donn en Notiz dobei mem Jrond för et wider neu Opmaache.'; $s_bugnote_add_reopen_button = 'Donn en Notiz dobi un maach di Aanjelääjeheit wider op'; @@ -360,35 +373,55 @@ $s_from = 'Vun'; $s_to = 'Aan'; $s_sent_you_this_reminder_about = 'hät Der heh di Ä\'ennerong jescheck övver'; $s_bug_reminder = 'Donn en Ä\'ennerong schecke'; -$s_reminder_sent_to = 'En Ä\'ennerong wood jescheck aan:'; +$s_reminder_sent_to = 'En Ä\'ennerong wood jescheck aan'; +$s_reminder_sent_none = 'Kein Ä\'enneronge kunnte jescheck wähde'; $s_bug_send_button = 'Loßschecke'; $s_reminder = 'Ä\'ennerong'; +$s_id = 'Kännong'; $s_category = 'Saachjropp'; +$s_category_label = 'Saachjropp:'; $s_severity = 'Jeweesch'; +$s_severity_label = 'Jeweesch:'; +$s_reproducibility = 'Widerhollbaakeijt'; $s_date_submitted = 'Övvermeddelungsdattum'; $s_last_update = 'Zoläz jeändert'; $s_reporter = 'Jemeldt vum'; +$s_reporter_label = 'Jemälldt vum:'; $s_assigned_to = 'Zohjedeilt aan'; +$s_assigned_to_label = 'Zohjedeijlt aan:'; $s_priority = 'Vörrang'; +$s_priority_label = 'Weschteschkeit:'; $s_resolution = 'Lösung'; +$s_resolution_label = 'Löhsong;'; $s_status = 'Stattus'; +$s_status_label = 'Zohschtand:'; $s_duplicate_id = 'Dubbelte Kännong'; $s_os = 'Bedrievßsystem'; +$s_os_label = 'Bedrihvssüßtehm:'; $s_os_version = 'Väsjohn vum Bedrievßsystem'; +$s_os_version_label = 'Dem Bedrihvssüßtehm sing Väsjohn:'; $s_eta = 'Opwand'; $s_product_version = 'De Väsjohn vum Produk'; +$s_product_version_label = 'De Väsjohn vum Produk:'; +$s_build = 'Jeboud'; $s_fixed_in_version = 'Jedonn en dä Väsjohn'; +$s_fixed_in_version_label = 'Jedonn en dä Väsjohn:'; $s_target_version = 'Jeplaant för de Väsjohn'; +$s_target_version_label = 'Jeplaant för de Väsjohn:'; $s_votes = 'Schtemme'; $s_summary = 'Zosammefaßong'; +$s_description = 'Beschrevve'; +$s_steps_to_reproduce = 'Schredde för et Nohvollträke'; $s_update_information_button = 'Lohß Jonn!'; $s_profile = 'Profihl'; +$s_profile_label = 'Profihl:'; $s_updating_bug_simple_title = 'Aanjahbe övver di Aanjelääjheit obb ene neue Schtand bränge'; $s_view_revisions = 'Väsjohne aankike'; +$s_view_num_revisions = '%1$d Beärbeijdonge aazeije'; $s_revision = 'Väsjohn'; $s_revision_by = 'vum %2$s aam %1$s'; $s_revision_drop = 'Falle lohße'; -$s_bug_revision_dropped_history = 'Di Version vun däm bug es fott.'; +$s_bug_revision_dropped_history = 'Di Version vun dä saach es fott.'; $s_bugnote_revision_dropped_history = 'Di Version vun dä Notiz es fott.'; $s_all_revisions = 'All Versione'; $s_back_to_issue = 'Retuhr noh dä Aanjelääjeheit'; @@ -405,14 +438,22 @@ $s_add_bugnote_button = 'Notiz dobei donn'; $s_bugnote_edit_link = 'Ändere'; $s_closed_bug_button = 'Di Aanjelääjeheit zohmaache'; $s_bugnote_updated_msg = 'Di Notiz es jeändert.'; +$s_last_edited = 'De läzde Änderong'; $s_hide_content = 'Don der Enhalld verschteische'; $s_show_content = 'Don der Enhalld aanzeije'; -$s_total_queries_executed = '%1$d Froore ensjesamp beärbeid.'; -$s_unique_queries_executed = '%1$d ongerscheidlijje Froore beärbeid.'; -$s_memory_usage_in_kb = 'Speischer jebruch: %1$s KB'; +$s_total_queries_executed = 'Froore ensjesamp beärbeid: %1$d'; +$s_unique_queries_executed = 'Ongerscheidlijje Froore beärbeid: %1$d'; +$s_memory_usage_in_kb = 'Schpeijscher jebruch: %1$s KiB'; +$s_log_page_number = 'Nommer'; +$s_log_page_time = 'Loufzigg'; +$s_log_page_caller = 'Oprohfer'; $s_please_report = 'bes esu jood un donn dat aan de %1$s wigger jävve.'; $s_click_to_login = 'Enlogge'; $s_warning_plain_password_authentication = 'Opjepaß: Do bruchs e Paßwoot em Klohtäx, doh künne ävver de verantwootlesche Administratoore Ding Passwoot lässe.'; +$s_warning_default_administrator_account_present = 'Opjepaß: De sullts dä schandatmähßejje Zohjang för ene Verwallder affschallde udder dämm sing Paßwoot veränndere.'; +$s_warning_admin_directory_present = 'Opjepaß: Däm Verwallder sing Verzeijschneß sullt fött jedonn wähde.'; +$s_warning_change_setting = 'Opjepaß: "%1$s" es nidd op der Schtandattwäät %2$s jesaz.'; +$s_warning_security_hazard = 'Dat bedroht de Seescherheit, weijl et Ennfommazjuhne offe lähje kann.'; $s_login_title = 'Enlogge'; $s_choose_project = 'Projäk ußwähle'; $s_login_button = 'Enlogge'; @@ -434,7 +475,9 @@ $s_created_user_part2 = 'met däm Rääsch för der Zohjreff op däm Nivoh'; $s_create_new_account_title = 'Ene neue Zohjang för ene Metmaacher aanlääje'; $s_verify_password = 'Dat Paßwoot prööfe'; $s_enabled = 'Enjeschalldt'; +$s_enabled_label = 'Aanjeschalldt'; $s_protected = 'Jeschöz jääje et Ändere'; +$s_protected_label = 'Jeschöz'; $s_create_user_button = 'Ene Metmaacher aanlääje'; $s_hide_disabled = 'afjeschalldte nit aanzeije'; $s_filter_button = 'Donn da Fellter bruche'; @@ -443,17 +486,23 @@ $s_create_short_link = 'Ene koote Lenk aanlääje'; $s_filter_permalink = 'He kütt ene Permalengk op de Felltere, di em Momang enjereschdt sin:'; $s_manage_users_link = 'Metmaachere verwallde'; $s_manage_projects_link = 'Projäkte verwallde'; +$s_manage_plugin_link = 'Zohsazprojramme verwallde'; +$s_permissions_summary_report = 'Övverblegg övver de Rääschde'; +$s_manage_config_link = 'De Enschtällonge verwallde'; +$s_manage_tags_link = 'Makehronge verwallde'; $s_create_new_account_link = 'Donn ene neue Zohjang för ene Metmaacher aanlääje'; $s_projects_link = 'Projäkte'; $s_documentation_link = 'Dokkemäntazjuhn'; $s_new_accounts_title = 'Neu Zohjäng'; $s_1_week_title = '1 Woch'; $s_never_logged_in_title = 'Noch nie enjelogg'; +$s_hide_inactive = 'Donn verschteische wäh nix deihjt.'; $s_show_disabled = 'Donn aanzeije, wä afjeschalld es.'; $s_manage_accounts_title = 'Zohjäng verwallde'; $s_p = 'Jeschöz'; $s_date_created = 'Aanjelaat aam'; $s_last_visit = 'Der läzde Besohch'; +$s_last_visit_label = 'Der läzde Besohch'; $s_edit_user_link = 'Ene Zohjang ändere'; $s_change_configuration = 'Enschtällonge op der neuste Schtand bränge'; $s_message = 'Nohreesch'; @@ -627,7 +676,7 @@ $s_custom_field_require_update = 'Nühdesch beim Ändere'; $s_custom_field_require_resolved = 'Nühdesch beim Fähdeschmaache'; $s_custom_field_require_closed = 'Nühdesch beim Zohmaache'; $s_custom_field_sequence = 'Reijefollsch'; -$s_custom_field_type_enum_string = '0:Zeijschekett,1:Zahl,2:Kommazahl,3:Opzällung,4:e-mail,5:Käßje met Höhksche,6:Leß,7:Leß un mieh wie ein Ußwahl,8:Dattum,9:Ein Ußwahl uß diverse,10:Textarea'; +$s_custom_field_type_enum_string = '0:Zeijschekät,1:Zahl,2:Kommazahl,3:Opzällong,4:e-mail,5:Käßje met Höhksche,6:Leß,7:Leß met mih wi eijn Ußwahl,8:Dattom,9:Ein Ußwahl uß diverse,10:Täx'; $s_confirm_used_custom_field_deletion = 'Dat Feld es em Momang en winnischßdens einem Projäk em Jebruch. Wann De wigger jeihß, dann wääde all de Wääte för dat Feld fottjeschmeße, un De kanns se och nit widder zeröck holle. Wann De dat Feld jäz nit fottschmiiße wellß, donn dä Knopp „Retuur“ en Dingem Brauser nämme. Sönß, öm wigger ze jon, sonn op dä Knopp hee dronger klecke.'; $s_confirm_custom_field_deletion = 'Bes De sescher, dat De dat selvs-aanjelaate Feld un all de Wääte, di doför en de Datebangk sin, fott schmiiße wells?'; $s_field_delete_button = 'Feld fottschmiiße'; @@ -754,8 +803,8 @@ $s_development_team = 'Dä Entweckler-Schmolz'; $s_manage_columns_config = 'Shpallde verwallde'; $s_all_columns_title = 'All de Shpallde, di mer han'; $s_csv_columns_title = 'CSV Shpallde'; -$s_view_issues_columns_title = 'Shpallde för wann mer en Saach aanzezeije'; -$s_print_issues_columns_title = 'Shpallde för zom Dröcke'; +$s_view_issues_columns_title = 'Schpallde för wann mer en Saach aanzeije'; +$s_print_issues_columns_title = 'Donn Schpallde med Aanjelähjeheijte dröcke'; $s_excel_columns_title = 'Excel Shpallde'; $s_update_columns_as_global_default = 'De Enshtällung fun de Shpallde als alljemeine Shtandat för all de Projäkte säze'; $s_update_columns_for_current_project = 'De Enshtällunge för de Shpallde för hee dat Projäk säze'; @@ -801,7 +850,7 @@ $MANTIS_ERROR[ERROR_CONFIG_OPT_NOT_FOUND] = 'De Ennshtällung „%1$s“ wohdt n $MANTIS_ERROR[ERROR_CONFIG_OPT_CANT_BE_SET_IN_DB] = 'De Ennshtällung „%1$s“ kam_mer nit en de Daatebangk säze. Dat moß en dä Dattei config_inc.php dren jemaat wääde.'; $MANTIS_ERROR[ERROR_LANG_STRING_NOT_FOUND] = 'De Zeijshereih „%1$s“ woodt nit jefonge.'; $MANTIS_ERROR[ERROR_BUGNOTE_NOT_FOUND] = 'Notiz nit jefonge'; -$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Dat Projäk „%1$d“ kunnt mer nit fenge.'; +$MANTIS_ERROR[ERROR_PROJECT_NOT_FOUND] = 'Dat Projäk „%1$d“ kunnte mer nit fenge.'; $MANTIS_ERROR[ERROR_DB_FIELD_NOT_FOUND] = 'E Feld „%1$s“ en de Daatebangk ham_mer nit jefonge.'; $MANTIS_ERROR[ERROR_HANDLER_ACCESS_TOO_LOW] = 'Wä et maache mööt es ävver nit berääschtesh, öm di Aanjelääjeheit met däm Shtattus ze beärbeide.'; $MANTIS_ERROR[ERROR_PROJECT_NAME_NOT_UNIQUE] = 'E Projäk met däm Name jit et ald. Jangk retuur un jif ene andere Name aan.'; @@ -873,7 +922,7 @@ $MANTIS_ERROR[ERROR_LOST_PASSWORD_CONFIRM_HASH_INVALID] = 'Dä URL< $MANTIS_ERROR[ERROR_LOST_PASSWORD_MAX_IN_PROGRESS_ATTEMPTS_REACHED] = 'De jrühßte zohjelohße Aanzahl unjedonne Aanfroore es jez ungerwähß. Bes esu joht un donn med enem Administrator Kuntak opnämme.'; $MANTIS_ERROR[ERROR_PROJECT_RECURSIVE_HIERARCHY] = '!FUZZY!!Dat wööd ene Krengel en dä subprojecte ier hierarchy erenn bränge.'; $MANTIS_ERROR[ERROR_PAGE_REDIRECTION] = 'Ene Fähler mem Ömleide es opjetrodde. Donn drop aachte, dat kein Zwescheräum ußerhallef vun däm PHP-Projramm_Block (<?php ?>) en dä Datteije config_inc.php udder custom_*.php es.'; -$MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Dat Zohsazprojramm es ald enshtalleet.'; +$MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Dat Zohsazprojramm „%1$d“ es ald enshhtalleht.'; $MANTIS_ERROR[ERROR_COLUMNS_DUPLICATE] = 'En däm Feld "%1$s" es en Shpallde dubbelt dren: "%2$s"'; $MANTIS_ERROR[ERROR_COLUMNS_INVALID] = 'En däm Feld "%1$s" es en onjöltesch Feld "%2$s" dren.'; $MANTIS_ERROR[ERROR_SESSION_NOT_VALID] = 'Ding Setzung es opjehovve woode'; diff --git a/lang/strings_spanish.txt b/lang/strings_spanish.txt index 51239bfaea..0ec9d1f097 100644 --- a/lang/strings_spanish.txt +++ b/lang/strings_spanish.txt @@ -608,7 +608,7 @@ $s_access_change = 'Nivel de Acceso Mínimo para cambiar a ese Estado'; $s_desc_bug_submit_status = 'Estado en el que se establece una Nueva Incidencia'; $s_desc_bug_reopen_status = 'Estado en el que se establecen Incidencias Reabiertas'; $s_desc_bug_resolved_status_threshold = 'Estado en el que una Incidencia se considera resuelta'; -$s_desc_bug_closed_status_threshold = 'Status donde un asunto es considerado cerrado'; +$s_desc_bug_closed_status_threshold = 'Estado donde un asunto se considera cerrado'; $s_workflow_change_access_label = 'Quién puede cambiar el flujo de trabajo:'; $s_access_change_access_label = 'Quién puede cambiar niveles de acceso:'; $s_default_not_in_flow = 'El Estado por defecto de %1$s no está seleccionado en los siguientes Estados para %2$s. Será ignorado'; diff --git a/lang/strings_swedish.txt b/lang/strings_swedish.txt index b1970bf488..5f16773c33 100644 --- a/lang/strings_swedish.txt +++ b/lang/strings_swedish.txt @@ -1350,3 +1350,4 @@ $MANTIS_ERROR[ERROR_DEPRECATED_SUPERSEDED] = 'Föråldrad funktionalitet: "%1$s" $MANTIS_ERROR[ERROR_DISPLAY_USER_ERROR_INLINE] = 'Varning: Systemet är konfigurerat för att visa fel i MantisBT (E_USER_ERROR) inbäddade. Programkörningen kommer att fortsätta; detta kan leda till problem med system-/dataintegritet.'; $MANTIS_ERROR[ERROR_TYPE_MISMATCH] = 'Datatyper passar inte ihop. Aktivera detaljerade felmeddelanden för ytterligare information.'; $MANTIS_ERROR[ERROR_BUG_CONFLICTING_EDIT] = 'Denna fråga har uppdaterats av en annan användare, återgå till frågan och lämna in dina ändringar igen.'; +$MANTIS_ERROR[ERROR_SPAM_SUSPECTED] = 'Du har nått gränsen för tillåten aktivitet på %d händelser inom de senaste %d sekunderna; din åtgärd har blockerats för att undvika spam. Försök igen senare.'; diff --git a/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt b/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt index 70ae0e70fa..99a194317a 100644 --- a/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt +++ b/plugins/MantisCoreFormatting/lang/strings_chinese_simplified.txt @@ -46,7 +46,7 @@ $s_plugin_format_title = 'MantisBT格式化'; $s_plugin_format_description = '官方文本处理和格式化工具.'; $s_plugin_format_config = '设置'; $s_plugin_format_process_text = '文本处理'; -$s_plugin_format_process_text_warning_notice = '要关闭,除非你真的知道你在做什么。在断开状态跨站点脚本 (XSS) 攻击的可能。'; +$s_plugin_format_process_text_warning_notice = '除非您真的知道您在做什么,否则请不要关闭。在关闭状态下,将可能产生跨站脚本(XSS)攻击。'; $s_plugin_format_process_urls = 'URL 处理'; $s_plugin_format_process_buglinks = 'MantisBT内部链接(问题与问题注释)'; $s_plugin_format_process_buglinks_info = '您将标签Issue配置为“%s”,并将标签Issue Note配置为“%s”'; From 4abd45e32351b9ee552c4222ff20f6ae470e4931 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 14 Oct 2015 18:29:05 +0200 Subject: [PATCH 18/78] Update README * Update URLs * Update Mantis to MantisBT --- lang/README | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lang/README b/lang/README index 7790aafd02..4c4c13e8d0 100644 --- a/lang/README +++ b/lang/README @@ -1,9 +1,9 @@ -All files within this directory should use UTF-8 encoding to allow for Mantis +All files within this directory should use UTF-8 encoding to allow for MantisBT multilingual operation. Translations are performed on translatewiki.net at: -http://translatewiki.net/wiki/Translating:Mantis +https://translatewiki.net/wiki/Translating:MantisBT -If you would like to help Translate Mantis to your native language, a good -place to start is the translatewiki introduction guide located at: -http://translatewiki.net/wiki/Translating:Intro +If you would like to help translate MantisBT to your native language, a good +place to start is the translatewiki.net introduction guide located at: +https://translatewiki.net/wiki/Translating:Intro From 0c19835a05a374598f7035fd8b2b01f18da768da Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 14 Oct 2015 18:32:42 +0200 Subject: [PATCH 19/78] Register Asturian language --- config_defaults_inc.php | 2 ++ lang/{strings_ast.txt => strings_asturian.txt} | 0 2 files changed, 2 insertions(+) rename lang/{strings_ast.txt => strings_asturian.txt} (100%) diff --git a/config_defaults_inc.php b/config_defaults_inc.php index 7438000220..dec32190ba 100644 --- a/config_defaults_inc.php +++ b/config_defaults_inc.php @@ -714,6 +714,7 @@ 'amharic', 'arabic', 'arabicegyptianspoken', + 'asturian', 'belarusian_tarask', 'breton', 'bulgarian', @@ -773,6 +774,7 @@ 'am' => 'amharic', 'ar' => 'arabic', 'arz' => 'arabicegyptianspoken', + 'ast' => 'asturian', 'be-tarask' => 'belarusian_tarask', 'bg' => 'bulgarian', 'br' => 'breton', diff --git a/lang/strings_ast.txt b/lang/strings_asturian.txt similarity index 100% rename from lang/strings_ast.txt rename to lang/strings_asturian.txt From e6873b32ae08985582995e0942c004e157d07d8c Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Wed, 14 Oct 2015 08:51:40 -0700 Subject: [PATCH 20/78] Fix broken issue update page due to custom field In some corner cases, the customer hits invalid query which is trying to set the custom field string to null. This is caused in the following case: - Custom field is visible on update page. - Custom field is not required. - Custom field is of type list. - Custom field doesn't have any value selected. In this case, the new custom field value evaluated to default value provided by bug_update.php page which is null. The fix is to change it to ''. Fixes #20196 --- bug_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bug_update.php b/bug_update.php index 6311da061c..6cb3698894 100644 --- a/bug_update.php +++ b/bug_update.php @@ -297,7 +297,7 @@ trigger_error( ERROR_ACCESS_DENIED, ERROR ); } - $t_new_custom_field_value = gpc_get_custom_field( 'custom_field_' . $t_cf_id, $t_cf_def['type'], null ); + $t_new_custom_field_value = gpc_get_custom_field( 'custom_field_' . $t_cf_id, $t_cf_def['type'], '' ); $t_old_custom_field_value = custom_field_get_value( $t_cf_id, $f_bug_id ); # Validate the value of the field against current validation rules. From 04a027bde93b22983c477764247a10ea5e6ec1da Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Wed, 14 Oct 2015 18:28:56 -0700 Subject: [PATCH 21/78] Support db config for 'default_category_for_moves' Fixes #20197 --- manage_proj_cat_delete.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manage_proj_cat_delete.php b/manage_proj_cat_delete.php index dcc12d003e..fe886d656d 100644 --- a/manage_proj_cat_delete.php +++ b/manage_proj_cat_delete.php @@ -66,10 +66,10 @@ access_ensure_project_level( config_get( 'manage_project_threshold' ), $t_project_id ); # Protect the 'default category for moves' from deletion -$t_default_cat = 'default_category_for_moves'; +$t_default_category_id = config_get( 'default_category_for_moves', /* default */ null, ALL_USERS, ALL_PROJECTS ); $t_query = 'SELECT count(config_id) FROM {config} WHERE config_id = ' . db_param() . ' AND value = ' . db_param(); -$t_default_cat_count = db_result( db_query( $t_query, array( $t_default_cat, $f_category_id ) ) ); -if( $t_default_cat_count > 0 || $f_category_id == config_get_global( $t_default_cat ) ) { +$t_default_cat_count = db_result( db_query( $t_query, array( 'default_category_for_moves', $f_category_id ) ) ); +if( $t_default_cat_count > 0 || $f_category_id == $t_default_category_id ) { trigger_error( ERROR_CATEGORY_CANNOT_DELETE_DEFAULT, ERROR ); } From 3dc068fa6f7093f82dc58ef85e0b7425bc594c88 Mon Sep 17 00:00:00 2001 From: Rafik Robeal Date: Mon, 19 Oct 2015 21:06:52 -0700 Subject: [PATCH 22/78] Fix new filter option label style --- core/filter_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/filter_api.php b/core/filter_api.php index f4e70bedab..d66ee7abb9 100644 --- a/core/filter_api.php +++ b/core/filter_api.php @@ -3431,8 +3431,8 @@ function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_e - - + + > From 6bb27b4a82681a0e3ca2c062736f9e3a9624fad7 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 22 Oct 2015 11:36:08 +0200 Subject: [PATCH 23/78] Localisation updates from https://translatewiki.net. --- lang/strings_dutch.txt | 72 ++++++------ lang/strings_italian.txt | 4 + lang/strings_ripoarisch.txt | 4 +- .../lang/strings_asturian.txt | 53 +++++++++ plugins/MantisGraph/lang/strings_asturian.txt | 109 ++++++++++++++++++ .../XmlImportExport/lang/strings_asturian.txt | 65 +++++++++++ .../XmlImportExport/lang/strings_italian.txt | 1 + 7 files changed, 270 insertions(+), 38 deletions(-) create mode 100644 plugins/MantisCoreFormatting/lang/strings_asturian.txt create mode 100644 plugins/MantisGraph/lang/strings_asturian.txt create mode 100644 plugins/XmlImportExport/lang/strings_asturian.txt diff --git a/lang/strings_dutch.txt b/lang/strings_dutch.txt index 625ec9d094..e8df3d8933 100644 --- a/lang/strings_dutch.txt +++ b/lang/strings_dutch.txt @@ -66,7 +66,7 @@ $s_actiongroup_menu_update_target_version = 'Doelversie bijwerken'; $s_actiongroup_menu_update_fixed_in_version = 'Opgelost in versie bijwerken'; $s_actiongroup_menu_update_product_build = 'Productbuild bijwerken'; $s_actiongroup_menu_add_note = 'Notitie toevoegen'; -$s_actiongroup_menu_attach_tags = 'Tags toevoegen'; +$s_actiongroup_menu_attach_tags = 'Labels toevoegen'; $s_actiongroup_bugs = 'Geselecteerde meldingen'; $s_actiongroup_error_issue_is_readonly = 'Melding is alleen-lezen.'; $s_all_projects = 'Alle projecten'; @@ -209,7 +209,7 @@ $s_resolution_enum_string = '10:open,20:opgelost,30:heropend,40:niet te replicer $s_projection_enum_string = '10:geen,30:tweak,50:eenvoudige oplossing,70:ingewikkelde oplossing,90:herschrijven nodig'; $s_eta_enum_string = '10:geen,20:< 1 dag,30:2-3 dagen,40:< 1 week,50:< 1 maand,60:> 1 maand'; $s_sponsorship_enum_string = '0:Niet betaald,1:Gemaand,2:Betaald'; -$s_new_account_subject = 'Gebruikersregistratie'; +$s_new_account_subject = 'Accountregistratie'; $s_new_account_greeting = 'Bedankt voor het aanmelden. Uw gebruikersnaam is "%1$s". Bezoek de volgende koppeling om uw eigen wachtwoord in te stellen en om uw registratie af te ronden. Zorg ervoor dat de URL op één regel wordt ingevoerd:'; $s_new_account_greeting_admincreated = 'De gebruiker %1$s heeft een gebruiker voor u aangemaakt met de gebruikersnaam "%2$s". Bezoek de volgende koppeling om uw eigen wachtwoord in te stellen en om uw registratie af te ronden. Zorg ervoor dat de URL op één regel wordt ingevoerd:'; $s_new_account_username = 'Gebruikersnaam:'; @@ -217,7 +217,7 @@ $s_new_account_message = 'Als u zich niet hebt aangemeld, dan kunt u dit bericht $s_new_account_do_not_reply = 'Verstuur geen antwoord op dit bericht'; $s_new_account_email = 'E-mailadres:'; $s_new_account_IP = 'IP-adres:'; -$s_new_account_signup_msg = 'De volgende gebruiker is aangemaakt:'; +$s_new_account_signup_msg = 'De volgende account is aangemaakt:'; $s_reset_request_msg = 'Iemand (waarschijnlijk uzelf) heeft een wachtwoordwijziging aangevraagd met e-mailbevestiging. Als u dit niet was, dan kunt u dit bericht negeren. Als u deze wijziging wilt voortzetten, bezoek dan de volgende URL om uw wachtwoord te wijzigen:'; @@ -272,12 +272,12 @@ $s_email_description = 'Beschrijving'; $s_email_additional_information = 'Extra gegevens'; $s_email_steps_to_reproduce = 'Stappen om te reproduceren'; $s_account_protected_msg = 'De gebruiker is beveiligd. De instellingen kunnen niet worden gewijzigd.'; -$s_account_removed_msg = 'Uw gebruiker is verwijderd...'; +$s_account_removed_msg = 'Uw account is verwijderd...'; $s_confirm_delete_msg = 'Weet u zeker dat u uw account wilt verwijderen?'; -$s_delete_account_button = 'Gebruiker verwijderen'; +$s_delete_account_button = 'Account verwijderen'; $s_manage_profiles_link = 'Profielen'; $s_change_preferences_link = 'Voorkeuren'; -$s_edit_account_title = 'Gebruiker bewerken'; +$s_edit_account_title = 'Account bewerken'; $s_username = 'Gebruikersnaam'; $s_username_label = 'Gebruikersnaam'; $s_realname = 'Volledige naam'; @@ -350,7 +350,7 @@ $s_total_paid = 'Totaal betaald'; $s_sponsor_hide = 'Opgelost en betaald verbergen'; $s_sponsor_show = 'Allemaal weergeven'; $s_payment_updated = 'De betalingsgegevens bijgewerkt.'; -$s_account_updated_msg = 'Uw instellen zijn aangepast.'; +$s_account_updated_msg = 'Uw account is aangepast.'; $s_email_updated = 'Het e-mailadres is aangepast.'; $s_realname_duplicated = 'De volledige naam wordt al gebruikt.'; $s_realname_updated = 'De volledige naam is aangepast.'; @@ -504,7 +504,7 @@ $s_secure_session = 'Beveiligde sessie'; $s_secure_session_long = 'Deze sessie alleen geldig laten zijn vanaf dit IP-adres.'; $s_choose_project = 'Project kiezen'; $s_login_button = 'Aanmelden'; -$s_signup_link = 'Nieuwe gebruiker registreren'; +$s_signup_link = 'Nieuwe account registreren'; $s_lost_password_link = 'Wachtwoord vergeten?'; $s_select_project_button = 'Project selecteren'; $s_lost_password_title = 'Wachtwoord opnieuw instellen'; @@ -526,7 +526,7 @@ $s_core_path = 'Corepad'; $s_plugin_path = 'Uitbreidingenpad'; $s_created_user_part1 = 'Gebruiker aangemaakt'; $s_created_user_part2 = 'met een toegangsniveau van'; -$s_create_new_account_title = 'Nieuw gebruiker aanmaken'; +$s_create_new_account_title = 'Nieuw account aanmaken'; $s_verify_password = 'Wachtwoord controleren'; $s_enabled = 'Geactiveerd'; $s_enabled_label = 'Ingeschakeld'; @@ -551,7 +551,7 @@ $s_manage_email_config = 'E-mailmeldingen'; $s_manage_workflow_config = 'Workflowovergangen'; $s_manage_workflow_graph = 'Workflowschema'; $s_manage_tags_link = 'Labels beheren'; -$s_create_new_account_link = 'Gebruiker aanmaken'; +$s_create_new_account_link = 'Account aanmaken'; $s_projects_link = 'Projecten'; $s_documentation_link = 'Documentatie'; $s_new_accounts_title = 'Nieuwe gebruikers'; @@ -715,8 +715,8 @@ $s_not_released = 'Nog niet in release'; $s_scheduled_release = 'Gepland voor release'; $s_obsolete = 'Verouderd'; $s_version_updated_msg = 'De versie is aangepast.'; -$s_account_delete_protected_msg = 'De gebruiker is beschermd. Deze gebruiker kan niet worden verwijderd.'; -$s_account_deleted_msg = 'De gebruiker is verwijderd.'; +$s_account_delete_protected_msg = 'De account is beschermd. Deze account kan niet worden verwijderd.'; +$s_account_deleted_msg = 'De account is verwijderd.'; $s_delete_account_sure_msg = 'Weet u zeker dat u deze gebruiker wilt verwijderen?'; $s_notify_user = 'Gebruiker waarschuwen'; $s_accounts_pruned_msg = 'Alle nooit gebruikte gebruiker ouder dan 1 week zijn verwijderd'; @@ -731,13 +731,13 @@ $s_reset_password_msg2 = 'Instellen van wachtwoord op begininstellingen stelt he $s_show_all_users = 'Alle'; $s_users_unused = 'Ongebruikt'; $s_users_new = 'Nieuw'; -$s_account_reset_protected_msg = 'Deze gebruiker is beschermd. Het wachtwoord kan niet opnieuw worden ingesteld.'; +$s_account_reset_protected_msg = 'Deze account is beschermd. Het wachtwoord kan niet opnieuw worden ingesteld.'; $s_account_reset_msg = 'Er is een bevestigingsbericht verstuurd naar het e-mailadres van gebruiker. Hiermee kan de gebruiker het wachtwoord wijzigen.'; $s_account_reset_msg2 = 'Het wachtwoord voor de gebruiker ingesteld op leeg.'; -$s_account_unlock_msg = 'De gebruiker is ontgrendeld.'; +$s_account_unlock_msg = 'De account is ontgrendeld.'; $s_manage_user_protected_msg = 'Deze gebruiker is beschermd. De velden "Toegangsniveau" en "Ingeschakeld" kunnen niet gewijzigd worden. Eventuele overige velden zijn bijgewerkt.'; -$s_manage_user_updated_msg = 'De gebruiker is bijgewerkt.'; -$s_email_user_updated_subject = 'Gebruiker bijgewerkt'; +$s_manage_user_updated_msg = 'De account is bijgewerkt.'; +$s_email_user_updated_subject = 'Account bijgemaakt'; $s_email_user_updated_msg = 'Uw gebruiker is bijgewerkt door een beheerder. Een lijst van deze wijzigingen vindt u hieronder. U kunt uw gebruikersgegevens en voorkeuren op elk gewenst moment bijwerken via de volgende URL:'; $s_main_link = 'Welkom'; $s_view_bugs_link = 'Meldingen bekijken'; @@ -821,11 +821,11 @@ $s_or_fill_in = 'OF vul in'; $s_assign_to = 'Toewijzen aan'; $s_additional_information = 'Extra gegevens'; $s_submit_report_button = 'Melding toevoegen'; -$s_check_report_more_bugs = 'vink aan om meer meldingen in te voeren'; +$s_check_report_more_bugs = 'selecteer om meer meldingen in te voeren'; $s_report_stay = 'Doorgaan met aanmelden'; $s_selected_project = 'Geselecteerd project'; $s_valid_project_msg = 'U moet een geldig project kiezen'; -$s_signup_done_title = 'Gebruikersregistratie verwerkt.'; +$s_signup_done_title = 'Accountregistratie verwerkt.'; $s_password_emailed_msg = 'Gefeliciteerd. Uw registratie is verwerkt. U ontvangt nu een e-mail om uw e-mailadres te controleren. In dit bericht vindt u instructies om uw gebruiker te activeren.'; $s_no_reponse_msg = 'U hebt zeven dagen om het registratieproces af te ronden. Wanneer u dit niet doet binnen deze periode, kan de nieuwe gebruiker verwijderd worden.'; $s_signup_captcha_request_label = 'Voer de code in zoals deze rechts in beeld weergegeven wordt:'; @@ -1126,26 +1126,26 @@ $s_tag_created = 'Aangemaakt op'; $s_tag_updated = 'Bijgewerkt op'; $s_tag_description = 'Tagbeschrijving'; $s_tag_statistics = 'Statistieken'; -$s_tag_update = 'Tag bijwerken: %1$s'; -$s_tag_update_return = 'Terug naar tag'; -$s_tag_update_button = 'Tag bijwerken'; -$s_tag_delete_button = 'Tag verwijderen'; -$s_tag_delete_message = 'Weet u zeker dat u deze tag wilt verwijderen?'; -$s_tag_existing = 'Bestaande tags'; -$s_tag_none_attached = 'Geen tags toegevoegd.'; +$s_tag_update = 'Label bijwerken: %1$s'; +$s_tag_update_return = 'Terug naar label'; +$s_tag_update_button = 'Label bijwerken'; +$s_tag_delete_button = 'Label verwijderen'; +$s_tag_delete_message = 'Weet u zeker dat u dit label wilt verwijderen?'; +$s_tag_existing = 'Bestaande labels'; +$s_tag_none_attached = 'Geen labels toegevoegd.'; $s_tag_attach = 'Toevoegen'; -$s_tag_attach_long = 'Tags toevoegen'; -$s_tag_attach_failed = 'Het toevoegen van de tag is mislukt.'; +$s_tag_attach_long = 'Labels toevoegen'; +$s_tag_attach_failed = 'Het toevoegen van het label is mislukt.'; $s_tag_detach = '"%1$s" ontkoppelen'; $s_tag_separate_by = '(Scheiden met "%1$s")'; $s_tag_invalid_name = 'Ongeldige tagnaam.'; -$s_tag_create_denied = 'U hebt geen rechten om de tag aan te maken.'; +$s_tag_create_denied = 'U hebt geen rechten om het label aan te maken.'; $s_tag_attach_denied = 'Geen rechten voor het toevoegen van bestanden.'; $s_tag_filter_default = 'Gekoppelde meldingen (%1$s)'; -$s_tag_history_attached = 'Tag toegevoegd'; -$s_tag_history_detached = 'Tag verwijderd'; -$s_tag_history_renamed = 'Tag hernoemd'; -$s_tag_related = 'Gerelateerde tags'; +$s_tag_history_attached = 'Label toegevoegd'; +$s_tag_history_detached = 'Label verwijderd'; +$s_tag_history_renamed = 'Label hernoemd'; +$s_tag_related = 'Gerelateerde labels'; $s_tag_related_issues = 'Gedeelde meldingen (%1$s)'; $s_tag_stats_attached = 'Bijgevoegde meldingen: %1$s'; $s_tag_create = 'Label aanmaken'; @@ -1312,11 +1312,11 @@ $MANTIS_ERROR[ERROR_LOST_PASSWORD_MAX_IN_PROGRESS_ATTEMPTS_REACHED] = 'Het maxim $MANTIS_ERROR[ERROR_PROJECT_RECURSIVE_HIERARCHY] = 'Deze wijziging zou een lus maken in de subprojecthiërarchie.'; $MANTIS_ERROR[ERROR_USER_CHANGE_LAST_ADMIN] = 'U kunt de enige beheerder van het systeem niet verwijderen of andere rechten geven. Om de gewenste handeling uit te voeren, moet u eerst een andere beheerder aanmaken.'; $MANTIS_ERROR[ERROR_PAGE_REDIRECTION] = 'Er is een fout in de paginadoorverwijzing. Zorg ervoor dat er geen spaties buiten het PHP-blok staan (<?php ?>) in config_inc.php of custom_*.php-bestanden.'; -$MANTIS_ERROR[ERROR_TAG_NOT_FOUND] = 'Er is geen tag met die naam.'; -$MANTIS_ERROR[ERROR_TAG_DUPLICATE] = 'Er bestaat al een tag met die naam.'; +$MANTIS_ERROR[ERROR_TAG_NOT_FOUND] = 'Er is geen label met die naam.'; +$MANTIS_ERROR[ERROR_TAG_DUPLICATE] = 'Er bestaat al een label met die naam.'; $MANTIS_ERROR[ERROR_TAG_NAME_INVALID] = 'Die tagnaam is ongeldig.'; -$MANTIS_ERROR[ERROR_TAG_NOT_ATTACHED] = 'Die tag heeft geen relatie met die melding.'; -$MANTIS_ERROR[ERROR_TAG_ALREADY_ATTACHED] = 'Die tag heeft al een relatie met die melding.'; +$MANTIS_ERROR[ERROR_TAG_NOT_ATTACHED] = 'Dat label heeft geen relatie met die melding.'; +$MANTIS_ERROR[ERROR_TAG_ALREADY_ATTACHED] = 'Dit label heeft al een relatie met die melding.'; $MANTIS_ERROR[ERROR_TOKEN_NOT_FOUND] = 'Het token is niet aangetroffen.'; $MANTIS_ERROR[ERROR_EVENT_UNDECLARED] = 'De gebeurtenis "%1$s" is nog niet aangemaakt.'; $MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'De uitbreiding "%1$s" is niet geregistreerd.'; diff --git a/lang/strings_italian.txt b/lang/strings_italian.txt index 63019badfd..c2875c46a5 100644 --- a/lang/strings_italian.txt +++ b/lang/strings_italian.txt @@ -1246,6 +1246,7 @@ $MANTIS_ERROR[ERROR_FILE_DUPLICATE] = 'Il file è un duplicato. Cancella prima $MANTIS_ERROR[ERROR_FILE_INVALID_UPLOAD_PATH] = 'Percorso di upload non valido. La directory non esiste o non risulta scrivibile dal server web.'; $MANTIS_ERROR[ERROR_FILE_NO_UPLOAD_FAILURE] = 'Non è stato specificato nessun file. Torna indietro e seleziona un file prima di procedere.'; $MANTIS_ERROR[ERROR_FILE_MOVE_FAILED] = 'Non è stato possibile spostare il file caricato nella directory definitiva. La directory non esiste o non è scrivibile dal server web.'; +$MANTIS_ERROR[ERROR_FILE_NOT_FOUND] = 'Allegato con id "%1$d" non trovato.'; $MANTIS_ERROR[ERROR_BUG_DUPLICATE_SELF] = 'Non puoi rendere un\'anomalia duplicata di sè stessa.'; $MANTIS_ERROR[ERROR_BUG_REVISION_NOT_FOUND] = 'Revisione anomalia non trovata'; $MANTIS_ERROR[ERROR_CUSTOM_FIELD_NOT_FOUND] = 'Campo personalizzato non trovato.'; @@ -1254,6 +1255,7 @@ $MANTIS_ERROR[ERROR_CUSTOM_FIELD_IN_USE] = 'Almeno un progetto fa ancora uso di $MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_VALUE] = 'Valore di "%1$s" non valido.'; $MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_DEFINITION] = 'Definizione di campo personalizzato non valida.'; $MANTIS_ERROR[ERROR_CUSTOM_FIELD_INVALID_PROPERTY] = 'Proprietà campo personalizzato non valido (%1$s).'; +$MANTIS_ERROR[ERROR_CUSTOM_FIELD_NOT_LINKED_TO_PROJECT] = 'Campo personalizzato "%1$s" (id %2$s), non collegato all\'attuale progetto attivo.'; $MANTIS_ERROR[ERROR_LDAP_AUTH_FAILED] = 'Autenticazione LDAP fallita.'; $MANTIS_ERROR[ERROR_LDAP_SERVER_CONNECT_FAILED] = 'Connessione al server LDAP fallita.'; $MANTIS_ERROR[ERROR_LDAP_UPDATE_FAILED] = 'Aggiornamento del record LDAP fallito.'; @@ -1262,6 +1264,7 @@ $MANTIS_ERROR[ERROR_LDAP_EXTENSION_NOT_LOADED] = 'Estensione LDAP non caricata.' $MANTIS_ERROR[ERROR_DB_CONNECT_FAILED] = 'Connessione al database fallita. L\'errore ricevuto dal database è #%1$d: %2$s'; $MANTIS_ERROR[ERROR_DB_QUERY_FAILED] = 'Interrogazione database fallita. L\'errore ricevuto dal database è #%1$d: %2$s per la query: %3$s'; $MANTIS_ERROR[ERROR_DB_SELECT_FAILED] = 'Selezione del database fallita. L\'errore ricevuto dal database è #%1$d: %2$s'; +$MANTIS_ERROR[ERROR_DB_IDENTIFIER_TOO_LONG] = 'Identificatore del database "%1$s" troppo lungo. Riduci la dimensione di g_db_table_prefix/suffix'; $MANTIS_ERROR[ERROR_CATEGORY_DUPLICATE] = 'Una categoria con quel nome esiste già.'; $MANTIS_ERROR[ERROR_CATEGORY_NO_ACTION] = 'Non è stata specificata nessuna azione di copia.'; $MANTIS_ERROR[ERROR_CATEGORY_NOT_FOUND] = 'Categoria non trovata.'; @@ -1304,6 +1307,7 @@ $MANTIS_ERROR[ERROR_EVENT_UNDECLARED] = 'L\'evento "%1$s" non è stato ancora di $MANTIS_ERROR[ERROR_PLUGIN_NOT_REGISTERED] = 'Il plugin "%1$s" non registrato.'; $MANTIS_ERROR[ERROR_PLUGIN_ALREADY_INSTALLED] = 'Il plugin "%1$s" è già installato.'; $MANTIS_ERROR[ERROR_PLUGIN_PAGE_NOT_FOUND] = 'La pagina "%2$s" non esiste nel plugin "%1$s".'; +$MANTIS_ERROR[ERROR_PLUGIN_FILE_NOT_FOUND] = 'Il file "%2$s" non esiste nel plugin "%1$s".'; $MANTIS_ERROR[ERROR_PLUGIN_INSTALL_FAILED] = 'Installazione del plugin non riuscita: %1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_UPGRADE_FAILED] = 'Upgrade dello schema del plugin fallito nel blocco #%1$s.'; $MANTIS_ERROR[ERROR_PLUGIN_UPGRADE_NEEDED] = 'Devi aggiornare il plugin "%1$s" prima di poter accedere a questa pagina.'; diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index aeccc2ee2d..5cf6f197d7 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -872,9 +872,9 @@ $MANTIS_ERROR[ERROR_EMAIL_DISPOSABLE] = 'Adräße för e-mail, $MANTIS_ERROR[ERROR_USER_PROFILE_NOT_FOUND] = 'Profihl nit jefonge.'; $MANTIS_ERROR[ERROR_FILE_NOT_ALLOWED] = 'Di Zoot Dattei es för et Huhlaade nit zohjelohße.'; $MANTIS_ERROR[ERROR_FILE_DUPLICATE] = 'Di Dattei es dubbelt. Beß esu joot, un donn di Dattei eetß fottschmiiße.'; -$MANTIS_ERROR[ERROR_FILE_INVALID_UPLOAD_PATH] = 'Dä Pat för de Dattei huhzelaade wohr verkieht. Dat Verzeijschneß fäählt, udder uns Webßööver kunnt nit dren schriive.'; +$MANTIS_ERROR[ERROR_FILE_INVALID_UPLOAD_PATH] = 'Dä Pat för de Dattei huhzelaade wohr verkihrt. Dat Verzeijschneß fäält, udder ons Webßööver kunnt nit dren schriive.'; $MANTIS_ERROR[ERROR_FILE_NO_UPLOAD_FAILURE] = 'Kein Dattei wohd huhjelaade, jangk retuur un söhk en Dattei uß, ih dat De „Huhlaade“ ußwählß.'; -$MANTIS_ERROR[ERROR_FILE_MOVE_FAILED] = 'De huhjelaade Dattei kunnt nit en et Verzeijschneß för se op Duur dren ze shpeijschere jeschovve wääde. Dat Verzeijschneß fäählt, udder uns Webßööver kunnt nit dren schriive.'; +$MANTIS_ERROR[ERROR_FILE_MOVE_FAILED] = 'Di huhjelaade Dattei kunnt nit en et Verzeijschneß för se op Duur dren ze schpeijschere jeschovve wääde. Dat Verzeijschneß fäält, udder ons Wäbßööver kunnt nit dren schrihve.'; $MANTIS_ERROR[ERROR_BUG_DUPLICATE_SELF] = 'Do kanns en Aanjelääjeheit nit als e Dubbel vun sesh sellver enndraare'; $MANTIS_ERROR[ERROR_BUG_REVISION_NOT_FOUND] = 'Dä Shtand vun dä Aanjelääjeheit ham_mer nit jefonge.'; $MANTIS_ERROR[ERROR_CUSTOM_FIELD_NOT_FOUND] = 'Dat selfsjemaate Daate_Feld ham_mer nit jefonge.'; diff --git a/plugins/MantisCoreFormatting/lang/strings_asturian.txt b/plugins/MantisCoreFormatting/lang/strings_asturian.txt new file mode 100644 index 0000000000..1cf3c6a68f --- /dev/null +++ b/plugins/MantisCoreFormatting/lang/strings_asturian.txt @@ -0,0 +1,53 @@ +. + * + * ********************************************************************** + * ** This file contains translations stored in translatewiki.net. ** + * ** See https://translatewiki.net/wiki/Project:About for information ** + * ** on copyright/license for translatewiki.net translations. ** + * ********************************************************************** + * ** ** + * ** DO NOT UPDATE MANUALLY ** + * ** ** + * ** To improve a translation please visit http://translatewiki.net ** + * ** Detailed instructions on how to create or update translations at ** + * ** http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto ** + * ********************************************************************** + */ +/** Asturian (asturianu) + * + * See the qqq 'language' for message documentation incl. usage of parameters + * To improve a translation please visit http://translatewiki.net + * + * @ingroup Language + * @file + * + * @author Xuacu + */ + +$s_plugin_format_title = 'Formatu de MantisBT'; +$s_plugin_format_description = 'Complementu oficial de procesamientu y formatu de testu.'; +$s_plugin_format_config = 'Configuración'; +$s_plugin_format_process_text = 'Procesamientu de testu'; +$s_plugin_format_process_text_warning_notice = 'Nun desactive esto si nun sabe realmente lo que ta faciendo. Nel estáu desactiváu, son posibles los ataques de scripts cruzaos ente sitios web (XSS).'; +$s_plugin_format_process_urls = 'Procesamientu de URL'; +$s_plugin_format_process_buglinks = 'Enllaces internos MantisBT (Incidencies y Notes d\'incidencies)'; +$s_plugin_format_process_buglinks_info = 'La to configuración define la etiqueta Incidencia como "%s" y la etiqueta Nota como "%s"'; +$s_plugin_format_enabled = 'Activáu'; +$s_plugin_format_disabled = 'Desactiváu'; diff --git a/plugins/MantisGraph/lang/strings_asturian.txt b/plugins/MantisGraph/lang/strings_asturian.txt new file mode 100644 index 0000000000..313efdb9d1 --- /dev/null +++ b/plugins/MantisGraph/lang/strings_asturian.txt @@ -0,0 +1,109 @@ +. + * + * ********************************************************************** + * ** This file contains translations stored in translatewiki.net. ** + * ** See https://translatewiki.net/wiki/Project:About for information ** + * ** on copyright/license for translatewiki.net translations. ** + * ********************************************************************** + * ** ** + * ** DO NOT UPDATE MANUALLY ** + * ** ** + * ** To improve a translation please visit http://translatewiki.net ** + * ** Detailed instructions on how to create or update translations at ** + * ** http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto ** + * ********************************************************************** + */ +/** Asturian (asturianu) + * + * See the qqq 'language' for message documentation incl. usage of parameters + * To improve a translation please visit http://translatewiki.net + * + * @ingroup Language + * @file + * + * @author Xuacu + */ + +$s_plugin_graph_title = 'Gráfiques Mantis'; +$s_plugin_graph_description = 'Complementu oficial de gráfiques.'; +$s_plugin_MantisGraph_title = 'Gráfiques Mantis'; +$s_plugin_MantisGraph_menu_advanced_summary = 'Resume avanzáu'; +$s_plugin_MantisGraph_config = 'Configuración'; +$s_plugin_MantisGraph_synthesis_link = 'Síntesis'; +$s_plugin_MantisGraph_status_link = 'Por estáu'; +$s_plugin_MantisGraph_priority_link = 'Por prioridá'; +$s_plugin_MantisGraph_severity_link = 'Por severidá'; +$s_plugin_MantisGraph_category_link = 'Por categoría'; +$s_plugin_MantisGraph_resolution_link = 'Por resolución'; +$s_plugin_MantisGraph_graph_bug_page_link = 'Gráfica'; +$s_plugin_MantisGraph_library = 'Biblioteca de gráfiques a usar'; +$s_plugin_MantisGraph_bundled = 'Integrada'; +$s_plugin_MantisGraph_window_width = 'Anchor de la gráfica (en píxeles)'; +$s_plugin_MantisGraph_bar_aspect = 'Rellación d\'aspeutu de la gráfica de barres (altor/anchor)'; +$s_plugin_MantisGraph_summary_graphs_per_row = 'Gráfiques a amosar per filera na páxina de resume avanzáu'; +$s_plugin_MantisGraph_font = 'Lletra'; +$s_plugin_MantisGraph_jpgraph_path = 'Camín del sistema a la biblioteca JpGraph'; +$s_plugin_MantisGraph_jpgraph_path_default = 'Dexar en blanco pal predetermináu: {mantisroot}/library/jpgraph'; +$s_plugin_MantisGraph_jpgraph_antialias = 'Anti-aliasing de JpGraph'; +$s_plugin_MantisGraph_jpgraph_antialias_info = 'El anti-aliasing ameyora l\'aspeutu visual de ciertes gráfiques a costa del rindimientu (fasta 8x más lentu)'; +$s_plugin_MantisGraph_enabled = 'Activáu'; +$s_plugin_MantisGraph_disabled = 'Desactiváu'; +$s_plugin_MantisGraph_graph_imp_status_title = 'Gráfiques de síntesis por estáu'; +$s_plugin_MantisGraph_graph_imp_priority_title = 'Gráfiques de síntesis por prioridá'; +$s_plugin_MantisGraph_graph_imp_severity_title = 'Gráfiques de síntesis por severidá'; +$s_plugin_MantisGraph_graph_imp_category_title = 'Gráfiques de síntesis por categoría'; +$s_plugin_MantisGraph_graph_imp_resolution_title = 'Gráfiques de síntesis por resolución'; +$s_plugin_MantisGraph_by_status_pct = 'Por porcentaxe d\'estáu'; +$s_plugin_MantisGraph_by_priority_pct = 'Por porcentaxe de prioridá'; +$s_plugin_MantisGraph_by_severity_pct = 'Por porcentaxe de severidá'; +$s_plugin_MantisGraph_by_category_pct = 'Por porcentaxe de categoría'; +$s_plugin_MantisGraph_by_resolution_pct = 'Por porcentaxe de resolución'; +$s_plugin_MantisGraph_by_severity_mix = 'Por severidá y estáu'; +$s_plugin_MantisGraph_by_priority_mix = 'Por prioridá y estáu'; +$s_plugin_MantisGraph_by_resolution_mix = 'Por resolución y estáu'; +$s_plugin_MantisGraph_legend_still_open = 'Inda abiertu'; +$s_plugin_MantisGraph_legend_resolved = 'Resueltu'; +$s_plugin_MantisGraph_legend_assigned = 'Atribuíu'; +$s_plugin_MantisGraph_legend_total = 'Total'; +$s_plugin_MantisGraph_legend_opened = 'Abiertu'; +$s_plugin_MantisGraph_legend_closed = 'Zarráu'; +$s_plugin_MantisGraph_legend_reported = 'Informáu'; +$s_plugin_MantisGraph_cumulative = 'Acumuláu'; +$s_plugin_MantisGraph_not_enough_data = 'Nun hai datos abondo pa crear una gráfica'; +$s_plugin_MantisGraph_period_none = 'Dengún'; +$s_plugin_MantisGraph_period_this_week = 'Esta selmana'; +$s_plugin_MantisGraph_period_last_week = 'Cabera selmana'; +$s_plugin_MantisGraph_period_two_weeks = 'Caberes dos selmanes'; +$s_plugin_MantisGraph_period_this_month = 'Esti mes'; +$s_plugin_MantisGraph_period_last_month = 'Caberu mes'; +$s_plugin_MantisGraph_period_this_quarter = 'Esti trimestre'; +$s_plugin_MantisGraph_period_last_quarter = 'Caberu trimestre'; +$s_plugin_MantisGraph_period_year_to_date = 'Lo que va d\'añu'; +$s_plugin_MantisGraph_period_select = 'Dates arbitraries'; +$s_plugin_MantisGraph_period_last_year = 'Caberu añu'; +$s_plugin_MantisGraph_select = 'Seleiciona'; +$s_plugin_MantisGraph_select_bystatus = 'pol estáu'; +$s_plugin_MantisGraph_select_summbystatus = 'Resume pol estáu'; +$s_plugin_MantisGraph_select_bycat = 'Resume pola categoría'; +$s_plugin_MantisGraph_select_both = 'Resume pol estáu y categoría'; +$s_plugin_MantisGraph_show_as_graph = 'Ver como gráfica'; +$s_plugin_MantisGraph_show_as_table = 'Ver como tabla'; +$s_plugin_MantisGraph_show_graph = 'Ver la gráfica'; +$s_plugin_MantisGraph_graph_page = 'Historial gráficu de la incidencia'; diff --git a/plugins/XmlImportExport/lang/strings_asturian.txt b/plugins/XmlImportExport/lang/strings_asturian.txt new file mode 100644 index 0000000000..2fe4162c70 --- /dev/null +++ b/plugins/XmlImportExport/lang/strings_asturian.txt @@ -0,0 +1,65 @@ +. + * + * ********************************************************************** + * ** This file contains translations stored in translatewiki.net. ** + * ** See https://translatewiki.net/wiki/Project:About for information ** + * ** on copyright/license for translatewiki.net translations. ** + * ********************************************************************** + * ** ** + * ** DO NOT UPDATE MANUALLY ** + * ** ** + * ** To improve a translation please visit http://translatewiki.net ** + * ** Detailed instructions on how to create or update translations at ** + * ** http://www.mantisbt.org/wiki/doku.php/mantisbt:translationshowto ** + * ********************************************************************** + */ +/** Asturian (asturianu) + * + * See the qqq 'language' for message documentation incl. usage of parameters + * To improve a translation please visit http://translatewiki.net + * + * @ingroup Language + * @file + * + * @author Xuacu + */ + +$s_plugin_XmlImportExport_title = 'Importar/Esportar incidencies'; +$s_plugin_XmlImportExport_description = 'Amiesta a MantisBT capacidaes d\'importación y esportación basaes en XML.'; +$s_plugin_XmlImportExport_import = 'Importar incidencies'; +$s_plugin_XmlImportExport_export = 'Esportar XML'; +$s_plugin_XmlImportExport_config_title = 'Configuración de niveles d\'accesu d\'importación/esportación de XML'; +$s_plugin_XmlImportExport_import_threshold = 'Importar incidencies'; +$s_plugin_XmlImportExport_export_threshold = 'Esportar incidencies'; +$s_plugin_XmlImportExport_action_update = 'Anovar'; +$s_plugin_XmlImportExport_importing_in_project = 'Importando les incidencies nel proyeutu:'; +$s_plugin_XmlImportExport_import_options = 'Opciones d\'importación'; +$s_plugin_XmlImportExport_cross_references = 'Referencies cruciaes'; +$s_plugin_XmlImportExport_default_strategy = 'Estratexa de conversión predeterminada:'; +$s_plugin_XmlImportExport_renumber = 'Renumberar'; +$s_plugin_XmlImportExport_renumber_desc = 'Intentar convertir les referencies a la nueva numberación'; +$s_plugin_XmlImportExport_link = 'Enllaz'; +$s_plugin_XmlImportExport_link_desc = 'Convertir nun enllaz al elementu orixinal'; +$s_plugin_XmlImportExport_disable = 'Desactivar'; +$s_plugin_XmlImportExport_disable_desc = 'Desactivar l\'enllaz'; +$s_plugin_XmlImportExport_fallback = 'Estratexa alternativa (cuando nun s\'aplique "Renumberar"):'; +$s_plugin_XmlImportExport_fallback_category = 'Categoría alternativa:'; +$s_plugin_XmlImportExport_keep_same_category = 'Intentar caltener la mesma categoría'; +$s_plugin_XmlImportExport_error_no_xml = 'nun se pudieron alcontrar les estensiones xmlreader y xmlwriter'; diff --git a/plugins/XmlImportExport/lang/strings_italian.txt b/plugins/XmlImportExport/lang/strings_italian.txt index 853c246534..77bcf8e38f 100644 --- a/plugins/XmlImportExport/lang/strings_italian.txt +++ b/plugins/XmlImportExport/lang/strings_italian.txt @@ -46,6 +46,7 @@ $s_plugin_XmlImportExport_title = 'Importa/Esporta anomalie'; $s_plugin_XmlImportExport_description = 'Aggiungi a MantisBT la capacità di Importare e Esportare basata su XML.'; $s_plugin_XmlImportExport_import = 'Importa anomalia'; $s_plugin_XmlImportExport_export = 'Esporta XML'; +$s_plugin_XmlImportExport_config_title = 'Configurazione livelli di accesso importazione/esportazione XML'; $s_plugin_XmlImportExport_import_threshold = 'Importa anomalie'; $s_plugin_XmlImportExport_export_threshold = 'Esporta anomalie'; $s_plugin_XmlImportExport_action_update = 'Aggiorna'; From e7bc61f1b885ce5790a8af01b51ebb9e696301b9 Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Fri, 23 Oct 2015 08:05:36 +0200 Subject: [PATCH 24/78] Fix typos in developers guide Fixes #20214 --- .../en-US/Events_Reference_Account.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Account.xml b/docbook/Developers_Guide/en-US/Events_Reference_Account.xml index cfbbe085ca..4bcca86071 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Account.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Account.xml @@ -1,11 +1,11 @@
User Account Events -
+
Account Preferences -
- EVENT_ACCOUNT_PREFS_UPDATE_FORM (Execute) +
+ EVENT_ACCOUNT_PREF_UPDATE_FORM (Execute)
@@ -26,8 +26,8 @@
-
- EVENT_ACCOUNT_PREFS_UPDATE (Execute) +
+ EVENT_ACCOUNT_PREF_UPDATE (Execute)
From 738272f23900243de35b5f0ce29564274bad3090 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 13:59:41 +0200 Subject: [PATCH 25/78] Don't show MantisGraph link for users without access fixes #0020217 Signed-off-by: Damien Regad --- plugins/MantisGraph/MantisGraph.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/MantisGraph/MantisGraph.php b/plugins/MantisGraph/MantisGraph.php index 992155a438..e5b30a746f 100644 --- a/plugins/MantisGraph/MantisGraph.php +++ b/plugins/MantisGraph/MantisGraph.php @@ -87,8 +87,10 @@ function hooks() { $t_hooks = array( 'EVENT_MENU_SUMMARY' => 'summary_menu', 'EVENT_SUBMENU_SUMMARY' => 'summary_submenu', - 'EVENT_MENU_FILTER' => 'graph_filter_menu', ); + if( access_has_project_level( config_get( 'view_summary_threshold' ) ) ) { + $t_hooks['EVENT_MENU_FILTER'] = 'graph_filter_menu'; + } return $t_hooks; } From b8dcb52a32af0d0c8eda59afb42216c4965662c7 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 22:19:17 +0200 Subject: [PATCH 26/78] print_enum_string_option_list() accepts array of values This function was originally defined to accept an integer as current value for the option list, so it gets defaulted. However, some places (e.g. filter fields) were calling the function with this parameter set as an array of one integer (or more, for multiselection option lists). Changed parameter to accept array, since the check_selected() function already accepts an array of values to check. Adding a check for the case $p_val is a single value to cast it to an int, because check_select() should be called in strict mode for enum keys anyways, and some callers may still pass a number as string. In the case of "array of int", the caller must ensure values are proper int type. Fixes #19978 Reworded original commit message. Signed-off-by: Damien Regad --- core/print_api.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/core/print_api.php b/core/print_api.php index b094da041b..ae00a02954 100644 --- a/core/print_api.php +++ b/core/print_api.php @@ -915,21 +915,28 @@ function print_build_option_list( $p_build = '' ) { /** * select the proper enumeration values based on the input parameter + * Current value may be an integer, or an array of integers. * @param string $p_enum_name Name of enumeration (eg: status). - * @param integer $p_val The current value. + * @param integer|array $p_val The current value(s) * @return void */ function print_enum_string_option_list( $p_enum_name, $p_val = 0 ) { $t_config_var_name = $p_enum_name . '_enum_string'; $t_config_var_value = config_get( $t_config_var_name ); + if( is_array( $p_val ) ) { + $t_val = $p_val; + } else { + $t_val = (int)$p_val; + } + $t_enum_values = MantisEnum::getValues( $t_config_var_value ); foreach ( $t_enum_values as $t_key ) { $t_elem2 = get_enum_element( $p_enum_name, $t_key ); echo ''; } } From 00f7bffaf6c609935e0b043e881401ff37d29b79 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Thu, 10 Sep 2015 15:34:31 +0200 Subject: [PATCH 27/78] Title for link custom field to project section Update generated HTML in Custom Field edit page to display a title on top of the section to manage links to projects. Minor changes to language strings (adjust the labels): - linked_projects_label: remove extra, unneeded ':' - link_custom_field_to_project_title: plural form for 'project' Fixes #20096 --- lang/strings_english.txt | 4 ++-- manage_custom_field_edit_page.php | 23 ++++++++++++++--------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/lang/strings_english.txt b/lang/strings_english.txt index 7d1456e3d3..e63c091d9b 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -1287,9 +1287,9 @@ $s_custom_field_require_report = 'Required On Report'; $s_custom_field_require_update = 'Required On Update'; $s_custom_field_require_resolved = 'Required On Resolve'; $s_custom_field_require_closed = 'Required On Close'; -$s_link_custom_field_to_project_title = 'Link custom field to project'; +$s_link_custom_field_to_project_title = 'Link custom field to projects'; $s_link_custom_field_to_project_button = 'Link Custom Field'; -$s_linked_projects_label = 'Linked Projects:'; +$s_linked_projects_label = 'Linked Projects'; $s_custom_field_sequence = 'Sequence'; $s_custom_field_sequence_label = 'Sequence'; $s_custom_field_type_enum_string = '0:String,1:Numeric,2:Float,3:Enumeration,4:E-mail,5:Checkbox,6:List,7:Multiselection list,8:Date,9:Radio,10:Textarea'; diff --git a/manage_custom_field_edit_page.php b/manage_custom_field_edit_page.php index 57ba057bf4..008d457d52 100644 --- a/manage_custom_field_edit_page.php +++ b/manage_custom_field_edit_page.php @@ -212,16 +212,21 @@ * We may need to add extra checks to exclude projects from the list that the user * can't link/unlink fields from/to. */ ?> -
- - +
diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Manage.xml b/docbook/Developers_Guide/en-US/Events_Reference_Manage.xml index c3579ba92d..cd69fb5003 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Manage.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Manage.xml @@ -19,6 +19,12 @@ Any output here should be defining appropriate rows and columns for the surrounding <table> elements. + + + Parameters + <Boolean>: whether user is administrator + +
diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml index 0de13635f2..a71f987b93 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml @@ -80,6 +80,7 @@ Return Value String: modified input string + Boolean: multiline input string @@ -193,6 +194,11 @@ menu available to users when viewing issues. + + Parameters + <Integer>: bug ID + + Return Value Array: List of HTML links for the documents menu. @@ -412,8 +418,14 @@
This event allows plugins to output HTML code immediately after the line of an attachment. + Recives an attachment, the array returned by the file_get_visible_attachments() function. + + Parameters + <Array>: the attachment data + + Return Value String: HTML code to output. From bc613264adc1091abf399667151f72748f22de64 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 00:13:13 +0200 Subject: [PATCH 37/78] Remove unused parameter in event calls Undocumented and no longer needed. Should have been removed by issue #10890 --- bug_update_page.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bug_update_page.php b/bug_update_page.php index a8e6b6ccaa..dd3417d8f9 100644 --- a/bug_update_page.php +++ b/bug_update_page.php @@ -203,7 +203,7 @@ ?> '; } -event_signal( 'EVENT_UPDATE_BUG_FORM', array( $t_bug_id, true ) ); +event_signal( 'EVENT_UPDATE_BUG_FORM', array( $t_bug_id ) ); # spacer echo ''; From 0ebdfa4a21ea587710dbb8eab6330798b13cba40 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 00:27:58 +0200 Subject: [PATCH 38/78] Added documentation for EVENT_DISPLAY_EMAIL_BUILD_SUBJECT --- .../en-US/Events_Reference_Output.xml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml index a71f987b93..28d3c54a9b 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml @@ -61,6 +61,26 @@
+
+ EVENT_DISPLAY_EMAIL_BUILD_SUBJECT (Chained) + +
+ + This is an event to format the subject line of an email before being sent. + + + + Parameters + String: input string for email subject + + + + Return Value + String: modified subject string + +
+
+
EVENT_DISPLAY_FORMATTED (Chained) From ac63e6baa01052dde8bc40aee11b74ff0c023842 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 00:45:09 +0200 Subject: [PATCH 39/78] Change comments for method types Parameters are not always String, e.g. EVENT_UPDATE_BUG_DATA --- core/event_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/event_api.php b/core/event_api.php index cb8de2421f..cd2f0ca75f 100644 --- a/core/event_api.php +++ b/core/event_api.php @@ -270,9 +270,9 @@ function event_type_output( $p_event, array $p_callbacks, $p_params = null ) { * final callback's return value will be returned to the event origin. * @param string $p_event Event name. * @param array $p_callbacks Array of callback function/plugin basename key/value pairs. - * @param string $p_input Input string. + * @param mixed $p_input Input data. * @param array $p_params Parameters. - * @return string Output string + * @return mixed Output data * @access public */ function event_type_chain( $p_event, array $p_callbacks, $p_input, $p_params = null ) { From 33534c39d1fdc5283a6e09492a02e04b226817e5 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 00:53:43 +0200 Subject: [PATCH 40/78] Documentation. Format consistency --- .../en-US/Events_Reference_Output.xml | 66 +++++++++---------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml index 28d3c54a9b..b5e69bb580 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml @@ -27,13 +27,13 @@ Parameters - String: bug ID string to be displayed - Int: bug ID number + <String>: bug ID string to be displayed + <Integer>: bug ID number Return Value - String: modified bug ID string + <String>: modified bug ID string
@@ -51,12 +51,12 @@ Parameters - String: input string to be displayed + <String>: input string to be displayed Return Value - String: modified input string + <String>: modified input string @@ -71,12 +71,12 @@ Parameters - String: input string for email subject + <String>: input string for email subject Return Value - String: modified subject string + <String>: modified subject string @@ -94,13 +94,13 @@ Parameters - String: input string to be displayed + <String>: input string to be displayed Return Value - String: modified input string - Boolean: multiline input string + <String>: modified input string + <Boolean>: multiline input string @@ -117,13 +117,13 @@ Parameters - String: input string to be displayed - Boolean: multiline input string + <String>: input string to be displayed + <Boolean>: multiline input string Return Value - String: modified input string + <String>: modified input string @@ -140,13 +140,13 @@ Parameters - String: input string to be displayed - Boolean: multiline input string + <String>: input string to be displayed + <Boolean>: multiline input string Return Value - String: modified input string + <String>: modified input string @@ -171,7 +171,7 @@ Return Value - Array: List of HTML links for the user account menu. + <Array>: List of HTML links for the user account menu. @@ -186,7 +186,7 @@ Return Value - Array: List of HTML links for the documents menu. + <Array>: List of HTML links for the documents menu. @@ -201,7 +201,7 @@ Return Value - Array: List of HTML links for the issue list menu. + <Array>: List of HTML links for the issue list menu. @@ -221,7 +221,7 @@ Return Value - Array: List of HTML links for the documents menu. + <Array>: List of HTML links for the documents menu. @@ -239,7 +239,7 @@ Return Value - Array: List of HTML links for the main menu. + <Array>: List of HTML links for the main menu. @@ -257,7 +257,7 @@ Return Value - Array: List of HTML links for the main menu. + <Array>: List of HTML links for the main menu. @@ -274,7 +274,7 @@ Return Value - Array: List of HTML links for the management menu. + <Array>: List of HTML links for the management menu. @@ -291,7 +291,7 @@ Return Value - Array: List of HTML links for the manage configuration menu. + <Array>: List of HTML links for the manage configuration menu. @@ -306,7 +306,7 @@ Return Value - Array: List of HTML links for the summary menu. + <Array>: List of HTML links for the summary menu. @@ -334,7 +334,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -350,7 +350,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -365,7 +365,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -380,7 +380,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -396,7 +396,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -412,7 +412,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -428,7 +428,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. @@ -448,7 +448,7 @@ Return Value - String: HTML code to output. + <String>: HTML code to output. From 58203ae20d5adcdc89729982965dba83bfe41eaa Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 10:46:19 +0200 Subject: [PATCH 41/78] Documentation for plugin events. Typos, rephrasing --- docbook/Developers_Guide/en-US/Events_Reference_Output.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml index b5e69bb580..590a5c73c8 100644 --- a/docbook/Developers_Guide/en-US/Events_Reference_Output.xml +++ b/docbook/Developers_Guide/en-US/Events_Reference_Output.xml @@ -66,7 +66,7 @@
- This is an event to format the subject line of an email before being sent. + This is an event to format the subject line of an email before it is sent. @@ -438,12 +438,13 @@
This event allows plugins to output HTML code immediately after the line of an attachment. - Recives an attachment, the array returned by the file_get_visible_attachments() function. + Receives the attachement data as a parameter, in the form of an attachment array from within + the array returned by the file_get_visible_attachments() function. Parameters - <Array>: the attachment data + <Array>: the attachment data as an array (see core/file_api.php) From 9674df6cb7e46d7f5c37cb46a51b8b5f227131d6 Mon Sep 17 00:00:00 2001 From: Carlos Proensa Date: Fri, 23 Oct 2015 18:45:01 +0200 Subject: [PATCH 42/78] CSS: Hide collapsed sections when JS is disabled What is wrong with the collapse_api semantics: JS writes the collapse state in a cookie; the server retrieves it to display each section in the proper state. The classes 'collapse_closed' and 'collapse_open' may be reversed, causing a collapsed section to have class 'collapse_open'... wtf? This commit fixes the problem by creating a new class to identify which section is the collapsed one. This new class is not affected by javascript, and hidden by default using CSS. Fixes #19508 Signed-off-by: Damien Regad Changes from cproensa's original commits: - squashed - commit message reworded - CSS rule on a single line --- core/collapse_api.php | 2 +- css/default.css | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/core/collapse_api.php b/core/collapse_api.php index b3a8c3b0bf..05e1572936 100644 --- a/core/collapse_api.php +++ b/core/collapse_api.php @@ -110,7 +110,7 @@ function collapse_closed( $p_name, $p_section = '' ) { ob_start(); $t_div_id = $t_block . '_closed'; - echo "\n
'; + echo "\n
'; } /** diff --git a/css/default.css b/css/default.css index 48f219cc92..8a03b5f7b8 100644 --- a/css/default.css +++ b/css/default.css @@ -804,3 +804,6 @@ div.timeline * div.action { padding-top: 3px; } /* bug_view_inc bug action buttons */ .details-footer { padding: 3px 10px 2px 0; } .details-buttons { float: left; width: auto; } + +/* Hide collapsed sections for javascript disabled presentation */ +.collapse-section-closed { display: none; } From 751501686053eb87a8a24dc1a7cd3b019ba451d0 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Tue, 27 Oct 2015 11:18:56 +0000 Subject: [PATCH 43/78] Remove href on collapse-link when JS is disabled When JS is disabled, the collapsible section is always shown open; the '+' icon is therefore useless, and it does not make sense to turn it into a hyperlink. The href attribute has been removed (the existing javascript handles adding the hyperlink when enabled), and the cursor is set to 'pointer' via javascript. --- core/collapse_api.php | 2 +- javascript/common.js | 22 ++++++++++++---------- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/core/collapse_api.php b/core/collapse_api.php index 05e1572936..bb855d1954 100644 --- a/core/collapse_api.php +++ b/core/collapse_api.php @@ -134,7 +134,7 @@ function collapse_icon( $p_name, $p_section = '' ) { $t_id = $p_name. '_closed_link'; } - echo '', $t_alt, ' '; + echo '', $t_alt, ' '; } /** diff --git a/javascript/common.js b/javascript/common.js index 34c1f914aa..0632db64c2 100644 --- a/javascript/common.js +++ b/javascript/common.js @@ -37,16 +37,18 @@ style_display = 'block'; $(document).ready( function() { $('.collapse-open').show(); $('.collapse-closed').hide(); - $('.collapse-link').click( function(event) { - event.preventDefault(); - var id = $(this).attr('id'); - var t_pos = id.indexOf('_closed_link' ); - if( t_pos == -1 ) { - t_pos = id.indexOf('_open_link' ); - } - var t_div = id.substring(0, t_pos ); - ToggleDiv( t_div ); - }); + $('.collapse-link') + .css('cursor', 'pointer') + .click( function(event) { + event.preventDefault(); + var id = $(this).attr('id'); + var t_pos = id.indexOf('_closed_link' ); + if( t_pos == -1 ) { + t_pos = id.indexOf('_open_link' ); + } + var t_div = id.substring(0, t_pos ); + ToggleDiv( t_div ); + }); $('input[type=text].autocomplete').autocomplete({ source: function(request, callback) { From 5a16d0e71c1fce077308bca4c0d57ad44d63a9d7 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Tue, 27 Oct 2015 11:25:56 +0000 Subject: [PATCH 44/78] collapse_api: code cleanup - Remove useless output buffering in collapse_api The obsolescence of $g_use_javascript setting (see commit 75be0f4c15ec6aa2379c3a6504733bb28dc1b259) makes the various ob_* calls unnecessary since the generated output is displayed in every case. - phpDoc changes (revise references to javascript disabled) - remove useless function call - use a variable for collapse status class to improve readability --- core/collapse_api.php | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/core/collapse_api.php b/core/collapse_api.php index bb855d1954..06180cb1ab 100644 --- a/core/collapse_api.php +++ b/core/collapse_api.php @@ -53,8 +53,7 @@ /** * Marks the beginning of a collapse block's open phase. - * This will be visible if the block is expanded, or if - * javascript is disabled. + * This will be visible if the block is expanded or javascript is disabled. * @param string $p_name Collapse block name. * @param string $p_section Collapse block section. * @param string $p_css_class CSS class to apply to the div (defaults to none). @@ -86,8 +85,8 @@ function collapse_open( $p_name, $p_section = '', $p_css_class = '' ) { /** * Marks the end of a collapse block's open phase and the beginning - * of the block's closed phase. This will only be visible if the - * block have been collapsed and javascript is enabled. + * of the closed phase. + * This will be visible if the block is collapsed and javascript is enabled. * @param string $p_name Collapse block name. * @param string $p_section Collapse block section. * @return void @@ -107,10 +106,10 @@ function collapse_closed( $p_name, $p_section = '' ) { $g_open_collapse_section = false; - ob_start(); - $t_div_id = $t_block . '_closed'; - echo "\n
'; + $t_collapse_status_class = $t_display ? 'collapse-open' : 'collapse-closed'; + echo "\n" . '
'; } /** @@ -139,7 +138,6 @@ function collapse_icon( $p_name, $p_section = '' ) { /** * Marks the end of a collapse block's closed phase. - * Closed phase output is discarded if javascript is disabled. * @param string $p_name Collapse block name. * @param string $p_section Collapse block section. * @return void @@ -148,20 +146,15 @@ function collapse_end( $p_name, $p_section = '' ) { global $g_current_collapse_section, $g_open_collapse_section; $t_block = ( is_blank( $p_section ) ? $p_name : $p_section . '_' . $p_name ); - collapse_display( $t_block ); # Make sure a section is opened, and it is the same section. if( $t_block !== $g_current_collapse_section ) { - ob_end_clean(); trigger_error( ERROR_GENERIC, ERROR ); } echo '
'; $g_open_collapse_section = false; - - ob_end_flush(); - $g_current_collapse_section = null; } From eac1111680d762aec58d55393aa1a6c9739e9400 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Tue, 27 Oct 2015 14:05:54 +0000 Subject: [PATCH 45/78] collapse_api: hide icon and remove extra spaces When javascript is disabled, it does not make sense to display the collapse icon. This commit hides it by default, and lets the JS show it. Also remove the   after the icon, replace it with CSS padding, and adjust the generated HTML so that it does not generate extra spaces. Note: a   was added to filter_draw_selection_area2(), as a hack to ensure the filter div is high enough to fit the search field and buttons. --- billing_inc.php | 16 ++++++---------- bug_file_upload_inc.php | 13 +++++-------- bug_monitor_list_view_inc.php | 15 +++++++-------- bug_report_page.php | 11 +++++++---- bug_sponsorship_list_view_inc.php | 7 ++----- bugnote_add_inc.php | 13 ++++++------- bugnote_stats_inc.php | 16 ++++++---------- bugnote_view_inc.php | 13 ++++++------- core/collapse_api.php | 2 +- core/filter_api.php | 1 + core/relationship_api.php | 28 +++++++++++++--------------- css/default.css | 3 ++- history_inc.php | 13 ++++++------- javascript/common.js | 1 + 14 files changed, 69 insertions(+), 83 deletions(-) diff --git a/billing_inc.php b/billing_inc.php index 9b6a3f671f..1ff7cc69aa 100644 --- a/billing_inc.php +++ b/billing_inc.php @@ -99,11 +99,9 @@ - @@ -296,11 +294,9 @@
- +
-
- +
diff --git a/bug_file_upload_inc.php b/bug_file_upload_inc.php index e5fcec41e0..179b34be3c 100644 --- a/bug_file_upload_inc.php +++ b/bug_file_upload_inc.php @@ -60,11 +60,9 @@ - @@ -99,10 +97,9 @@ ?>
- + echo lang_get( $t_file_upload_max_num == 1 ? 'upload_file' : 'upload_files' ); ?>
-
- +
diff --git a/bug_monitor_list_view_inc.php b/bug_monitor_list_view_inc.php index d2fd431097..f21d9d70bb 100644 --- a/bug_monitor_list_view_inc.php +++ b/bug_monitor_list_view_inc.php @@ -58,12 +58,10 @@ ?> - + - - - @@ -173,9 +172,9 @@ ?>
- - -
@@ -103,8 +101,9 @@ ?> -
- +
diff --git a/bug_report_page.php b/bug_report_page.php index 07e38d089d..6a5041b972 100644 --- a/bug_report_page.php +++ b/bug_report_page.php @@ -337,14 +337,17 @@
- 0 ) { ?> + 0 ) { ?> - + - + collapse_icon( 'profile' ); + echo lang_get( 'or_fill_in' ); +?>
diff --git a/bug_sponsorship_list_view_inc.php b/bug_sponsorship_list_view_inc.php index 54b006af46..01755b2b26 100644 --- a/bug_sponsorship_list_view_inc.php +++ b/bug_sponsorship_list_view_inc.php @@ -87,10 +87,8 @@
<?php echo lang_get( 'sponsor_verb' ) ?> -
-
- +
-
- +
diff --git a/bugnote_stats_inc.php b/bugnote_stats_inc.php index 475044c578..5f4aaa18fd 100644 --- a/bugnote_stats_inc.php +++ b/bugnote_stats_inc.php @@ -88,11 +88,9 @@ - @@ -187,11 +185,9 @@
- +
-
- +
diff --git a/bugnote_view_inc.php b/bugnote_view_inc.php index cfce0b4f01..3597ee0e32 100644 --- a/bugnote_view_inc.php +++ b/bugnote_view_inc.php @@ -93,10 +93,9 @@ ?> - -
- - +
- - +
diff --git a/core/collapse_api.php b/core/collapse_api.php index 06180cb1ab..86dd91c78c 100644 --- a/core/collapse_api.php +++ b/core/collapse_api.php @@ -133,7 +133,7 @@ function collapse_icon( $p_name, $p_section = '' ) { $t_id = $p_name. '_closed_link'; } - echo '', $t_alt, ' '; + echo '', $t_alt, ''; } /** diff --git a/core/filter_api.php b/core/filter_api.php index 128c4bbee3..91ef8d180e 100644 --- a/core/filter_api.php +++ b/core/filter_api.php @@ -3434,6 +3434,7 @@ function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_e # expanded collapse_icon( 'filter' ); + echo ' '; # This is a hack to ensure the div is high enough echo '