From 71d31debb9caa111316d3585322fffea405a1ac8 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Oct 2013 13:23:12 +0200 Subject: [PATCH 1/9] Revert language api changes for array message format Cherry-pick of d679a60b136c0e2522c40c10bc436c9b5f5c47de, excluding changes to language files. Issue #14099 --- core/lang_api.php | 106 +++++++++++++--------------------------------- 1 file changed, 30 insertions(+), 76 deletions(-) diff --git a/core/lang_api.php b/core/lang_api.php index 7da322a4ee..5532d875ce 100644 --- a/core/lang_api.php +++ b/core/lang_api.php @@ -66,8 +66,6 @@ function lang_load( $p_lang, $p_dir = null ) { return; } - // Step 1 - Load Requested Language file - // @@ and if file doesn't exist??? if( $p_dir === null ) { include_once( config_get( 'language_path' ) . 'strings_' . $p_lang . '.txt' ); } else { @@ -76,68 +74,31 @@ function lang_load( $p_lang, $p_dir = null ) { } } - // Step 2 - Allow overriding strings declared in the language file. - // custom_strings_inc.php can use $g_active_language - // 2 formats: - // $s_* - old format - // $s_custom_strings array - new format - // NOTE: it's not expected that you'd mix/merge old/new formats within this file. - $t_custom_strings = config_get( 'custom_strings_file' ) ; + # Allow overriding strings declared in the language file. + # custom_strings_inc.php can use $g_active_language + $t_custom_strings = config_get( 'absolute_path' ) . 'custom_strings_inc.php'; if( file_exists( $t_custom_strings ) ) { - # this may be loaded multiple times, once per language require( $t_custom_strings ); - } - // Step 3 - New Language file format - // Language file consists of an array - if( isset( $s_messages ) ) { - // lang strings array entry can only be set if $p_dir is not null - i.e. in a plugin - if( isset( $g_lang_strings[$p_lang] ) ) { - if( isset( $s_custom_messages[$p_lang] ) ) { - // Step 4 - handle merging in custom strings: - // Possible states: - // 4.a - new string format + new custom string format - $g_lang_strings[$p_lang] = array_replace( ((array)$g_lang_strings[$p_lang]), (array)$s_messages, (array)$s_custom_messages[$p_lang]); - return; - } else { - $g_lang_strings[$p_lang] = array_replace( ((array)$g_lang_strings[$p_lang]), (array)$s_messages); - } - } else { - // new language loaded - $g_lang_strings[$p_lang] = $s_messages; - if( isset( $s_custom_messages[$p_lang] ) ) { - // 4.a - new string format + new custom string format - $g_lang_strings[$p_lang] = array_replace( ((array)$g_lang_strings[$p_lang]), (array)$s_custom_messages[$p_lang]); - return; - } - } + # this may be loaded multiple times, once per language } - // 4.b new string format + old custom string format - // 4.c - old string format + old custom string format - if( !isset( $s_messages ) || file_exists( $t_custom_strings ) ) { - $t_vars = get_defined_vars(); - - foreach( array_keys( $t_vars ) as $t_var ) { - $t_lang_var = preg_replace( '/^s_/', '', $t_var ); - if( $t_lang_var != $t_var ) { - $g_lang_strings[$p_lang][$t_lang_var] = $$t_var; - } - else if( 'MANTIS_ERROR' == $t_var ) { - if( isset( $g_lang_strings[$p_lang][$t_lang_var] ) ) { - foreach( $$t_var as $key => $val ) { - $g_lang_strings[$p_lang][$t_lang_var][$key] = $val; - } - } else { - $g_lang_strings[$p_lang][$t_lang_var] = $$t_var; + $t_vars = get_defined_vars(); + + foreach( array_keys( $t_vars ) as $t_var ) { + $t_lang_var = preg_replace( '/^s_/', '', $t_var ); + if( $t_lang_var != $t_var ) { + $g_lang_strings[$p_lang][$t_lang_var] = $$t_var; + } + else if( 'MANTIS_ERROR' == $t_var ) { + if( isset( $g_lang_strings[$p_lang][$t_lang_var] ) ) { + foreach( $$t_var as $key => $val ) { + $g_lang_strings[$p_lang][$t_lang_var][$key] = $val; } + } else { + $g_lang_strings[$p_lang][$t_lang_var] = $$t_var; } } - // 4.d old string format + new custom string format - // merge new custom strings into array in same way we merge in 4.a - if( isset( $s_custom_messages[$p_lang] ) ) { - $g_lang_strings[$p_lang] = array_replace( ((array)$g_lang_strings[$p_lang]), (array)$s_custom_messages[$p_lang]); - } } } @@ -231,7 +192,7 @@ function lang_ensure_loaded( $p_lang ) { */ function lang_language_exists( $p_lang ) { $t_valid_langs = config_get( 'language_choices_arr' ); - $t_valid = ( 'english' == $p_lang || in_array( $p_lang, $t_valid_langs, true ) ); + $t_valid = in_array( $p_lang, $t_valid_langs, true ); return $t_valid; } @@ -305,10 +266,9 @@ function lang_get_current() { * 2. The string in English * @param string $p_string * @param string $p_lang - * @param bool $p_error default: true - error if string not found * @return string */ -function lang_get( $p_string, $p_lang = null, $p_error = true ) { +function lang_get( $p_string, $p_lang = null ) { global $g_lang_strings; # If no specific language is requested, we'll @@ -324,37 +284,31 @@ function lang_get( $p_string, $p_lang = null, $p_error = true ) { // Now we'll make sure that the requested language is loaded lang_ensure_loaded( $t_lang ); - // Step 1 - see if language string exists in requested language + # note in the current implementation we always return the same value + # because we don't have a concept of falling back on a language. The + # language files actually *contain* English strings if none has been + # defined in the correct language + # @todo thraxisp - not sure if this is still true. Strings from last language loaded + # may still be in memeory if a new language is loaded. + if( lang_exists( $p_string, $t_lang ) ) { return $g_lang_strings[$t_lang][$p_string]; } else { - // Language string doesn't exist in requested language - - // Step 2 - See if language string exists in current plugin $t_plugin_current = plugin_get_current(); if( !is_null( $t_plugin_current ) ) { - // Step 3 - Plugin exists: load language file lang_load( $t_lang, config_get( 'plugin_path' ) . $t_plugin_current . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR ); if( lang_exists( $p_string, $t_lang ) ) { return $g_lang_strings[$t_lang][$p_string]; } - - // Step 4 - Localised language entry didn't exist - fallback to english for plugin - lang_load( 'english', config_get( 'plugin_path' ) . $t_plugin_current . DIRECTORY_SEPARATOR . 'lang' . DIRECTORY_SEPARATOR ); - if( lang_exists( $p_string, $t_lang ) ) { - return $g_lang_strings[$t_lang][$p_string]; - } } - // Step 5 - string didn't exist, try fall back to english: if( $t_lang == 'english' ) { - if( $p_error ) { - error_parameters( $p_string ); - trigger_error( ERROR_LANG_STRING_NOT_FOUND, WARNING ); - } + error_parameters( $p_string ); + trigger_error( ERROR_LANG_STRING_NOT_FOUND, WARNING ); return ''; } else { - // if string is not found in a language other than english, then retry using the english language. + + # if string is not found in a language other than english, then retry using the english language. return lang_get( $p_string, 'english' ); } } From bb2162dea51ddd32918f3805ee370871161a04fc Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Oct 2013 18:11:20 +0200 Subject: [PATCH 2/9] strings_english.txt: Added missing comments --- lang/strings_english.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/strings_english.txt b/lang/strings_english.txt index 5956f2b2d3..9a308e199e 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -384,8 +384,8 @@ $s_no_sponsored = 'No sponsored issues Assigned To yourself were found.'; $s_own_sponsored = 'Issues You have Sponsored:'; $s_issues_handled = 'Sponsored Issues You Have Been Assigned To:'; $s_no_own_sponsored = 'You have not sponsored any issues.'; -$s_sponsor = 'Sponsor'; -$s_sponsor_verb = 'Sponsor'; +$s_sponsor = 'Sponsor'; # like in 'The sponsor of...' +$s_sponsor_verb = 'Sponsor'; # like in 'Sponsor it!' $s_amount = 'Amount'; $s_total_owing = 'Total Owing'; $s_total_paid = 'Total Paid'; @@ -664,7 +664,7 @@ $s_create_user_button = 'Create User'; $s_hide_disabled = 'Hide Disabled'; $s_filter_button = 'Apply Filter'; $s_default_filter = 'Default Filter'; -$s_create_filter_link = 'Create Permalink'; +$s_create_filter_link = 'Create Permalink'; # Permalink = Permanent Link $s_create_short_link = 'Create Short Link'; $s_filter_permalink = 'Following is a permanent link to the currently configured filter:'; $s_manage_users_link = 'Manage Users'; From 2dc729ec10f7d68b54d9383d6c4fb06d5fd19d22 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Oct 2013 18:12:32 +0200 Subject: [PATCH 3/9] strings_english.txt: added authors The author list was built from git-shortlog: git shortlog -s -- strings_english.txt |sed -r "s/^[0-9 \t]*(.*)$/ * @author \1/" --- lang/strings_english.txt | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/lang/strings_english.txt b/lang/strings_english.txt index 9a308e199e..f0aacd1a94 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -28,6 +28,40 @@ * @ingroup Language * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org + * + * @author Adrian Spinei + * @author Alexey Chumakov + * @author André Eisenbach + * @author Bastian Pfenningschmidt + * @author Christian Weiske + * @author Damien Regad + * @author Daniel Tschinder + * @author Daryn Warriner + * @author David Hicks + * @author David Newcomb + * @author Dominik Blunk + * @author Frank Rodgers + * @author Gianluca Sforna + * @author Glenn Henshaw + * @author Jeroen Latour + * @author Jim Hanley + * @author John Reese + * @author Julian Fitzell + * @author Kenzaburo Ito + * @author Lincoln Maskey + * @author Marcello Scata + * @author Martin Fuchs + * @author Paul Richards + * @author Robert Munteanu + * @author Siebrand Mazeland + * @author Victor Boctor + * @author beerfrick + * @author bigbadger + * @author dwethell + * @author jctrosset + * @author jhuggins + * @author jotel + * @author zakman */ # Script directionality (currently supported: ltr and rtl) From f82edf38f55eb3a0ab1f6478c447a066dd7282df Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Fri, 11 Oct 2013 18:40:17 +0200 Subject: [PATCH 4/9] Language files headers for Mantis Core Indicate the file should not be updated manually, and added reference to our wiki page with instructions on how to update translations --- lang/strings_afrikaans.txt | 14 +++++++++++--- lang/strings_amharic.txt | 14 +++++++++++--- lang/strings_arabic.txt | 14 +++++++++++--- lang/strings_arabicegyptianspoken.txt | 14 +++++++++++--- lang/strings_breton.txt | 14 +++++++++++--- lang/strings_bulgarian.txt | 14 +++++++++++--- lang/strings_catalan.txt | 14 +++++++++++--- lang/strings_chinese_simplified.txt | 14 +++++++++++--- lang/strings_chinese_traditional.txt | 14 +++++++++++--- lang/strings_croatian.txt | 14 +++++++++++--- lang/strings_czech.txt | 14 +++++++++++--- lang/strings_danish.txt | 14 +++++++++++--- lang/strings_dutch.txt | 14 +++++++++++--- lang/strings_english.txt | 14 +++++++++++--- lang/strings_estonian.txt | 14 +++++++++++--- lang/strings_finnish.txt | 14 +++++++++++--- lang/strings_french.txt | 14 +++++++++++--- lang/strings_galician.txt | 14 +++++++++++--- lang/strings_german.txt | 14 +++++++++++--- lang/strings_greek.txt | 14 +++++++++++--- lang/strings_hebrew.txt | 14 +++++++++++--- lang/strings_hungarian.txt | 14 +++++++++++--- lang/strings_icelandic.txt | 14 +++++++++++--- lang/strings_italian.txt | 14 +++++++++++--- lang/strings_japanese.txt | 14 +++++++++++--- lang/strings_korean.txt | 14 +++++++++++--- lang/strings_latvian.txt | 14 +++++++++++--- lang/strings_lithuanian.txt | 14 +++++++++++--- lang/strings_macedonian.txt | 14 +++++++++++--- lang/strings_norwegian_bokmal.txt | 14 +++++++++++--- lang/strings_norwegian_nynorsk.txt | 14 +++++++++++--- lang/strings_occitan.txt | 14 +++++++++++--- lang/strings_polish.txt | 14 +++++++++++--- lang/strings_portuguese_brazil.txt | 14 +++++++++++--- lang/strings_portuguese_standard.txt | 14 +++++++++++--- lang/strings_qqq.txt | 21 +++++++++++++++++---- lang/strings_ripoarisch.txt | 14 +++++++++++--- lang/strings_romanian.txt | 14 +++++++++++--- lang/strings_russian.txt | 14 +++++++++++--- lang/strings_serbian.txt | 14 +++++++++++--- lang/strings_slovak.txt | 14 +++++++++++--- lang/strings_slovene.txt | 14 +++++++++++--- lang/strings_spanish.txt | 14 +++++++++++--- lang/strings_swedish.txt | 14 +++++++++++--- lang/strings_swissgerman.txt | 14 +++++++++++--- lang/strings_tagalog.txt | 14 +++++++++++--- lang/strings_turkish.txt | 14 +++++++++++--- lang/strings_ukrainian.txt | 14 +++++++++++--- lang/strings_urdu.txt | 14 +++++++++++--- lang/strings_volapuk.txt | 14 +++++++++++--- 50 files changed, 556 insertions(+), 151 deletions(-) diff --git a/lang/strings_afrikaans.txt b/lang/strings_afrikaans.txt index 3f98449f3f..523e90cb32 100644 --- a/lang/strings_afrikaans.txt +++ b/lang/strings_afrikaans.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Afrikaans (Afrikaans) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_amharic.txt b/lang/strings_amharic.txt index f851e5ad69..a12c3a3922 100644 --- a/lang/strings_amharic.txt +++ b/lang/strings_amharic.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Amharic (አማርኛ) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_arabic.txt b/lang/strings_arabic.txt index e8a45d2c8d..af3d760962 100644 --- a/lang/strings_arabic.txt +++ b/lang/strings_arabic.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Arabic (العربية) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_arabicegyptianspoken.txt b/lang/strings_arabicegyptianspoken.txt index 2813a074c7..29c12f0e9f 100644 --- a/lang/strings_arabicegyptianspoken.txt +++ b/lang/strings_arabicegyptianspoken.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Egyptian Spoken Arabic (مصرى) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_breton.txt b/lang/strings_breton.txt index ba2b69b8df..5578788302 100644 --- a/lang/strings_breton.txt +++ b/lang/strings_breton.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Breton (brezhoneg) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_bulgarian.txt b/lang/strings_bulgarian.txt index 99f7877cfb..c3f1420398 100644 --- a/lang/strings_bulgarian.txt +++ b/lang/strings_bulgarian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Bulgarian (български) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_catalan.txt b/lang/strings_catalan.txt index d7254117cd..7bc411991d 100644 --- a/lang/strings_catalan.txt +++ b/lang/strings_catalan.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Catalan (català) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_chinese_simplified.txt b/lang/strings_chinese_simplified.txt index 014e30359d..976fac5446 100644 --- a/lang/strings_chinese_simplified.txt +++ b/lang/strings_chinese_simplified.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Simplified Chinese (中文(简体)‎) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_chinese_traditional.txt b/lang/strings_chinese_traditional.txt index 373670c0a0..0d33577b52 100644 --- a/lang/strings_chinese_traditional.txt +++ b/lang/strings_chinese_traditional.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Traditional Chinese (中文(繁體)‎) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_croatian.txt b/lang/strings_croatian.txt index 57527d270c..fb9befeefa 100644 --- a/lang/strings_croatian.txt +++ b/lang/strings_croatian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Croatian (Hrvatski) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_czech.txt b/lang/strings_czech.txt index 46037686b8..997a92c68f 100644 --- a/lang/strings_czech.txt +++ b/lang/strings_czech.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Czech (česky) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_danish.txt b/lang/strings_danish.txt index a95dfea3f0..e43bc68112 100644 --- a/lang/strings_danish.txt +++ b/lang/strings_danish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Danish (dansk) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_dutch.txt b/lang/strings_dutch.txt index 7c1113cb7e..a500f88ad2 100644 --- a/lang/strings_dutch.txt +++ b/lang/strings_dutch.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Dutch (Nederlands) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_english.txt b/lang/strings_english.txt index f0aacd1a94..23b64ee6d7 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - English (English) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org * * @author Adrian Spinei diff --git a/lang/strings_estonian.txt b/lang/strings_estonian.txt index 0f2cf86148..6529a0d98b 100644 --- a/lang/strings_estonian.txt +++ b/lang/strings_estonian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Estonian (eesti) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_finnish.txt b/lang/strings_finnish.txt index a44f2028c3..a094a0cfe6 100644 --- a/lang/strings_finnish.txt +++ b/lang/strings_finnish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Finnish (suomi) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_french.txt b/lang/strings_french.txt index 43e907e59f..dd03d44747 100644 --- a/lang/strings_french.txt +++ b/lang/strings_french.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - French (français) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_galician.txt b/lang/strings_galician.txt index 4cef4fa16b..cf9cb23153 100644 --- a/lang/strings_galician.txt +++ b/lang/strings_galician.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Galician (galego) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_german.txt b/lang/strings_german.txt index 5b6aafed45..ce27af8c5d 100644 --- a/lang/strings_german.txt +++ b/lang/strings_german.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - German (Deutsch) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_greek.txt b/lang/strings_greek.txt index a7efad3b3b..b3c1f5c408 100644 --- a/lang/strings_greek.txt +++ b/lang/strings_greek.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Greek (Ελληνικά) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_hebrew.txt b/lang/strings_hebrew.txt index 3c875e32a5..ae8e714765 100644 --- a/lang/strings_hebrew.txt +++ b/lang/strings_hebrew.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Hebrew (עברית) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_hungarian.txt b/lang/strings_hungarian.txt index f3458d60cf..c0511d8152 100644 --- a/lang/strings_hungarian.txt +++ b/lang/strings_hungarian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Hungarian (magyar) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_icelandic.txt b/lang/strings_icelandic.txt index ca180361e4..c3264fef1a 100644 --- a/lang/strings_icelandic.txt +++ b/lang/strings_icelandic.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Icelandic (íslenska) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_italian.txt b/lang/strings_italian.txt index a67ab9d60c..21ad78a6fa 100644 --- a/lang/strings_italian.txt +++ b/lang/strings_italian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Italian (italiano) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_japanese.txt b/lang/strings_japanese.txt index 12ed43c649..8c2ecfac0f 100644 --- a/lang/strings_japanese.txt +++ b/lang/strings_japanese.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Japanese (日本語) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_korean.txt b/lang/strings_korean.txt index a52aadb6cf..9efc84de36 100644 --- a/lang/strings_korean.txt +++ b/lang/strings_korean.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Korean (한국어) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_latvian.txt b/lang/strings_latvian.txt index 51e06c011d..08550205cd 100644 --- a/lang/strings_latvian.txt +++ b/lang/strings_latvian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Latvian (latviešu) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_lithuanian.txt b/lang/strings_lithuanian.txt index 99af5e825f..388134cd7d 100644 --- a/lang/strings_lithuanian.txt +++ b/lang/strings_lithuanian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Lithuanian (lietuvių) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_macedonian.txt b/lang/strings_macedonian.txt index ac85a0acad..477676d6b0 100644 --- a/lang/strings_macedonian.txt +++ b/lang/strings_macedonian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Macedonian (македонски) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_norwegian_bokmal.txt b/lang/strings_norwegian_bokmal.txt index ce2cbe1d72..bc0849eb3c 100644 --- a/lang/strings_norwegian_bokmal.txt +++ b/lang/strings_norwegian_bokmal.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Norwegian Bokmål (norsk bokmål) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_norwegian_nynorsk.txt b/lang/strings_norwegian_nynorsk.txt index ec4fbcfd14..9200aa0f1f 100644 --- a/lang/strings_norwegian_nynorsk.txt +++ b/lang/strings_norwegian_nynorsk.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Norwegian Nynorsk (‪Norsk (nynorsk)‬) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_occitan.txt b/lang/strings_occitan.txt index b41be28cb0..2d701efbb8 100644 --- a/lang/strings_occitan.txt +++ b/lang/strings_occitan.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Occitan (occitan) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_polish.txt b/lang/strings_polish.txt index 200de1227c..09ab077129 100644 --- a/lang/strings_polish.txt +++ b/lang/strings_polish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Polish (polski) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_portuguese_brazil.txt b/lang/strings_portuguese_brazil.txt index 163725882a..1c78835e6f 100644 --- a/lang/strings_portuguese_brazil.txt +++ b/lang/strings_portuguese_brazil.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Brazilian Portuguese (português do Brasil) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_portuguese_standard.txt b/lang/strings_portuguese_standard.txt index a2692a7511..3bf30457a1 100644 --- a/lang/strings_portuguese_standard.txt +++ b/lang/strings_portuguese_standard.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Portuguese (português) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_qqq.txt b/lang/strings_qqq.txt index ce7e1d5f76..83f1eeb5a3 100644 --- a/lang/strings_qqq.txt +++ b/lang/strings_qqq.txt @@ -15,20 +15,33 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Message documentation (Message documentation) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org -*/ + * + * @author Damien Regad + * @author David Hicks + * @author Paul Richards + * @author Siebrand Mazeland + */ $s_actiongroup_menu_copy = '{{Identical|Copy}}'; $s_excel_export = '“Excel” is the name of a program; do not translate it unless Microsoft has translated the program’s name into your language (e.g., 엑셀 in Korean).'; diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index 0b6a58e596..ac0eb8c4c1 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Colognian (Ripoarisch) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_romanian.txt b/lang/strings_romanian.txt index b39bd4a3ec..48ed253de5 100644 --- a/lang/strings_romanian.txt +++ b/lang/strings_romanian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Romanian (română) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_russian.txt b/lang/strings_russian.txt index f4725c08a8..40d7d55f0d 100644 --- a/lang/strings_russian.txt +++ b/lang/strings_russian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Russian (русский) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_serbian.txt b/lang/strings_serbian.txt index 9cdee4789b..35e01b8a70 100644 --- a/lang/strings_serbian.txt +++ b/lang/strings_serbian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Serbian (Cyrillic script) (српски (ћирилица)‎) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_slovak.txt b/lang/strings_slovak.txt index d7fb6d0129..59b4cbcd2c 100644 --- a/lang/strings_slovak.txt +++ b/lang/strings_slovak.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Slovak (slovenčina) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_slovene.txt b/lang/strings_slovene.txt index f0514e0430..c249a203a5 100644 --- a/lang/strings_slovene.txt +++ b/lang/strings_slovene.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Slovenian (slovenščina) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_spanish.txt b/lang/strings_spanish.txt index cc43644119..94eef9975a 100644 --- a/lang/strings_spanish.txt +++ b/lang/strings_spanish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Spanish (español) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_swedish.txt b/lang/strings_swedish.txt index 0dee258cfd..191057d4d0 100644 --- a/lang/strings_swedish.txt +++ b/lang/strings_swedish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Swedish (svenska) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_swissgerman.txt b/lang/strings_swissgerman.txt index 98c4412476..93b79a81c0 100644 --- a/lang/strings_swissgerman.txt +++ b/lang/strings_swissgerman.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Swiss German (Alemannisch) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_tagalog.txt b/lang/strings_tagalog.txt index 1be7effce6..756554dd46 100644 --- a/lang/strings_tagalog.txt +++ b/lang/strings_tagalog.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Tagalog (Tagalog) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_turkish.txt b/lang/strings_turkish.txt index 34b179551d..48c4bdabbf 100644 --- a/lang/strings_turkish.txt +++ b/lang/strings_turkish.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Turkish (Türkçe) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_ukrainian.txt b/lang/strings_ukrainian.txt index 48ffd4ee72..b2a4c028e8 100644 --- a/lang/strings_ukrainian.txt +++ b/lang/strings_ukrainian.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Ukrainian (українська) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_urdu.txt b/lang/strings_urdu.txt index b6f085ce1a..c508296c42 100644 --- a/lang/strings_urdu.txt +++ b/lang/strings_urdu.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Urdu (اردو) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ diff --git a/lang/strings_volapuk.txt b/lang/strings_volapuk.txt index 366f183c02..59370fc855 100644 --- a/lang/strings_volapuk.txt +++ b/lang/strings_volapuk.txt @@ -15,18 +15,26 @@ # along with MantisBT. If not, see . /** - * Language File - * See the qqq 'language' for message documentation incl. usage of parameters + * Language File - Volapük (Volapük) + * * ********************************************************************** * ** This file is generated from translations stored in translatewiki ** * ** Information on Copyright/License for translatewiki translations ** * ** is available at http://translatewiki.net/wiki/Project:About ** * ********************************************************************** + * ** ** + * ** 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 ** * ********************************************************************** * + * See the qqq 'language' for message documentation incl. usage of parameters + * * @ingroup Language - * @copyright Copyright (C) 2002 - 2013 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ From 81be2aef40704446f0855af5c01488dc654ed986 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 12 Oct 2013 00:53:18 +0200 Subject: [PATCH 5/9] Language file headers for MantisCoreFormatting plugin --- .../lang/strings_afrikaans.txt | 52 ++++++++++------- .../lang/strings_arabic.txt | 52 ++++++++++------- .../lang/strings_breton.txt | 52 ++++++++++------- .../lang/strings_catalan.txt | 52 ++++++++++------- .../lang/strings_dutch.txt | 52 ++++++++++------- .../lang/strings_english.txt | 54 +++++++++++------- .../lang/strings_finnish.txt | 52 ++++++++++------- .../lang/strings_french.txt | 23 ++++++-- .../lang/strings_galician.txt | 52 ++++++++++------- .../lang/strings_german.txt | 52 ++++++++++------- .../lang/strings_greek.txt | 52 ++++++++++------- .../lang/strings_hebrew.txt | 52 ++++++++++------- .../lang/strings_hungarian.txt | 52 ++++++++++------- .../lang/strings_japanese.txt | 52 ++++++++++------- .../lang/strings_macedonian.txt | 48 +++++++++------- .../lang/strings_norwegian_bokmal.txt | 52 ++++++++++------- .../lang/strings_occitan.txt | 52 ++++++++++------- .../lang/strings_portuguese_brazil.txt | 52 ++++++++++------- .../lang/strings_portuguese_standard.txt | 52 ++++++++++------- .../MantisCoreFormatting/lang/strings_qqq.txt | 56 ++++++++++++------- .../lang/strings_ripoarisch.txt | 51 ++++++++++------- .../lang/strings_russian.txt | 51 ++++++++++------- .../lang/strings_slovak.txt | 51 ++++++++++------- .../lang/strings_spanish.txt | 51 ++++++++++------- .../lang/strings_swissgerman.txt | 51 ++++++++++------- 25 files changed, 785 insertions(+), 483 deletions(-) diff --git a/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt b/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt index 5d5309a067..fcf95d9150 100644 --- a/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt +++ b/plugins/MantisCoreFormatting/lang/strings_afrikaans.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Afrikaans (Afrikaans) + +/** + * Language File - Afrikaans (Afrikaans) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Naudefj */ diff --git a/plugins/MantisCoreFormatting/lang/strings_arabic.txt b/plugins/MantisCoreFormatting/lang/strings_arabic.txt index e57cfaec5d..50a8c91a66 100644 --- a/plugins/MantisCoreFormatting/lang/strings_arabic.txt +++ b/plugins/MantisCoreFormatting/lang/strings_arabic.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Arabic (العربية) + +/** + * Language File - Arabic (العربية) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Meno25 */ diff --git a/plugins/MantisCoreFormatting/lang/strings_breton.txt b/plugins/MantisCoreFormatting/lang/strings_breton.txt index 28cadb4a71..e1ee4537d8 100644 --- a/plugins/MantisCoreFormatting/lang/strings_breton.txt +++ b/plugins/MantisCoreFormatting/lang/strings_breton.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Breton (Brezhoneg) + +/** + * Language File - Breton (Brezhoneg) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Fohanno */ diff --git a/plugins/MantisCoreFormatting/lang/strings_catalan.txt b/plugins/MantisCoreFormatting/lang/strings_catalan.txt index 8e96b9ece3..6c14503a6f 100644 --- a/plugins/MantisCoreFormatting/lang/strings_catalan.txt +++ b/plugins/MantisCoreFormatting/lang/strings_catalan.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Catalan (Català) + +/** + * Language File - Catalan (Català) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bernat * @author Paucabot diff --git a/plugins/MantisCoreFormatting/lang/strings_dutch.txt b/plugins/MantisCoreFormatting/lang/strings_dutch.txt index f69bc9c79c..653b985469 100644 --- a/plugins/MantisCoreFormatting/lang/strings_dutch.txt +++ b/plugins/MantisCoreFormatting/lang/strings_dutch.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Dutch (Nederlands) + +/** + * Language File - Dutch (Nederlands) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Siebrand */ diff --git a/plugins/MantisCoreFormatting/lang/strings_english.txt b/plugins/MantisCoreFormatting/lang/strings_english.txt index a9df3fcac3..7d1f2f4320 100644 --- a/plugins/MantisCoreFormatting/lang/strings_english.txt +++ b/plugins/MantisCoreFormatting/lang/strings_english.txt @@ -1,30 +1,46 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** English (English) +/** + * Language File - English (English) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * + * @author Damien Regad + * @author David Hicks + * @author John Reese + * @author Siebrand Mazeland */ $s_plugin_format_title = 'MantisBT Formatting'; diff --git a/plugins/MantisCoreFormatting/lang/strings_finnish.txt b/plugins/MantisCoreFormatting/lang/strings_finnish.txt index 23f5945201..606e234ce9 100644 --- a/plugins/MantisCoreFormatting/lang/strings_finnish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_finnish.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Finnish (Suomi) + +/** + * Language File - Finnish (Suomi) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Centerlink */ diff --git a/plugins/MantisCoreFormatting/lang/strings_french.txt b/plugins/MantisCoreFormatting/lang/strings_french.txt index 5a20875369..4b76da7583 100644 --- a/plugins/MantisCoreFormatting/lang/strings_french.txt +++ b/plugins/MantisCoreFormatting/lang/strings_french.txt @@ -1,8 +1,8 @@ . */ -/** French (Français) +/** + * Language File - French (Français) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Dolmen * @author IAlex diff --git a/plugins/MantisCoreFormatting/lang/strings_galician.txt b/plugins/MantisCoreFormatting/lang/strings_galician.txt index de972ac5ea..07ed6ed4e5 100644 --- a/plugins/MantisCoreFormatting/lang/strings_galician.txt +++ b/plugins/MantisCoreFormatting/lang/strings_galician.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Galician (Galego) + +/** + * Language File - Galician (Galego) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Toliño */ diff --git a/plugins/MantisCoreFormatting/lang/strings_german.txt b/plugins/MantisCoreFormatting/lang/strings_german.txt index 705c5438d6..4a88eb6dd1 100644 --- a/plugins/MantisCoreFormatting/lang/strings_german.txt +++ b/plugins/MantisCoreFormatting/lang/strings_german.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** German (Deutsch) + +/** + * Language File - German (Deutsch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Atrol * @author Umherirrender diff --git a/plugins/MantisCoreFormatting/lang/strings_greek.txt b/plugins/MantisCoreFormatting/lang/strings_greek.txt index a84c31beb6..6e8cc5fe55 100644 --- a/plugins/MantisCoreFormatting/lang/strings_greek.txt +++ b/plugins/MantisCoreFormatting/lang/strings_greek.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Greek (Ελληνικά) + +/** + * Language File - Greek (Ελληνικά) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Omnipaedista */ diff --git a/plugins/MantisCoreFormatting/lang/strings_hebrew.txt b/plugins/MantisCoreFormatting/lang/strings_hebrew.txt index e1c3ff1f9c..fa4ee30263 100644 --- a/plugins/MantisCoreFormatting/lang/strings_hebrew.txt +++ b/plugins/MantisCoreFormatting/lang/strings_hebrew.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Hebrew (עברית) + +/** + * Language File - Hebrew (עברית) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author YaronSh */ diff --git a/plugins/MantisCoreFormatting/lang/strings_hungarian.txt b/plugins/MantisCoreFormatting/lang/strings_hungarian.txt index 56080cb9a8..2638d6d2c4 100644 --- a/plugins/MantisCoreFormatting/lang/strings_hungarian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_hungarian.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Hungarian (Magyar) + +/** + * Language File - Hungarian (Magyar) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Dani * @author Glanthor Reviol diff --git a/plugins/MantisCoreFormatting/lang/strings_japanese.txt b/plugins/MantisCoreFormatting/lang/strings_japanese.txt index 04654c0339..839ce4a7cb 100644 --- a/plugins/MantisCoreFormatting/lang/strings_japanese.txt +++ b/plugins/MantisCoreFormatting/lang/strings_japanese.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Japanese (日本語) + +/** + * Language File - Japanese (日本語) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Aotake * @author Fryed-peach diff --git a/plugins/MantisCoreFormatting/lang/strings_macedonian.txt b/plugins/MantisCoreFormatting/lang/strings_macedonian.txt index 298fdf4bad..a7e93e58bc 100644 --- a/plugins/MantisCoreFormatting/lang/strings_macedonian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_macedonian.txt @@ -1,30 +1,40 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . /** Macedonian (Македонски) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bjankuloski06 */ diff --git a/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt b/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt index bc41c7882e..43d3a95ea8 100644 --- a/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt +++ b/plugins/MantisCoreFormatting/lang/strings_norwegian_bokmal.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) + +/** + * Language File - Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Nghtwlkr */ diff --git a/plugins/MantisCoreFormatting/lang/strings_occitan.txt b/plugins/MantisCoreFormatting/lang/strings_occitan.txt index ab374ba61b..4b94ba3f20 100644 --- a/plugins/MantisCoreFormatting/lang/strings_occitan.txt +++ b/plugins/MantisCoreFormatting/lang/strings_occitan.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Occitan (Occitan) + +/** + * Language File - Occitan (Occitan) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Cedric31 */ diff --git a/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt b/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt index b5e339af1d..0f904e5d5c 100644 --- a/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt +++ b/plugins/MantisCoreFormatting/lang/strings_portuguese_brazil.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Brazilian Portuguese (Português do Brasil) + +/** + * Language File - Brazilian Portuguese (Português do Brasil) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Eduardo.mps */ diff --git a/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt b/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt index 5c25f8fad3..93168f430c 100644 --- a/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt +++ b/plugins/MantisCoreFormatting/lang/strings_portuguese_standard.txt @@ -1,30 +1,42 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Portuguese (Português) + +/** + * Language File - Portuguese (Português) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Hamilton Abreu */ diff --git a/plugins/MantisCoreFormatting/lang/strings_qqq.txt b/plugins/MantisCoreFormatting/lang/strings_qqq.txt index d76f1f272d..1b95c99d64 100644 --- a/plugins/MantisCoreFormatting/lang/strings_qqq.txt +++ b/plugins/MantisCoreFormatting/lang/strings_qqq.txt @@ -1,32 +1,46 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Message documentation (Message documentation) + +/** + * Language File - Message documentation (Message documentation) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * - * @author Fryed-peach + * @author Damien Regad + * @author David Hicks + * @author Siebrand Mazeland */ $s_plugin_format_config = '{{Identical|Configuration}}'; diff --git a/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt b/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt index c2f5a7a7ce..5e9fb594b9 100644 --- a/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt +++ b/plugins/MantisCoreFormatting/lang/strings_ripoarisch.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Ripoarisch (Ripoarisch) +/** + * Language File - Ripoarisch (Ripoarisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Purodha */ diff --git a/plugins/MantisCoreFormatting/lang/strings_russian.txt b/plugins/MantisCoreFormatting/lang/strings_russian.txt index fa1b936665..413d2891a0 100644 --- a/plugins/MantisCoreFormatting/lang/strings_russian.txt +++ b/plugins/MantisCoreFormatting/lang/strings_russian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Russian (Русский) +/** + * Language File - Russian (Русский) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Kirill * @author Александр Сигачёв diff --git a/plugins/MantisCoreFormatting/lang/strings_slovak.txt b/plugins/MantisCoreFormatting/lang/strings_slovak.txt index 670593cb27..fd7a8c5598 100644 --- a/plugins/MantisCoreFormatting/lang/strings_slovak.txt +++ b/plugins/MantisCoreFormatting/lang/strings_slovak.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Slovak (Slovenčina) +/** + * Language File - Slovak (Slovenčina) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Rudko */ diff --git a/plugins/MantisCoreFormatting/lang/strings_spanish.txt b/plugins/MantisCoreFormatting/lang/strings_spanish.txt index 5879f3a41d..b9613d6cac 100644 --- a/plugins/MantisCoreFormatting/lang/strings_spanish.txt +++ b/plugins/MantisCoreFormatting/lang/strings_spanish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Spanish (Español) +/** + * Language File - Spanish (Español) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bithunter * @author Locos epraix diff --git a/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt b/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt index 9fa18564ba..34a58054bf 100644 --- a/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt +++ b/plugins/MantisCoreFormatting/lang/strings_swissgerman.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Swiss German (Alemannisch) +/** + * Language File - Swiss German (Alemannisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Als-Holder */ From 76ecda6b1851562559c522365b135bff5e9c66f0 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 12 Oct 2013 01:29:27 +0200 Subject: [PATCH 6/9] Language file headers for MantisGraph plugin --- plugins/MantisGraph/lang/strings_arabic.txt | 51 ++++++++++------- .../lang/strings_arabicegyptianspoken.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_breton.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_bulgarian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_catalan.txt | 51 ++++++++++------- .../lang/strings_chinese_simplified.txt | 51 ++++++++++------- .../lang/strings_chinese_traditional.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_czech.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_danish.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_dutch.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_english.txt | 55 ++++++++++++------- plugins/MantisGraph/lang/strings_estonian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_finnish.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_french.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_galician.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_german.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_greek.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_hebrew.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_hungarian.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_icelandic.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_italian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_japanese.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_korean.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_lithuanian.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_macedonian.txt | 48 +++++++++------- .../lang/strings_norwegian_bokmal.txt | 51 ++++++++++------- .../lang/strings_norwegian_nynorsk.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_occitan.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_polish.txt | 51 ++++++++++------- .../lang/strings_portuguese_brazil.txt | 51 ++++++++++------- .../lang/strings_portuguese_standard.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_qqq.txt | 52 +++++++++++------- .../MantisGraph/lang/strings_ripoarisch.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_romanian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_russian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_serbian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_slovak.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_spanish.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_swedish.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_swissgerman.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_tagalog.txt | 51 ++++++++++------- .../MantisGraph/lang/strings_ukrainian.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_urdu.txt | 51 ++++++++++------- plugins/MantisGraph/lang/strings_volapuk.txt | 51 ++++++++++------- 44 files changed, 1367 insertions(+), 879 deletions(-) diff --git a/plugins/MantisGraph/lang/strings_arabic.txt b/plugins/MantisGraph/lang/strings_arabic.txt index 12c9c6816a..69c87a8866 100644 --- a/plugins/MantisGraph/lang/strings_arabic.txt +++ b/plugins/MantisGraph/lang/strings_arabic.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Arabic (العربية) +/** + * Language File - Arabic (العربية) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Meno25 * @author OsamaK diff --git a/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt b/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt index c8c942c62c..2503905275 100644 --- a/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt +++ b/plugins/MantisGraph/lang/strings_arabicegyptianspoken.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Egyptian Spoken Arabic (مصرى) +/** + * Language File - Egyptian Spoken Arabic (مصرى) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Meno25 */ diff --git a/plugins/MantisGraph/lang/strings_breton.txt b/plugins/MantisGraph/lang/strings_breton.txt index acbd45b7bc..e23e07530a 100644 --- a/plugins/MantisGraph/lang/strings_breton.txt +++ b/plugins/MantisGraph/lang/strings_breton.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Breton (Brezhoneg) +/** + * Language File - Breton (Brezhoneg) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Fohanno */ diff --git a/plugins/MantisGraph/lang/strings_bulgarian.txt b/plugins/MantisGraph/lang/strings_bulgarian.txt index 4cf17780d3..e760c7af1f 100644 --- a/plugins/MantisGraph/lang/strings_bulgarian.txt +++ b/plugins/MantisGraph/lang/strings_bulgarian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Bulgarian (Български) +/** + * Language File - Bulgarian (Български) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_catalan.txt b/plugins/MantisGraph/lang/strings_catalan.txt index 166c5ef43a..99fcf74200 100644 --- a/plugins/MantisGraph/lang/strings_catalan.txt +++ b/plugins/MantisGraph/lang/strings_catalan.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Catalan (Català) +/** + * Language File - Catalan (Català) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bernat * @author Paucabot diff --git a/plugins/MantisGraph/lang/strings_chinese_simplified.txt b/plugins/MantisGraph/lang/strings_chinese_simplified.txt index 8510800f1c..b7ceb8d3be 100644 --- a/plugins/MantisGraph/lang/strings_chinese_simplified.txt +++ b/plugins/MantisGraph/lang/strings_chinese_simplified.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Simplified Chinese (‪中文(简体)‬) +/** + * Language File - Simplified Chinese (‪中文(简体)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_chinese_traditional.txt b/plugins/MantisGraph/lang/strings_chinese_traditional.txt index 11eef448dc..46cbcd802e 100644 --- a/plugins/MantisGraph/lang/strings_chinese_traditional.txt +++ b/plugins/MantisGraph/lang/strings_chinese_traditional.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Traditional Chinese (‪中文(繁體)‬) +/** + * Language File - Traditional Chinese (‪中文(繁體)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_czech.txt b/plugins/MantisGraph/lang/strings_czech.txt index 759b8c3f85..ab641d7986 100644 --- a/plugins/MantisGraph/lang/strings_czech.txt +++ b/plugins/MantisGraph/lang/strings_czech.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Czech (Česky) +/** + * Language File - Czech (Česky) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Kuvaly */ diff --git a/plugins/MantisGraph/lang/strings_danish.txt b/plugins/MantisGraph/lang/strings_danish.txt index d865d9a3c7..dc9ddef43b 100644 --- a/plugins/MantisGraph/lang/strings_danish.txt +++ b/plugins/MantisGraph/lang/strings_danish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Danish (Dansk) +/** + * Language File - Danish (Dansk) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_dutch.txt b/plugins/MantisGraph/lang/strings_dutch.txt index d3d9e0e704..3ee34b1e1f 100644 --- a/plugins/MantisGraph/lang/strings_dutch.txt +++ b/plugins/MantisGraph/lang/strings_dutch.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Dutch (Nederlands) +/** + * Language File - Dutch (Nederlands) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Siebrand */ diff --git a/plugins/MantisGraph/lang/strings_english.txt b/plugins/MantisGraph/lang/strings_english.txt index 48be464ad3..7e814c08cc 100644 --- a/plugins/MantisGraph/lang/strings_english.txt +++ b/plugins/MantisGraph/lang/strings_english.txt @@ -1,31 +1,46 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** English (English) +/** + * Language File - English (English) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * + * @author Damien Regad + * @author David Hicks + * @author Paul Richards + * @author Siebrand Mazeland */ $s_plugin_graph_title = 'Mantis Graphs'; diff --git a/plugins/MantisGraph/lang/strings_estonian.txt b/plugins/MantisGraph/lang/strings_estonian.txt index ef15fc155a..4f8347ff52 100644 --- a/plugins/MantisGraph/lang/strings_estonian.txt +++ b/plugins/MantisGraph/lang/strings_estonian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Estonian (Eesti) +/** + * Language File - Estonian (Eesti) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Avjoska */ diff --git a/plugins/MantisGraph/lang/strings_finnish.txt b/plugins/MantisGraph/lang/strings_finnish.txt index 426ee40fc9..92ef333096 100644 --- a/plugins/MantisGraph/lang/strings_finnish.txt +++ b/plugins/MantisGraph/lang/strings_finnish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Finnish (Suomi) +/** + * Language File - Finnish (Suomi) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_french.txt b/plugins/MantisGraph/lang/strings_french.txt index 8d56feb869..0d2d4c674e 100644 --- a/plugins/MantisGraph/lang/strings_french.txt +++ b/plugins/MantisGraph/lang/strings_french.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** French (Français) +/** + * Language File - French (Français) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Cedric31 * @author IAlex diff --git a/plugins/MantisGraph/lang/strings_galician.txt b/plugins/MantisGraph/lang/strings_galician.txt index c8f13a5c8d..b41122ffdd 100644 --- a/plugins/MantisGraph/lang/strings_galician.txt +++ b/plugins/MantisGraph/lang/strings_galician.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Galician (Galego) +/** + * Language File - Galician (Galego) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Toliño */ diff --git a/plugins/MantisGraph/lang/strings_german.txt b/plugins/MantisGraph/lang/strings_german.txt index 0b4ab43653..af9f85cb5a 100644 --- a/plugins/MantisGraph/lang/strings_german.txt +++ b/plugins/MantisGraph/lang/strings_german.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** German (Deutsch) +/** + * Language File - German (Deutsch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Atrol * @author Floh diff --git a/plugins/MantisGraph/lang/strings_greek.txt b/plugins/MantisGraph/lang/strings_greek.txt index 89d6af34a4..bb9ccdd925 100644 --- a/plugins/MantisGraph/lang/strings_greek.txt +++ b/plugins/MantisGraph/lang/strings_greek.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Greek (Ελληνικά) +/** + * Language File - Greek (Ελληνικά) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Omnipaedista */ diff --git a/plugins/MantisGraph/lang/strings_hebrew.txt b/plugins/MantisGraph/lang/strings_hebrew.txt index 807d35727d..af539e902c 100644 --- a/plugins/MantisGraph/lang/strings_hebrew.txt +++ b/plugins/MantisGraph/lang/strings_hebrew.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Hebrew (עברית) +/** + * Language File - Hebrew (עברית) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_hungarian.txt b/plugins/MantisGraph/lang/strings_hungarian.txt index c534a2aad2..3bd0b18231 100644 --- a/plugins/MantisGraph/lang/strings_hungarian.txt +++ b/plugins/MantisGraph/lang/strings_hungarian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Hungarian (Magyar) +/** + * Language File - Hungarian (Magyar) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Glanthor Reviol */ diff --git a/plugins/MantisGraph/lang/strings_icelandic.txt b/plugins/MantisGraph/lang/strings_icelandic.txt index 656139dfa7..885f6edafa 100644 --- a/plugins/MantisGraph/lang/strings_icelandic.txt +++ b/plugins/MantisGraph/lang/strings_icelandic.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Icelandic (Íslenska) +/** + * Language File - Icelandic (Íslenska) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_italian.txt b/plugins/MantisGraph/lang/strings_italian.txt index 45f928ef08..f142668f9d 100644 --- a/plugins/MantisGraph/lang/strings_italian.txt +++ b/plugins/MantisGraph/lang/strings_italian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Italian (Italiano) +/** + * Language File - Italian (Italiano) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_japanese.txt b/plugins/MantisGraph/lang/strings_japanese.txt index 53dd33f06f..e570a6931e 100644 --- a/plugins/MantisGraph/lang/strings_japanese.txt +++ b/plugins/MantisGraph/lang/strings_japanese.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Japanese (日本語) +/** + * Language File - Japanese (日本語) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Fryed-peach */ diff --git a/plugins/MantisGraph/lang/strings_korean.txt b/plugins/MantisGraph/lang/strings_korean.txt index f31a0cbf8c..5b8304b0a0 100644 --- a/plugins/MantisGraph/lang/strings_korean.txt +++ b/plugins/MantisGraph/lang/strings_korean.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Korean (한국어) +/** + * Language File - Korean (한국어) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_lithuanian.txt b/plugins/MantisGraph/lang/strings_lithuanian.txt index 67bc7ec03f..a6d2ffed84 100644 --- a/plugins/MantisGraph/lang/strings_lithuanian.txt +++ b/plugins/MantisGraph/lang/strings_lithuanian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Lithuanian (Lietuvių) +/** + * Language File - Lithuanian (Lietuvių) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_macedonian.txt b/plugins/MantisGraph/lang/strings_macedonian.txt index fce8344127..d62ea8b5b5 100644 --- a/plugins/MantisGraph/lang/strings_macedonian.txt +++ b/plugins/MantisGraph/lang/strings_macedonian.txt @@ -1,30 +1,40 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . /** Macedonian (Македонски) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bjankuloski06 */ diff --git a/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt b/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt index 983b0343b4..c9e01e9fb6 100644 --- a/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt +++ b/plugins/MantisGraph/lang/strings_norwegian_bokmal.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +/** + * Language File - Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Nghtwlkr */ diff --git a/plugins/MantisGraph/lang/strings_norwegian_nynorsk.txt b/plugins/MantisGraph/lang/strings_norwegian_nynorsk.txt index c27efcf5d7..168086d8c8 100644 --- a/plugins/MantisGraph/lang/strings_norwegian_nynorsk.txt +++ b/plugins/MantisGraph/lang/strings_norwegian_nynorsk.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Norwegian Nynorsk (‪Norsk (nynorsk)‬) +/** + * Language File - Norwegian Nynorsk (‪Norsk (nynorsk)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_occitan.txt b/plugins/MantisGraph/lang/strings_occitan.txt index bfcfa6c00a..ffac5e39b0 100644 --- a/plugins/MantisGraph/lang/strings_occitan.txt +++ b/plugins/MantisGraph/lang/strings_occitan.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Occitan (Occitan) +/** + * Language File - Occitan (Occitan) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Cedric31 */ diff --git a/plugins/MantisGraph/lang/strings_polish.txt b/plugins/MantisGraph/lang/strings_polish.txt index 19e4456ee2..0dce1d099f 100644 --- a/plugins/MantisGraph/lang/strings_polish.txt +++ b/plugins/MantisGraph/lang/strings_polish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Polish (Polski) +/** + * Language File - Polish (Polski) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_portuguese_brazil.txt b/plugins/MantisGraph/lang/strings_portuguese_brazil.txt index 23164d0910..9088133175 100644 --- a/plugins/MantisGraph/lang/strings_portuguese_brazil.txt +++ b/plugins/MantisGraph/lang/strings_portuguese_brazil.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Brazilian Portuguese (Português do Brasil) +/** + * Language File - Brazilian Portuguese (Português do Brasil) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Luckas Blade */ diff --git a/plugins/MantisGraph/lang/strings_portuguese_standard.txt b/plugins/MantisGraph/lang/strings_portuguese_standard.txt index 37e804e0eb..a77c8dc161 100644 --- a/plugins/MantisGraph/lang/strings_portuguese_standard.txt +++ b/plugins/MantisGraph/lang/strings_portuguese_standard.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Portuguese (Português) +/** + * Language File - Portuguese (Português) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Hamilton Abreu */ diff --git a/plugins/MantisGraph/lang/strings_qqq.txt b/plugins/MantisGraph/lang/strings_qqq.txt index ec1021e3af..651d190846 100644 --- a/plugins/MantisGraph/lang/strings_qqq.txt +++ b/plugins/MantisGraph/lang/strings_qqq.txt @@ -1,32 +1,44 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . /** Message documentation (Message documentation) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * - * @author Fryed-peach + * @author Damien Regad + * @author David Hicks + * @author Siebrand Mazeland */ $s_plugin_MantisGraph_config = '{{Identical|Configuration}}'; diff --git a/plugins/MantisGraph/lang/strings_ripoarisch.txt b/plugins/MantisGraph/lang/strings_ripoarisch.txt index 9dc1d736e2..9b8ad3f7da 100644 --- a/plugins/MantisGraph/lang/strings_ripoarisch.txt +++ b/plugins/MantisGraph/lang/strings_ripoarisch.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Ripoarisch (Ripoarisch) +/** + * Language File - Ripoarisch (Ripoarisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Purodha */ diff --git a/plugins/MantisGraph/lang/strings_romanian.txt b/plugins/MantisGraph/lang/strings_romanian.txt index 3e9d18e8a6..3cd45b62ad 100644 --- a/plugins/MantisGraph/lang/strings_romanian.txt +++ b/plugins/MantisGraph/lang/strings_romanian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Romanian (Română) +/** + * Language File - Romanian (Română) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_russian.txt b/plugins/MantisGraph/lang/strings_russian.txt index 14aa20a21d..b1e174de5a 100644 --- a/plugins/MantisGraph/lang/strings_russian.txt +++ b/plugins/MantisGraph/lang/strings_russian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Russian (Русский) +/** + * Language File - Russian (Русский) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Kirill * @author Lockal diff --git a/plugins/MantisGraph/lang/strings_serbian.txt b/plugins/MantisGraph/lang/strings_serbian.txt index 6751680288..ac998451b9 100644 --- a/plugins/MantisGraph/lang/strings_serbian.txt +++ b/plugins/MantisGraph/lang/strings_serbian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Serbian Cyrillic ekavian (Српски (ћирилица)) +/** + * Language File - Serbian Cyrillic ekavian (Српски (ћирилица)) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_slovak.txt b/plugins/MantisGraph/lang/strings_slovak.txt index 1daf9ee923..f3edd6a7c6 100644 --- a/plugins/MantisGraph/lang/strings_slovak.txt +++ b/plugins/MantisGraph/lang/strings_slovak.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Slovak (Slovenčina) +/** + * Language File - Slovak (Slovenčina) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Rudko */ diff --git a/plugins/MantisGraph/lang/strings_spanish.txt b/plugins/MantisGraph/lang/strings_spanish.txt index 8872a6a828..b70b00ab71 100644 --- a/plugins/MantisGraph/lang/strings_spanish.txt +++ b/plugins/MantisGraph/lang/strings_spanish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Spanish (Español) +/** + * Language File - Spanish (Español) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Antur * @author Bithunter diff --git a/plugins/MantisGraph/lang/strings_swedish.txt b/plugins/MantisGraph/lang/strings_swedish.txt index c400f64db5..5c0e2fdd8d 100644 --- a/plugins/MantisGraph/lang/strings_swedish.txt +++ b/plugins/MantisGraph/lang/strings_swedish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Swedish (Svenska) +/** + * Language File - Swedish (Svenska) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_swissgerman.txt b/plugins/MantisGraph/lang/strings_swissgerman.txt index ac20d9d32c..d901978e40 100644 --- a/plugins/MantisGraph/lang/strings_swissgerman.txt +++ b/plugins/MantisGraph/lang/strings_swissgerman.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Swiss German (Alemannisch) +/** + * Language File - Swiss German (Alemannisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Als-Holder */ diff --git a/plugins/MantisGraph/lang/strings_tagalog.txt b/plugins/MantisGraph/lang/strings_tagalog.txt index 0a7409fc46..a6e9cec002 100644 --- a/plugins/MantisGraph/lang/strings_tagalog.txt +++ b/plugins/MantisGraph/lang/strings_tagalog.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Tagalog (Tagalog) +/** + * Language File - Tagalog (Tagalog) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_ukrainian.txt b/plugins/MantisGraph/lang/strings_ukrainian.txt index 4833228996..9e44b16d6c 100644 --- a/plugins/MantisGraph/lang/strings_ukrainian.txt +++ b/plugins/MantisGraph/lang/strings_ukrainian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Ukrainian (Українська) +/** + * Language File - Ukrainian (Українська) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_urdu.txt b/plugins/MantisGraph/lang/strings_urdu.txt index 64cc906472..1196134228 100644 --- a/plugins/MantisGraph/lang/strings_urdu.txt +++ b/plugins/MantisGraph/lang/strings_urdu.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Urdu (اردو) +/** + * Language File - Urdu (اردو) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ diff --git a/plugins/MantisGraph/lang/strings_volapuk.txt b/plugins/MantisGraph/lang/strings_volapuk.txt index 743527e8cc..72e1b49112 100644 --- a/plugins/MantisGraph/lang/strings_volapuk.txt +++ b/plugins/MantisGraph/lang/strings_volapuk.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Volapük (Volapük) +/** + * Language File - Volapük (Volapük) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * */ From 5f054777a970f5710afce0d215f3b59140887803 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 12 Oct 2013 01:39:53 +0200 Subject: [PATCH 7/9] Language file headers for XmlImportExport plugin --- .../XmlImportExport/lang/strings_arabic.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_breton.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_catalan.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_dutch.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_english.txt | 55 ++++++++++++------- .../XmlImportExport/lang/strings_finnish.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_french.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_galician.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_german.txt | 51 ++++++++++------- .../lang/strings_hungarian.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_japanese.txt | 51 ++++++++++------- .../lang/strings_macedonian.txt | 48 +++++++++------- .../lang/strings_norwegian_bokmal.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_occitan.txt | 51 ++++++++++------- .../lang/strings_portuguese_standard.txt | 51 ++++++++++------- .../lang/strings_ripoarisch.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_russian.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_slovak.txt | 51 ++++++++++------- .../XmlImportExport/lang/strings_spanish.txt | 51 ++++++++++------- .../lang/strings_swissgerman.txt | 51 ++++++++++------- 20 files changed, 623 insertions(+), 398 deletions(-) diff --git a/plugins/XmlImportExport/lang/strings_arabic.txt b/plugins/XmlImportExport/lang/strings_arabic.txt index cc33476e1f..0b8e4b29e4 100644 --- a/plugins/XmlImportExport/lang/strings_arabic.txt +++ b/plugins/XmlImportExport/lang/strings_arabic.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Arabic (العربية) +/** + * Language File - Arabic (العربية) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Meno25 * @author OsamaK diff --git a/plugins/XmlImportExport/lang/strings_breton.txt b/plugins/XmlImportExport/lang/strings_breton.txt index 3f139e29bc..94e9588cb3 100644 --- a/plugins/XmlImportExport/lang/strings_breton.txt +++ b/plugins/XmlImportExport/lang/strings_breton.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Breton (Brezhoneg) +/** + * Language File - Breton (Brezhoneg) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Fohanno */ diff --git a/plugins/XmlImportExport/lang/strings_catalan.txt b/plugins/XmlImportExport/lang/strings_catalan.txt index 6966758e38..b1c65367a1 100644 --- a/plugins/XmlImportExport/lang/strings_catalan.txt +++ b/plugins/XmlImportExport/lang/strings_catalan.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Catalan (Català) +/** + * Language File - Catalan (Català) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bernat * @author Paucabot diff --git a/plugins/XmlImportExport/lang/strings_dutch.txt b/plugins/XmlImportExport/lang/strings_dutch.txt index 73d7c89209..eb86e35ea9 100644 --- a/plugins/XmlImportExport/lang/strings_dutch.txt +++ b/plugins/XmlImportExport/lang/strings_dutch.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Dutch (Nederlands) +/** + * Language File - Dutch (Nederlands) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Siebrand */ diff --git a/plugins/XmlImportExport/lang/strings_english.txt b/plugins/XmlImportExport/lang/strings_english.txt index 35acfb66d2..763af3ea72 100644 --- a/plugins/XmlImportExport/lang/strings_english.txt +++ b/plugins/XmlImportExport/lang/strings_english.txt @@ -1,30 +1,47 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** English (English) +/** + * Language File - English (English) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * + * @author Damien Regad + * @author David Hicks + * @author Gianluca Sforna + * @author Paul Richards + * @author Siebrand Mazeland */ $s_plugin_XmlImportExport_title = 'Import/Export issues'; diff --git a/plugins/XmlImportExport/lang/strings_finnish.txt b/plugins/XmlImportExport/lang/strings_finnish.txt index 6c28a91e7e..272e841a6a 100644 --- a/plugins/XmlImportExport/lang/strings_finnish.txt +++ b/plugins/XmlImportExport/lang/strings_finnish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Finnish (Suomi) +/** + * Language File - Finnish (Suomi) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Centerlink */ diff --git a/plugins/XmlImportExport/lang/strings_french.txt b/plugins/XmlImportExport/lang/strings_french.txt index 50d53268f0..a658f350d6 100644 --- a/plugins/XmlImportExport/lang/strings_french.txt +++ b/plugins/XmlImportExport/lang/strings_french.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** French (Français) +/** + * Language File - French (Français) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author IAlex */ diff --git a/plugins/XmlImportExport/lang/strings_galician.txt b/plugins/XmlImportExport/lang/strings_galician.txt index 4fe02ade84..f07efa4fe5 100644 --- a/plugins/XmlImportExport/lang/strings_galician.txt +++ b/plugins/XmlImportExport/lang/strings_galician.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Galician (Galego) +/** + * Language File - Galician (Galego) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Toliño */ diff --git a/plugins/XmlImportExport/lang/strings_german.txt b/plugins/XmlImportExport/lang/strings_german.txt index 4cabd1e3bd..70d9996149 100644 --- a/plugins/XmlImportExport/lang/strings_german.txt +++ b/plugins/XmlImportExport/lang/strings_german.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** German (Deutsch) +/** + * Language File - German (Deutsch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Atrol * @author Umherirrender diff --git a/plugins/XmlImportExport/lang/strings_hungarian.txt b/plugins/XmlImportExport/lang/strings_hungarian.txt index 30e2c1f4a8..ec97fa46db 100644 --- a/plugins/XmlImportExport/lang/strings_hungarian.txt +++ b/plugins/XmlImportExport/lang/strings_hungarian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Hungarian (Magyar) +/** + * Language File - Hungarian (Magyar) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Glanthor Reviol */ diff --git a/plugins/XmlImportExport/lang/strings_japanese.txt b/plugins/XmlImportExport/lang/strings_japanese.txt index c9f755daf2..cb7fe308fd 100644 --- a/plugins/XmlImportExport/lang/strings_japanese.txt +++ b/plugins/XmlImportExport/lang/strings_japanese.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Japanese (日本語) +/** + * Language File - Japanese (日本語) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Fryed-peach */ diff --git a/plugins/XmlImportExport/lang/strings_macedonian.txt b/plugins/XmlImportExport/lang/strings_macedonian.txt index 6714234dfc..0cb31c7ed2 100644 --- a/plugins/XmlImportExport/lang/strings_macedonian.txt +++ b/plugins/XmlImportExport/lang/strings_macedonian.txt @@ -1,30 +1,40 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . /** Macedonian (Македонски) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bjankuloski06 */ diff --git a/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt b/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt index c76077e900..cc378a0a54 100644 --- a/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt +++ b/plugins/XmlImportExport/lang/strings_norwegian_bokmal.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +/** + * Language File - Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Nghtwlkr */ diff --git a/plugins/XmlImportExport/lang/strings_occitan.txt b/plugins/XmlImportExport/lang/strings_occitan.txt index 78288f4382..e341c01938 100644 --- a/plugins/XmlImportExport/lang/strings_occitan.txt +++ b/plugins/XmlImportExport/lang/strings_occitan.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Occitan (Occitan) +/** + * Language File - Occitan (Occitan) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Cedric31 */ diff --git a/plugins/XmlImportExport/lang/strings_portuguese_standard.txt b/plugins/XmlImportExport/lang/strings_portuguese_standard.txt index b819e784e9..cd98ae4f1f 100644 --- a/plugins/XmlImportExport/lang/strings_portuguese_standard.txt +++ b/plugins/XmlImportExport/lang/strings_portuguese_standard.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Portuguese (Português) +/** + * Language File - Portuguese (Português) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Hamilton Abreu */ diff --git a/plugins/XmlImportExport/lang/strings_ripoarisch.txt b/plugins/XmlImportExport/lang/strings_ripoarisch.txt index e96544eede..cf0329f032 100644 --- a/plugins/XmlImportExport/lang/strings_ripoarisch.txt +++ b/plugins/XmlImportExport/lang/strings_ripoarisch.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Ripoarisch (Ripoarisch) +/** + * Language File - Ripoarisch (Ripoarisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Purodha */ diff --git a/plugins/XmlImportExport/lang/strings_russian.txt b/plugins/XmlImportExport/lang/strings_russian.txt index 0d288d4bc0..79236b0250 100644 --- a/plugins/XmlImportExport/lang/strings_russian.txt +++ b/plugins/XmlImportExport/lang/strings_russian.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Russian (Русский) +/** + * Language File - Russian (Русский) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Kirill */ diff --git a/plugins/XmlImportExport/lang/strings_slovak.txt b/plugins/XmlImportExport/lang/strings_slovak.txt index c780ea0e5f..dabebd36cc 100644 --- a/plugins/XmlImportExport/lang/strings_slovak.txt +++ b/plugins/XmlImportExport/lang/strings_slovak.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Slovak (Slovenčina) +/** + * Language File - Slovak (Slovenčina) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Rudko */ diff --git a/plugins/XmlImportExport/lang/strings_spanish.txt b/plugins/XmlImportExport/lang/strings_spanish.txt index 8b93537f0d..2033f52399 100644 --- a/plugins/XmlImportExport/lang/strings_spanish.txt +++ b/plugins/XmlImportExport/lang/strings_spanish.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Spanish (Español) +/** + * Language File - Spanish (Español) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Bithunter * @author Crazymadlover diff --git a/plugins/XmlImportExport/lang/strings_swissgerman.txt b/plugins/XmlImportExport/lang/strings_swissgerman.txt index 865f63b15f..1d0728bad3 100644 --- a/plugins/XmlImportExport/lang/strings_swissgerman.txt +++ b/plugins/XmlImportExport/lang/strings_swissgerman.txt @@ -1,30 +1,41 @@ . - */ +# MantisBT - A PHP based bugtracking system + +# MantisBT is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 2 of the License, or +# (at your option) any later version. +# +# MantisBT is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with MantisBT. If not, see . -/** Swiss German (Alemannisch) +/** + * Language File - Swiss German (Alemannisch) + * + * ********************************************************************** + * ** This file is generated from translations stored in translatewiki ** + * ** Information on Copyright/License for translatewiki translations ** + * ** is available at http://translatewiki.net/wiki/Project:About ** + * ********************************************************************** + * ** ** + * ** 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 ** + * ********************************************************************** * * See the qqq 'language' for message documentation incl. usage of parameters - * To improve a translation please visit http://translatewiki.net * * @ingroup Language * @file + * @copyright Copyright 2002 MantisBT Team - mantisbt-dev@lists.sourceforge.net + * @link http://www.mantisbt.org * * @author Als-Holder * @author Purodha From 9646dc52f42fa2c290c508a5aba47bdd83ba07a7 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 12 Oct 2013 02:32:54 +0200 Subject: [PATCH 8/9] test_langs.php: ignore README file --- admin/test_langs.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/admin/test_langs.php b/admin/test_langs.php index 0e38780486..8ff2521c68 100644 --- a/admin/test_langs.php +++ b/admin/test_langs.php @@ -118,7 +118,11 @@ function checklangdir( $p_path, $p_lang_files = null ) { } // Skipping english language, readme and hidden files foreach( $t_lang_files as $key => $t_lang ) { - if( $t_lang[0] == '.' || $t_lang == 'langreadme.txt' || $t_lang == STRINGS_ENGLISH ) { + if( $t_lang[0] == '.' + || $t_lang == 'langreadme.txt' + || $t_lang == 'README' + || $t_lang == STRINGS_ENGLISH + ) { unset( $t_lang_files[$key] ); } } From 4c25e01fd7fa6b0f5539d33ee21b0e555abc5366 Mon Sep 17 00:00:00 2001 From: Damien Regad Date: Sat, 12 Oct 2013 02:38:44 +0200 Subject: [PATCH 9/9] Fixing errors and warnings detected by test_langs.php - Remove obsolete error strings from language files - Missing ERROR_DUPLICATE_FILE constant causes errors --- lang/strings_afrikaans.txt | 6 ------ lang/strings_amharic.txt | 6 ------ lang/strings_arabic.txt | 9 --------- lang/strings_arabicegyptianspoken.txt | 9 --------- lang/strings_breton.txt | 12 ------------ lang/strings_bulgarian.txt | 1 - lang/strings_catalan.txt | 12 ------------ lang/strings_chinese_simplified.txt | 1 - lang/strings_chinese_traditional.txt | 1 - lang/strings_croatian.txt | 5 ----- lang/strings_czech.txt | 6 ------ lang/strings_danish.txt | 1 - lang/strings_dutch.txt | 12 ------------ lang/strings_english.txt | 11 ----------- lang/strings_estonian.txt | 12 ------------ lang/strings_finnish.txt | 8 -------- lang/strings_french.txt | 12 ------------ lang/strings_galician.txt | 12 ------------ lang/strings_german.txt | 12 ------------ lang/strings_hebrew.txt | 5 ----- lang/strings_hungarian.txt | 7 ------- lang/strings_icelandic.txt | 1 - lang/strings_italian.txt | 5 ----- lang/strings_japanese.txt | 12 ------------ lang/strings_korean.txt | 1 - lang/strings_latvian.txt | 1 - lang/strings_lithuanian.txt | 1 - lang/strings_macedonian.txt | 12 ------------ lang/strings_norwegian_bokmal.txt | 12 ------------ lang/strings_norwegian_nynorsk.txt | 7 ------- lang/strings_occitan.txt | 5 ----- lang/strings_polish.txt | 5 ----- lang/strings_portuguese_brazil.txt | 12 ------------ lang/strings_portuguese_standard.txt | 1 - lang/strings_qqq.txt | 4 ---- lang/strings_ripoarisch.txt | 1 - lang/strings_romanian.txt | 1 - lang/strings_russian.txt | 12 ------------ lang/strings_serbian.txt | 1 - lang/strings_slovak.txt | 5 ----- lang/strings_slovene.txt | 1 - lang/strings_spanish.txt | 12 ------------ lang/strings_swedish.txt | 5 ----- lang/strings_swissgerman.txt | 12 ------------ lang/strings_tagalog.txt | 5 ----- lang/strings_turkish.txt | 5 ----- lang/strings_ukrainian.txt | 1 - lang/strings_urdu.txt | 1 - lang/strings_volapuk.txt | 7 ------- 49 files changed, 308 deletions(-) diff --git a/lang/strings_afrikaans.txt b/lang/strings_afrikaans.txt index 523e90cb32..9c03652b2a 100644 --- a/lang/strings_afrikaans.txt +++ b/lang/strings_afrikaans.txt @@ -61,7 +61,6 @@ $s_jump_to_bugnotes = 'Spring na Opmerkings'; $s_access_level_project = 'Projek toegangsvlakke'; $s_assigned_projects = 'Toegekende projekte'; $s_assigned_projects_label = 'Toegekende projekte:'; -$s_unassigned_projects_label = 'Nie-toegekende projekte:'; $s_print = 'Druk'; $s_jump = 'Spring na'; $s_copy_users = 'Kopieer gebruikers'; @@ -330,7 +329,6 @@ $s_plugin_actions = 'Aksies'; $s_plugin_install = 'Installeer'; $s_plugin_upgrade = 'Opgradeer'; $s_plugin_uninstall = 'Deïnstalleer'; -$s_plugin_key_label = 'Sleutel:'; $s_project_delete_button = 'Verwyder projek'; $s_edit_project_title = 'Wysig projek'; $s_project_name = 'Projeknaam'; @@ -424,7 +422,6 @@ $s_show_label = 'Wys:'; $s_changed = 'Opgedateer (ure)'; $s_changed_label = 'Opgedateer (ure):'; $s_updated = 'Opgedateer'; -$s_sort_label = 'Sorteer op:'; $s_none = 'geen'; $s_search = 'Soek'; $s_view_prev_link = 'Vorige'; @@ -433,8 +430,6 @@ $s_prev = 'Vorige'; $s_next = 'Volgende'; $s_first = 'Eerste'; $s_last = 'Laaste'; -$s_start_date_label = 'Begindatum:'; -$s_end_date_label = 'Einddatum:'; $s_yes = 'Ja'; $s_no = 'Nee'; $s_ok = 'OK'; @@ -536,7 +531,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Daar was \'n fout in u verslag.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Geen lêer is verskaf nie.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Die lêertipe word nie toegelaat nie.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Die gids bestaan nie. Kontroleer asseblief die projek se instellings.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Die lêer bestaan reeds. Verwyder eers die bestaande lêer.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Die projek bestaan reeds.'; $MANTIS_ERROR[ERROR_ACCESS_DENIED] = 'Toegang geweier.'; $MANTIS_ERROR[ERROR_LANG_STRING_NOT_FOUND] = 'String %1$s" is nie gevind nie.'; diff --git a/lang/strings_amharic.txt b/lang/strings_amharic.txt index a12c3a3922..070e974963 100644 --- a/lang/strings_amharic.txt +++ b/lang/strings_amharic.txt @@ -63,7 +63,6 @@ $s_anonymous = ' ስም የሌለው'; $s_jump_to_bugnotes = 'ወደ ማስታወሻ እለፍ'; $s_assigned_projects = 'የተመደበ ፕሮጀክት'; $s_assigned_projects_label = 'የተመደበ ፕሮጀክት:'; -$s_unassigned_projects_label = 'ያልተመደበ ፕሮጀክት'; $s_print = 'አትም'; $s_jump = 'መዝለል'; $s_copy_categories_from = 'የፈርጅ ቅጂ ከ'; @@ -299,8 +298,6 @@ $s_select_project_button = 'ፕሮጀክት ምረጥ'; $s_lost_password_title = 'የይለፍ ቃሉን እንደገና አስተካክል'; $s_lost_password_done_title = 'የይለፍ ቃሉ መልዕክት ተልኮዋል'; $s_lost_password_subject = 'የይለፍ ቃሉን እንደገና አስተከክል'; -$s_open_and_assigned_to_me_label = 'ለእኔ የተከፈተና የተመደበ'; -$s_open_and_reported_to_me_label = 'በእኔ የተከፈተና ሪፖርት የተደረገ'; $s_newer_news_link = 'አዲስ ዜናዎች'; $s_older_news_link = 'የቆዩ ዜናዎች'; $s_archives = 'መዝገቦች'; @@ -344,7 +341,6 @@ $s_changed = 'የተቀየረ(ሰዓት) :'; $s_changed_label = 'የተቀየረ(ሰዓት) :'; $s_viewing_bugs_title = 'ጉዳዩን በመመልከት ላይ'; $s_updated = 'የዘመነ'; -$s_sort_label = 'የተደረደረው በ :'; $s_issue_id = 'ጉዳይ #'; $s_recently_visited = 'በቅርብ የተጎበኘ'; $s_note_user_id_label = 'ማስታወሻ በ :'; @@ -357,8 +353,6 @@ $s_prev = 'የበፊት'; $s_next = 'ቃጣይ'; $s_first = 'መጀመሪያ'; $s_last = 'መጨረሻ'; -$s_start_date_label = 'የመጀመሪያ ቀን :'; -$s_end_date_label = 'የመጨረሻው ቀን :'; $s_yes = 'አዎ'; $s_no = 'አይ'; $s_or_unassigned = 'ወይም ያልተመደበ'; diff --git a/lang/strings_arabic.txt b/lang/strings_arabic.txt index af3d760962..e81bc6ebc6 100644 --- a/lang/strings_arabic.txt +++ b/lang/strings_arabic.txt @@ -596,11 +596,6 @@ $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 = 'اعتمادات قديمة'; -$s_plugin_key_upgrade = 'الترقية مطلوبة'; $s_project_added_msg = 'المشروع تمت إضافته بنجاح...'; $s_category_added_msg = 'التصنيف تمت إضافته بنجاح...'; $s_category_deleted_msg = 'التصنيف تم حذفه بنجاح...'; @@ -820,7 +815,6 @@ $s_changed = 'تغيرت(ساعات)'; $s_viewing_bugs_title = 'عرض القضايا'; $s_updated = 'تم التحديث'; $s_sticky = 'عرض القضايا اللاصقة'; -$s_sort_label = 'رتب بواسطة:'; $s_issue_id = 'القضية #'; $s_recently_visited = 'المزارة حديثا'; $s_priority_abbreviation = 'P'; @@ -833,8 +827,6 @@ $s_prev = 'سابق'; $s_next = 'تالي'; $s_first = 'أول'; $s_last = 'آخر'; -$s_start_date_label = 'تاريخ البدء:'; -$s_end_date_label = 'تاريخ الانتهاء:'; $s_use_date_filters = 'استخدم فلاتر التاريخ'; $s_yes = 'نعم'; $s_no = 'لا'; @@ -1117,7 +1109,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'كان هناك خطأ في تقريرك.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'لا ملف تم تحديده'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'نوع الملف غير مسموح به'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'المجلد غير موجود. من فضلك تحقق من إعدادات المشروع.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'هذا ملف مكرر. من فضلك احذف الملف أولا.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'هناك مشروع بهذا الاسم بالفعل.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'حقل ضروري "%1$s" كان فارغا. من فضلك تحقق مرة أخرى من مدخلاتك.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'هذا الحساب محمي. أنت غير مسموح لك بالدخول إلى هذا حتى يتم رفع حماية الحساب.'; diff --git a/lang/strings_arabicegyptianspoken.txt b/lang/strings_arabicegyptianspoken.txt index 29c12f0e9f..abfe5a686c 100644 --- a/lang/strings_arabicegyptianspoken.txt +++ b/lang/strings_arabicegyptianspoken.txt @@ -596,11 +596,6 @@ $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 = 'اعتمادات قديمة'; -$s_plugin_key_upgrade = 'الترقيه مطلوبة'; $s_project_added_msg = 'المشروع تمت إضافته بنجاح...'; $s_category_added_msg = 'التصنيف تمت إضافته بنجاح...'; $s_category_deleted_msg = 'التصنيف تم حذفه بنجاح...'; @@ -820,7 +815,6 @@ $s_changed = 'تغيرت(ساعات)'; $s_viewing_bugs_title = 'عرض القضايا'; $s_updated = 'تم التحديث'; $s_sticky = 'عرض القضايا اللاصقة'; -$s_sort_label = 'رتب بواسطة:'; $s_issue_id = 'القضيه #'; $s_recently_visited = 'المزاره حديثا'; $s_priority_abbreviation = 'P'; @@ -833,8 +827,6 @@ $s_prev = 'سابق'; $s_next = 'تالي'; $s_first = 'أول'; $s_last = 'آخر'; -$s_start_date_label = 'تاريخ البدء:'; -$s_end_date_label = 'تاريخ الانتهاء:'; $s_use_date_filters = 'استخدم فلاتر التاريخ'; $s_yes = 'نعم'; $s_no = 'لا'; @@ -1117,7 +1109,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'كان هناك خطأ فى تقريرك.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'لا ملف تم تحديده'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'نوع الملف غير مسموح به'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'المجلد غير موجود. من فضلك تحقق من إعدادات المشروع.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'هذا ملف مكرر. من فضلك احذف الملف أولا.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'هناك مشروع بهذا الاسم بالفعل.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'حقل ضرورى "%1$s" كان فارغا. من فضلك تحقق مره أخرى من مدخلاتك.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'هذا الحساب محمى. أنت غير مسموح لك بالدخول إلى هذا حتى يتم رفع حمايه الحساب.'; diff --git a/lang/strings_breton.txt b/lang/strings_breton.txt index 5578788302..eef165bc96 100644 --- a/lang/strings_breton.txt +++ b/lang/strings_breton.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Live moned ar raktres'; $s_view_submitted_bug_link = 'Gwelet an draen kaset %1$s'; $s_assigned_projects = 'Raktresoù deverket'; $s_assigned_projects_label = 'Raktresoù deverket :'; -$s_unassigned_projects_label = 'Raktresoù n\'int ket deverket :'; $s_print = 'Moullañ'; $s_jump = 'Klask'; $s_copy_users = 'Eilañ an implijerien'; @@ -479,8 +478,6 @@ $s_lost_password_done_title = 'Kaset eo bet ar gemennadenn gant ar ger-tremen'; $s_lost_password_subject = 'Adderaouekaat ar ger-tremen'; $s_lost_password_info = 'Evit adderaouekaat ho ker-tremen, pourchasit an anv hag ar chomlec\'h postel evit ar gont, mar plij.

Ma klot ar roadennoù gant ur gont reizh, e vo kaset deoc\'h un URL dre bostel, ennañ ur c\'hod gwiriekaat evit ho kont. Heuilhit al liamm evit cheñch ho ker-tremen, mar plij.'; $s_lost_password_confirm_hash_OK = 'Asantet eo bet ho kadarnadur. Hizivait ho ker-tremen, mar plij.'; -$s_open_and_assigned_to_me_label = 'Digor ha deverket din-me :'; -$s_open_and_reported_to_me_label = 'Digor ha titouret ganin-me :'; $s_newer_news_link = 'Keleier nevesañ'; $s_older_news_link = 'Keleier koshañ'; $s_archives = 'Dielloù'; @@ -606,11 +603,6 @@ $s_plugin_install = 'Staliañ'; $s_plugin_upgrade = 'Lakaat a-live'; $s_plugin_uninstall = 'Distaliañ'; $s_plugin_uninstall_message = 'Ha sur oc\'h hoc\'h eus c\'hoant da zistaliañ al lugant « %1$s » ?'; -$s_plugin_key_label = 'Alc\'hwez :'; -$s_plugin_key_met = 'Prest eo al lugant'; -$s_plugin_key_unmet = 'Sujidigezhioù n\'int ket bet kavet'; -$s_plugin_key_dated = 'Sujidigezhioù diamzeret'; -$s_plugin_key_upgrade = 'Ezhomm zo da lakaat a-live'; $s_project_added_msg = 'Ouzhpennet-mat eo bet ar raktres...'; $s_category_added_msg = 'Ouzhpennet-mat eo bet ar rummad...'; $s_category_deleted_msg = 'Dilamet-mat eo bet ar rummad...'; @@ -834,7 +826,6 @@ $s_viewing_bugs_title = 'Gwelet an drein'; $s_updated = 'Hizivaet'; $s_sticky = 'Diskouez an drein pegus'; $s_sticky_label = 'Diskouez an drein pegus :'; -$s_sort_label = 'Urzhiañ dre :'; $s_issue_id = 'Draen niv.'; $s_recently_visited = 'Gweladennet nevez zo'; $s_note_user_id_label = 'Notenn gant :'; @@ -847,8 +838,6 @@ $s_prev = 'A-raok'; $s_next = 'Da-heul'; $s_first = 'Kentañ'; $s_last = 'Diwezhañ'; -$s_start_date_label = 'Deiziad deroù :'; -$s_end_date_label = 'Deiziad dibenn :'; $s_use_date_filters = 'Implijout siloù deiziad'; $s_use_date_filters_label = 'Implijout siloù dre zeiziad :'; $s_yes = 'Ya'; @@ -1134,7 +1123,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Ur fazi a oa en ho tanevell.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'N\'eus bet diferet restr ebet'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Ar seurt restr n\'eo ket aotreet.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'N\'eus ket eus ar c\'havlec\'h. Gwiriit arventennoù ar raktres, mar plij.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Ur restr doublet eo. Dilamit ar restr da gentañ, mar plij.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Ur raktres en anv-se zo anezhañ dija.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Goullo e oa ur vaezienn rekis. Gwiriit ho roadennoù, mar plij.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Gwarezet eo ar gont-mañ. N\'oc\'h ket aotreet da vont dezhañ keit ha ma\'z eo gwarezet.'; diff --git a/lang/strings_bulgarian.txt b/lang/strings_bulgarian.txt index c3f1420398..a0be0a62c5 100644 --- a/lang/strings_bulgarian.txt +++ b/lang/strings_bulgarian.txt @@ -961,7 +961,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Грешка в отчета.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Не е зададен файл'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Този файлов тип е забранен за зареждане'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Няма такава директория. Моля проверете проектните настройки.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Зареденият файл вече съществува.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Вече съществува проект с такова име.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Задължителното поле \'%1$s\' е празно. Моля допълнете формата.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Профилът е защитен. Нямате право на достъп докато не се премахне защитата.'; diff --git a/lang/strings_catalan.txt b/lang/strings_catalan.txt index 7bc411991d..31470cc677 100644 --- a/lang/strings_catalan.txt +++ b/lang/strings_catalan.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Nivell d\'Accés del Projecte'; $s_view_submitted_bug_link = 'Mostra la Incidència %1$s'; $s_assigned_projects = 'Projectes Assignats'; $s_assigned_projects_label = 'Projectes Assignats:'; -$s_unassigned_projects_label = 'Projectes sense Assignar:'; $s_print = 'Imprimeix'; $s_jump = 'Salta'; $s_copy_users = 'Copia els Usuaris'; @@ -479,8 +478,6 @@ $s_lost_password_done_title = 'Missatge de contrasenya enviat'; $s_lost_password_subject = 'Restaura la contrasenya'; $s_lost_password_info = 'Per a recuperar la seva contrasenya oblidada, si us plau completi el seu correu i contrasenya.

Si les dades es corresponen amb un compte vàlid, rebrà un correu amb una URL especial per a canviar la contrasenya. Si us plau segueixi les instruccions que rebrà i podrà canviar la contrasenya.'; $s_lost_password_confirm_hash_OK = 'La seva confirmació ha estat acceptada. Si us plau canviï la seva contrasenya.'; -$s_open_and_assigned_to_me_label = 'Obert i assignat a mi:'; -$s_open_and_reported_to_me_label = 'Obert i reportat per mi:'; $s_newer_news_link = 'Notícies noves'; $s_older_news_link = 'Notícies anteriors'; $s_archives = 'Notícies arxivades'; @@ -607,11 +604,6 @@ $s_plugin_install = 'Instal·la'; $s_plugin_upgrade = 'Actualització'; $s_plugin_uninstall = 'Desinstal·la'; $s_plugin_uninstall_message = 'Està segur de voler desinstal·lar el plugin "%1$s"?'; -$s_plugin_key_label = 'Clau:'; -$s_plugin_key_met = 'plugin llest'; -$s_plugin_key_unmet = 'dependències no satisfetes'; -$s_plugin_key_dated = 'dependencies desactualitzades'; -$s_plugin_key_upgrade = 'actualització requerida'; $s_project_added_msg = 'El projecte ha estat agregat...'; $s_category_added_msg = 'La categoria ha estat agregada...'; $s_category_deleted_msg = 'La categoria ha estat eliminada...'; @@ -835,7 +827,6 @@ $s_viewing_bugs_title = 'Incidències'; $s_updated = 'Actualitzat'; $s_sticky = 'Mostra les Incidències Fixades'; $s_sticky_label = 'Mostra les Incidències Fixades:'; -$s_sort_label = 'Ordenat per:'; $s_issue_id = 'Incidència #'; $s_recently_visited = 'Visitades Recentment'; $s_priority_abbreviation = 'P'; @@ -849,8 +840,6 @@ $s_prev = 'Ant'; $s_next = 'Seg'; $s_first = 'Primer'; $s_last = 'Últim'; -$s_start_date_label = 'Data d\'Inici:'; -$s_end_date_label = 'Data Final:'; $s_use_date_filters = 'Utilitza filtres de data'; $s_use_date_filters_label = 'Utilitza Filtres de Data:'; $s_yes = 'Sí'; @@ -1139,7 +1128,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'S\'ha trobat un error en la seva incidència.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Arxiu no especificat'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Aquest tipus d\'arxiu no està permès'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'El directori no existeix. Si us plau revisi la configuració del projecte.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Aquest és un arxiu duplicat. Si us plau esborri l\'arxiu primer.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Ja existeix un projecte amb aquest nom.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'El camp requerit "%1$s" està buit. Si us plau, comprovi les dades.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Aquest compte està protegit. No hi té accés fins que la protecció del compte hagi estat retirada.'; diff --git a/lang/strings_chinese_simplified.txt b/lang/strings_chinese_simplified.txt index 976fac5446..916759bc0f 100644 --- a/lang/strings_chinese_simplified.txt +++ b/lang/strings_chinese_simplified.txt @@ -922,7 +922,6 @@ $MANTIS_ERROR[ERROR_REPORT] = '在你的报表中发现错误。'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = '没有指定文件'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = '此类型的文件不允许上传'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = '目录不存在;请检查项目设置。'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = '已经有一个同名文件存在;请先删除该文件。'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = '已经存在一个同名的项目。'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = '字段“%1$s”是必须填写的,不能为空白,请重新填写。'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = '该帐号设置为被保护状态,解除保护前你不能使用该账号。'; diff --git a/lang/strings_chinese_traditional.txt b/lang/strings_chinese_traditional.txt index 0d33577b52..9d4af8e563 100644 --- a/lang/strings_chinese_traditional.txt +++ b/lang/strings_chinese_traditional.txt @@ -904,7 +904,6 @@ $MANTIS_ERROR[ERROR_REPORT] = '在你的回報中發生錯誤.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = '沒有指定檔案'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = '檔案類型不被接受'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = '檔案路徑不存在. 請檢查專案設定值或洽系統管理員建立檔案路徑.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = '這是重複的檔案. 請先刪除原本檔案.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = '這專案的名稱已經存在.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = '一個必要欄位 \'%1$s\' 是空值. 請重新檢查你輸入的資料.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = '這個帳戶目前為保護狀態. 你不可以去執行這個作業. 如果要執行這個作業, 必須要先將這個保護狀態取消.'; diff --git a/lang/strings_croatian.txt b/lang/strings_croatian.txt index fb9befeefa..e4dfedcb62 100644 --- a/lang/strings_croatian.txt +++ b/lang/strings_croatian.txt @@ -50,7 +50,6 @@ $s_private_project_msg = 'Ovaj projekt je PRIVATAN. Samo administratori i ručn $s_access_level_project = 'Razina pristupa projektu'; $s_view_submitted_bug_link = 'Vidi prijavljene bugove %1$s'; $s_assigned_projects = 'Dodijeljeni projekti'; -$s_unassigned_projects = 'Nedodijeljeni projekti'; $s_print = 'Ispiši'; $s_jump = 'Skoči'; $s_copy_users = 'Kopiraj korisnike'; @@ -191,7 +190,6 @@ $s_add_bugnote_button = 'Dodaj bilješku'; $s_bugnote_edit_link = 'Editiraj'; $s_closed_bug_button = 'Zatvori bug'; $s_bugnote_updated_msg = 'Bilješka je uspješno ažurirana...'; -$s_edited_on = 'editirana na:'; $s_click_to_login = 'Klikni ovdje za prijavu'; $s_login_page_info = 'Dobrodošli u HelpDesk'; $s_login_title = 'Prijava'; @@ -200,8 +198,6 @@ $s_choose_project = 'Odaberi projekt'; $s_login_button = 'Prijava'; $s_signup_link = 'Prijavi se za novi korisnički račun'; $s_select_project_button = 'Odaberi projekt'; -$s_open_and_assigned_to_me = 'Otvoreni i dodijeljeni meni'; -$s_open_and_reported_to_me = 'Otvoreni i prijavljeni od mene'; $s_newer_news_link = 'Novije vijesti'; $s_older_news_link = 'Starije vijesti'; $s_archives = 'Arhive'; @@ -399,6 +395,5 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Greška u izvješću.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nije naznačena datoteka'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Tip datoteke nije dozvoljen'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Mapa ne postoji. Molimo Vas da provjerite postavke projekta.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Ovo je duplicirana datoteka. Molimo Vas da najprije obrišete datoteku.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Potrebno polje je prazno. Molimo Vas da ponovno provjerite ulazne podatke.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Korisnički račun je zaštićen. Za to vrijeme Vam nije omogućen pristup.'; diff --git a/lang/strings_czech.txt b/lang/strings_czech.txt index 997a92c68f..ded09ba748 100644 --- a/lang/strings_czech.txt +++ b/lang/strings_czech.txt @@ -573,11 +573,6 @@ $s_plugin_install = 'Instalovat'; $s_plugin_upgrade = 'Upgradovat'; $s_plugin_uninstall = 'Odinstalovat'; $s_plugin_uninstall_message = 'Opravdu chcete odinstalovat zásuvku \'%1$s\'?'; -$s_plugin_key_label = 'Klíč:'; -$s_plugin_key_met = 'zásuvka připravena'; -$s_plugin_key_unmet = 'Nesplněné závislosti'; -$s_plugin_key_dated = 'Zastaralé závislosti'; -$s_plugin_key_upgrade = 'vyžadován upgrade'; $s_project_added_msg = 'Projekt byl úspěšně přidán...'; $s_category_added_msg = 'Kategorie byla úspěšně přidána...'; $s_category_deleted_msg = 'Kategorie byla úspěšně smazána...'; @@ -1066,7 +1061,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Chybná data ve vašem reportu.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Soubor nebyl zadán.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Nepovolený typ souboru'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Adresář neexistuje, zkontrolujte nastavení projektu.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Duplicitní soubor. Prosím, napřed soubor smažte.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projekt s tímto jménem už existuje.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Povinné pole "%1$s" je prázdné. Prosím, zkontrolujte zadané údaje.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Tento účet je chráněn. Nesmíte sem přistupovat dokud nebude ochrana účtu odstraněna.'; diff --git a/lang/strings_danish.txt b/lang/strings_danish.txt index e43bc68112..04a06cfcb6 100644 --- a/lang/strings_danish.txt +++ b/lang/strings_danish.txt @@ -813,7 +813,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Din rapportering indeholder fejl.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Der er ikke valgt en fil'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Denne filtype er ikke tilladt'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Denne mappe findes ikke. Undersøg venligst projektets indstillinger.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Denne fil findes allerede. Slet den gamle fil først.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Der findes allerede et projekt med dette navn.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Et påkrævet felt er ikke udfyldt. Ret venligst dette.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Denne konto er beskyttet. Du har ikke adgang før kontoens beskyttelse er ophævet.'; diff --git a/lang/strings_dutch.txt b/lang/strings_dutch.txt index a500f88ad2..5e0a222b74 100644 --- a/lang/strings_dutch.txt +++ b/lang/strings_dutch.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Toegangsniveau project'; $s_view_submitted_bug_link = 'Melding %1$s bekijken'; $s_assigned_projects = 'Toegewezen projecten'; $s_assigned_projects_label = 'Toegewezen projecten:'; -$s_unassigned_projects_label = 'Niet-toegewezen projecten:'; $s_print = 'Afdrukken'; $s_jump = 'Ga naar'; $s_copy_users = 'Gebruikers kopiëren'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'Het wachtwoordbericht is verstuurd'; $s_lost_password_subject = 'Wachtwoord opnieuw instellen'; $s_lost_password_info = 'Geef hier uw naam en e-mailadres in om uw verloren wachtwoord opnieuw in te stellen.

Als de gegevens overeen komen met een geldige gebruiker, ontvangt u een verwijzing met de validatiecode via e-mail. Volg deze verwijzing om uw wachtwoord aan te passen.'; $s_lost_password_confirm_hash_OK = 'Uw bevestiging is geaccepteerd. Pas alstublieft uw wachtwoord aan.'; -$s_open_and_assigned_to_me_label = 'Open en aan mij toegewezen:'; -$s_open_and_reported_to_me_label = 'Open en door mij gemeld:'; $s_newer_news_link = 'Nieuwer nieuws'; $s_older_news_link = 'Ouder nieuws'; $s_archives = 'Archieven'; @@ -616,11 +613,6 @@ $s_plugin_install = 'Installeren'; $s_plugin_upgrade = 'Upgraden'; $s_plugin_uninstall = 'Deïnstalleren'; $s_plugin_uninstall_message = 'Weet u zeker dat u de uitbreiding "%1$s" wilt deïnstalleren?'; -$s_plugin_key_label = 'Sleutel:'; -$s_plugin_key_met = 'uitbreiding beschikbaar'; -$s_plugin_key_unmet = 'niet-beschikbare afhankelijkheden'; -$s_plugin_key_dated = 'verouderde afhankelijkheden'; -$s_plugin_key_upgrade = 'upgrade nodig'; $s_project_added_msg = 'Het project is toegevoegd.'; $s_category_added_msg = 'De categorie is toegevoegd.'; $s_category_deleted_msg = 'De categorie is verwijderd.'; @@ -844,7 +836,6 @@ $s_viewing_bugs_title = 'Meldingen bekijken'; $s_updated = 'Aangepast'; $s_sticky = 'Sticky meldingen weergeven'; $s_sticky_label = 'Sticky-meldingen weergeven:'; -$s_sort_label = 'Sorteren op:'; $s_issue_id = 'Meldingsnr.'; $s_recently_visited = 'Recent bekeken'; $s_priority_abbreviation = 'P'; @@ -858,8 +849,6 @@ $s_prev = 'Vorige'; $s_next = 'Volgende'; $s_first = 'Eerste'; $s_last = 'Laatste'; -$s_start_date_label = 'Begindatum:'; -$s_end_date_label = 'Einddatum:'; $s_use_date_filters = 'Datumfilters gebruiken'; $s_use_date_filters_label = 'Datumfilters gebruiken:'; $s_yes = 'Ja'; @@ -1152,7 +1141,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Er is een fout in uw rapport gevonden.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Geen bestand opgegeven.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Het bestandstype is niet toegestaan.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'De map bestaat niet. Controleer alstublieft de projectinstellingen.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Dit bestand bestaat al. Verwijder het bestaande bestand eerst.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Dit project bestaat al.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Een verplicht veld ("%1$s") is niet ingevuld. Controleer alstublieft uw invoer.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Deze gebruiker is beschermd. U hebt hier geen toegang totdat de bescherming is opgeheven.'; diff --git a/lang/strings_english.txt b/lang/strings_english.txt index 23b64ee6d7..caa9b7c6db 100644 --- a/lang/strings_english.txt +++ b/lang/strings_english.txt @@ -114,7 +114,6 @@ $s_access_level_project = 'Project Access Level'; $s_view_submitted_bug_link = 'View Submitted Issue %1$s'; $s_assigned_projects = 'Assigned Projects'; $s_assigned_projects_label = 'Assigned Projects'; -$s_unassigned_projects_label = 'Unassigned Projects'; $s_print = 'Print'; $s_jump = 'Jump'; $s_copy_users = 'Copy Users'; @@ -674,8 +673,6 @@ $s_lost_password_info = 'To reinstate your lost password, please supply the name $s_lost_password_confirm_hash_OK = 'Your confirmation has been accepted. Please update your password.'; # main_page.php -$s_open_and_assigned_to_me_label = 'Open and assigned to me:'; -$s_open_and_reported_to_me_label = 'Open and reported by me:'; $s_newer_news_link = 'Newer News'; $s_older_news_link = 'Older News'; $s_archives = 'Archives'; @@ -832,11 +829,6 @@ $s_plugin_install = 'Install'; $s_plugin_upgrade = 'Upgrade'; $s_plugin_uninstall = 'Uninstall'; $s_plugin_uninstall_message = 'Are you sure you want to uninstall the "%1$s" plugin?'; -$s_plugin_key_label = 'Key:'; -$s_plugin_key_met = 'plugin ready'; -$s_plugin_key_unmet = 'unmet dependencies'; -$s_plugin_key_dated = 'outdated dependencies'; -$s_plugin_key_upgrade = 'upgrade needed'; # manage_proj_add.php $s_project_added_msg = 'Project has been successfully added...'; @@ -1174,7 +1166,6 @@ $s_viewing_bugs_title = 'Viewing Issues'; $s_updated = 'Updated'; $s_sticky = 'Show Sticky Issues'; $s_sticky_label = 'Show Sticky Issues:'; -$s_sort_label = 'Sort by:'; $s_issue_id = 'Issue #'; $s_recently_visited = 'Recently Visited'; $s_priority_abbreviation = 'P'; @@ -1193,8 +1184,6 @@ $s_prev = 'Prev'; $s_next = 'Next'; $s_first = 'First'; $s_last = 'Last'; -$s_start_date_label = 'Start Date:'; -$s_end_date_label = 'End Date:'; $s_use_date_filters = 'Use Date Filters'; $s_use_date_filters_label = 'Use Date Filters:'; $s_yes = 'Yes'; diff --git a/lang/strings_estonian.txt b/lang/strings_estonian.txt index 6529a0d98b..755da9fde5 100644 --- a/lang/strings_estonian.txt +++ b/lang/strings_estonian.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Projekti kasutamisõiguste tase'; $s_view_submitted_bug_link = 'Näita lisatud kanne %1$s'; $s_assigned_projects = 'Määratud projektid'; $s_assigned_projects_label = 'Määratud projektid:'; -$s_unassigned_projects_label = 'Määramata projektid:'; $s_print = 'Trüki'; $s_jump = 'Mine'; $s_copy_users = 'Kopeeri kasutajad'; @@ -479,8 +478,6 @@ $s_lost_password_done_title = 'Parooli teade saadetud'; $s_lost_password_subject = 'Parooli taastamine'; $s_lost_password_info = 'Selleks, et taastada kadunud parool, esita oma kasutajakonto kasutajanimi ja e-posti aadress.

Kui esitatud andmed on tõesed, saadetakse sulle e-postiga spetsiaalne URL, mis sisaldab sinu kasutajakonto taastamise koodi. Palun suundu sellele aadressile, et vahetada oma parool.'; $s_lost_password_confirm_hash_OK = 'Sinu kinnitus on vastu võetud. Palun uuenda oma parool.'; -$s_open_and_assigned_to_me_label = 'Avatud ja määratud mulle:'; -$s_open_and_reported_to_me_label = 'Avatud ja teatatud minu poolt:'; $s_newer_news_link = 'Uuemad uudised'; $s_older_news_link = 'Vanemad uudised'; $s_archives = 'Arhiivid'; @@ -606,11 +603,6 @@ $s_plugin_install = 'Paigaldus'; $s_plugin_upgrade = 'Uuendamine'; $s_plugin_uninstall = 'Eemaldamine'; $s_plugin_uninstall_message = 'Oled kindel, et soovid eemdaldada "%1$s" laienduse?'; -$s_plugin_key_label = 'Võti:'; -$s_plugin_key_met = 'laiendus valmis'; -$s_plugin_key_unmet = 'ebajärjekindlad sõltuvused'; -$s_plugin_key_dated = 'aegunud sõltuvused'; -$s_plugin_key_upgrade = 'uuendamine on vajalik'; $s_project_added_msg = 'Projekt lisatud...'; $s_category_added_msg = 'Kategooria lisatud...'; $s_category_deleted_msg = 'Kategooria kustutatud...'; @@ -834,7 +826,6 @@ $s_viewing_bugs_title = 'Kannete vaatamine'; $s_updated = 'Uuendatud'; $s_sticky = 'Näita kleebitud kandeid'; $s_sticky_label = 'Näite märgitud kanded:'; -$s_sort_label = 'Sorteeri nii:'; $s_issue_id = 'Kanne #'; $s_recently_visited = 'Viimati külastatud'; $s_note_user_id_label = 'Märkus:'; @@ -847,8 +838,6 @@ $s_prev = 'Eelmine'; $s_next = 'Järgmine'; $s_first = 'Esimene'; $s_last = 'Viimane'; -$s_start_date_label = 'Algus kuupäev:'; -$s_end_date_label = 'Lõpu kuupäev:'; $s_use_date_filters = 'Kasutaja aja filtreid'; $s_use_date_filters_label = 'Kasuta kuupäeva filtreid:'; $s_yes = 'Jah'; @@ -1134,7 +1123,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Teate loomisel esines viga.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Fail pole määratletud'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Failitüüp pole lubatud'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Kataloogi pole olemas. Palun kontrolli projekti seadeid.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'See on korduv fail. Palun kustuta kõigepealt varasem fail.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Sellise nimega projekt on juba olemas.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Vajalik väli "%1$s" oli tühi. Palun kontrolli oma sisestust.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'See kasutajakonto on kaitstud. Saad selle poole pöörduda alles peale kaitse eemaldamist.'; diff --git a/lang/strings_finnish.txt b/lang/strings_finnish.txt index a094a0cfe6..d9245806cd 100644 --- a/lang/strings_finnish.txt +++ b/lang/strings_finnish.txt @@ -591,11 +591,6 @@ $s_plugin_install = 'Asenna'; $s_plugin_upgrade = 'Päivitys'; $s_plugin_uninstall = 'Poista asennus'; $s_plugin_uninstall_message = 'Oletko varma, että haluat poistaa laajennuksen "%1$s"?'; -$s_plugin_key_label = 'Avain:'; -$s_plugin_key_met = 'laajennus valmis'; -$s_plugin_key_unmet = 'puuttuvat riippuvuudet'; -$s_plugin_key_dated = 'vanhentuneet riippuvuudet'; -$s_plugin_key_upgrade = 'tarvittava päivitys'; $s_project_added_msg = 'Projekti lisätty...'; $s_category_added_msg = 'Kategoria lisätty...'; $s_category_deleted_msg = 'Kategoria poistettu...'; @@ -827,8 +822,6 @@ $s_prev = 'Edellinen'; $s_next = 'Seuraava'; $s_first = 'Ensimmäinen'; $s_last = 'Viimeinen'; -$s_start_date_label = 'Aloituspäivämäärä:'; -$s_end_date_label = 'Päättymispäivämäärä:'; $s_use_date_filters = 'Käytä päivämääräsuotimia'; $s_use_date_filters_label = 'Käytä päivämääräsuotimia:'; $s_yes = 'Kyllä'; @@ -1112,7 +1105,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Raportissasi oli virhe.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Tiedostoa ei ole määritelty'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Tämä tiedostotyyppi ei ole sallittu'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Hakemistoa ei ole olemassa. Ole hyvä ja tarkista projektin asetukset.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Tämä tiedosto on kaksoiskappale. Ole hyvä ja poista alkuperäinen tiedosto ensin.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Samanniminen projekti on jo olemassa.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Tarvittu kenttä %1$s on tyhjä. Tarkista syötteet.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Tämä käyttäjätunnus on suojattu. Pääsy on sallittu vasta kun suojaus poistetaan.'; diff --git a/lang/strings_french.txt b/lang/strings_french.txt index dd03d44747..2a03c8d126 100644 --- a/lang/strings_french.txt +++ b/lang/strings_french.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Niveau d\'accès du projet'; $s_view_submitted_bug_link = 'Voir le bogue soumis %1$s'; $s_assigned_projects = 'Projets assignés'; $s_assigned_projects_label = 'Projets assignés :'; -$s_unassigned_projects_label = 'Projets non assignés :'; $s_print = 'Imprimer'; $s_jump = 'Chercher'; $s_copy_users = 'Copier les utilisateurs'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'Message de mot de passe envoyé'; $s_lost_password_subject = 'Réinitialisation de mot de passe'; $s_lost_password_info = 'Pour réinitialiser votre mot de passe, merci d\'indiquer le nom d\'utilisateur et l\'adresse de courriel du compte.

Si les données correspondent à un compte valide, il vous sera envoyé par courriel une URL spéciale qui contient un code de validation pour votre compte. Merci de suivre ce lien pour changer votre mot de passe.'; $s_lost_password_confirm_hash_OK = 'Votre confirmation a été acceptée. Merci de mettre à jour votre mot de passe.'; -$s_open_and_assigned_to_me_label = 'Bogues ouverts qui me sont assignés :'; -$s_open_and_reported_to_me_label = 'Bogues ouverts dont je suis le rapporteur :'; $s_newer_news_link = 'Nouvelles récentes'; $s_older_news_link = 'Anciennes nouvelles'; $s_archives = 'Archives'; @@ -616,11 +613,6 @@ $s_plugin_install = 'Installation'; $s_plugin_upgrade = 'Mise à niveau'; $s_plugin_uninstall = 'Désinstaller'; $s_plugin_uninstall_message = 'Voulez-vous vraiment désinstaller le plugiciel « %1$s » ?'; -$s_plugin_key_label = 'Clé :'; -$s_plugin_key_met = 'Plugiciel prêt'; -$s_plugin_key_unmet = 'Dépendances introuvables'; -$s_plugin_key_dated = 'Dépendances périmées'; -$s_plugin_key_upgrade = 'Mise à niveau requise'; $s_project_added_msg = 'Nouveau projet installé avec succès...'; $s_category_added_msg = 'Nouvelle catégorie créée avec succès...'; $s_category_deleted_msg = 'Catégorie effacée avec succès...'; @@ -844,7 +836,6 @@ $s_viewing_bugs_title = 'Liste des bogues'; $s_updated = 'Mis à jour'; $s_sticky = 'Afficher les bogues récurrants'; $s_sticky_label = 'Afficher les bogues récurrants :'; -$s_sort_label = 'Trier par :'; $s_issue_id = 'Bogue #'; $s_recently_visited = 'Visité récemment'; $s_priority_abbreviation = 'P'; @@ -858,8 +849,6 @@ $s_prev = 'Précédent'; $s_next = 'Suivant'; $s_first = 'Premier'; $s_last = 'Dernier'; -$s_start_date_label = 'Date de début :'; -$s_end_date_label = 'Date de fin :'; $s_use_date_filters = 'Utiliser les filtres de date'; $s_use_date_filters_label = 'Utiliser les filtres de date :'; $s_yes = 'Oui'; @@ -1152,7 +1141,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Il y avait une erreur dans votre rapport.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Aucun fichier spécifié'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Type de fichier interdit'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Le répertoire n\'existe pas. Merci de vérifier les paramètres du projet.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Fichier dupliqué. Supprimer d\'abord le premier.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Un projet ayant ce nom existe déjà.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Le champ obligatoire « %1$s » n\'est pas renseigné. Merci de vérifier votre saisie.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Ce compte est protégé. Vous n\'êtes pas autorisés à y accéder tant que la protection existe.'; diff --git a/lang/strings_galician.txt b/lang/strings_galician.txt index cf9cb23153..76be3d9aec 100644 --- a/lang/strings_galician.txt +++ b/lang/strings_galician.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Nivel de acceso ao proxecto'; $s_view_submitted_bug_link = 'Ver o problema enviado %1$s'; $s_assigned_projects = 'Proxectos asignados'; $s_assigned_projects_label = 'Proxectos asignados:'; -$s_unassigned_projects_label = 'Proxectos sen asignar:'; $s_print = 'Imprimir'; $s_jump = 'Saltar'; $s_copy_users = 'Copiar os usuarios'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'A mensaxe co contrasinal foi enviada'; $s_lost_password_subject = 'Restablecemento do contrasinal'; $s_lost_password_info = 'Para repor o seu contrasinal perdido, por favor, subministe o nome e mais o enderezo de correo electrónico da conta.

Se os datos se corresponden a unha conta válida, seralle enviado un enderezo URL especial a través do correo electrónico que contén un código validación para a súa conta. Por favor, siga esta ligazón para cambiar o seu contrasinal.'; $s_lost_password_confirm_hash_OK = 'A súa confirmación foi aceptada. Por favor, actualice o seu contrasinal.'; -$s_open_and_assigned_to_me_label = 'Erros abertos que teño asignados:'; -$s_open_and_reported_to_me_label = 'Erros abertos dos que informei:'; $s_newer_news_link = 'Novas máis recentes'; $s_older_news_link = 'Novas máis antigas'; $s_archives = 'Arquivos'; @@ -615,11 +612,6 @@ $s_plugin_install = 'Instalar'; $s_plugin_upgrade = 'Actualización'; $s_plugin_uninstall = 'Desinstalar'; $s_plugin_uninstall_message = 'Está seguro de querer desinstalar o complemento "%1$s"?'; -$s_plugin_key_label = 'Clave:'; -$s_plugin_key_met = 'complemento listo'; -$s_plugin_key_unmet = 'dependencias inatopables'; -$s_plugin_key_dated = 'dependencias desactualizadas'; -$s_plugin_key_upgrade = 'actualización necesaria'; $s_project_added_msg = 'O proxecto foi engadido con éxito...'; $s_category_added_msg = 'A categoría foi engadida con éxito...'; $s_category_deleted_msg = 'A categoría foi borrada con éxito...'; @@ -844,7 +836,6 @@ $s_viewing_bugs_title = 'Vendo os problemas'; $s_updated = 'Actualizado'; $s_sticky = 'Mostrar os problemas fixos'; $s_sticky_label = 'Mostrar os problemas fixos:'; -$s_sort_label = 'Ordenar por:'; $s_issue_id = 'Problema #'; $s_recently_visited = 'Visitados recentemente'; $s_note_user_id_label = 'Por nota:'; @@ -857,8 +848,6 @@ $s_prev = 'Anterior'; $s_next = 'Seguinte'; $s_first = 'Primeiro'; $s_last = 'Último'; -$s_start_date_label = 'Data de inicio:'; -$s_end_date_label = 'Data de fin:'; $s_use_date_filters = 'Usar os filtros de data'; $s_use_date_filters_label = 'Usar os filtros de data:'; $s_yes = 'Si'; @@ -1149,7 +1138,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Houbo un erro no informe.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Non se especificou ningún ficheiro.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'O tipo de ficheiro non está permitido.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'O directorio non existe. Por favor, comprobe as características do proxecto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Este é o duplicado dun ficheiro. Por favor, borre primeiro o ficheiro.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Xa existe un proxecto con ese nome.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'O campo necesario "%1$s" estaba baleiro. Por favor, comprobe o texto de entrada.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Esta conta está protexida. Non ten permiso para acceder a ela ata que a protección da conta sexa retirada.'; diff --git a/lang/strings_german.txt b/lang/strings_german.txt index ce27af8c5d..fda9bc7fca 100644 --- a/lang/strings_german.txt +++ b/lang/strings_german.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Projekt Zugangsstufe'; $s_view_submitted_bug_link = 'Zeige erfassten Eintrag %1$s'; $s_assigned_projects = 'Zugewiesene Projekte'; $s_assigned_projects_label = 'Zugewiesene Projekte:'; -$s_unassigned_projects_label = 'Nicht zugewiesene Projekte:'; $s_print = 'Drucken'; $s_jump = 'Zu Eintrag springen'; $s_copy_users = 'Benutzer kopieren'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'Passwort Nachricht gesendet'; $s_lost_password_subject = 'Passwort zurücksetzen'; $s_lost_password_info = 'Um ihr verlorenes Passwort zu ersetzen, geben Sie bitte Benutzername und E-Mail-Adresse Ihres Kontos an.

Wenn die Daten mit einem gültigen Konto übereinstimmen, wird Ihnen eine spezielle URL über E-Mail geschickt, die einen Bestätigungscode für Ihr Konto enthält. Bitte folgen Sie dem Link und ändern Sie dann Ihr Passwort.'; $s_lost_password_confirm_hash_OK = 'Ihre Bestätigung wurde akzeptiert. Bitte aktualisieren Sie Ihr Passwort.'; -$s_open_and_assigned_to_me_label = 'Offen und mir zugewiesen:'; -$s_open_and_reported_to_me_label = 'Offen und von mir berichtet:'; $s_newer_news_link = 'Neuere Nachrichten'; $s_older_news_link = 'Ältere Nachrichten'; $s_archives = 'Archive'; @@ -616,11 +613,6 @@ $s_plugin_install = 'Installation'; $s_plugin_upgrade = 'Aufrüsten'; $s_plugin_uninstall = 'Deinstallation'; $s_plugin_uninstall_message = 'Sind Sie sicher, dass Sie das Plugin „%1$s“ deinstallieren wollen?'; -$s_plugin_key_label = 'Schlüsselworte:'; -$s_plugin_key_met = 'Plugin bereit'; -$s_plugin_key_unmet = 'nicht erfüllte Abhängigkeiten'; -$s_plugin_key_dated = 'veraltete Abhängigkeiten'; -$s_plugin_key_upgrade = 'Upgrade notwendig'; $s_project_added_msg = 'Projekt wurde hinzugefügt …'; $s_category_added_msg = 'Kategorie wurde hinzugefügt …'; $s_category_deleted_msg = 'Kategorie wurde gelöscht …'; @@ -844,7 +836,6 @@ $s_viewing_bugs_title = 'Einträge anzeigen'; $s_updated = 'Aktualisiert'; $s_sticky = 'Fixierte Einträge anzeigen'; $s_sticky_label = 'Fixierte Probleme anzeigen:'; -$s_sort_label = 'Sortieren nach:'; $s_issue_id = 'Eintrag #'; $s_recently_visited = 'Kürzlich geöffnet'; $s_note_user_id_label = 'Notiz von:'; @@ -857,8 +848,6 @@ $s_prev = 'Zurück'; $s_next = 'Vor'; $s_first = 'Erste'; $s_last = 'Letzte'; -$s_start_date_label = 'Von:'; -$s_end_date_label = 'Bis:'; $s_use_date_filters = 'Verwende Datum als Filter'; $s_use_date_filters_label = 'Verwende Datum als Filter:'; $s_yes = 'Ja'; @@ -1151,7 +1140,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Während des Reports trat ein Fehler auf.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Keine Datei angegeben.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Dieser Dateityp ist nicht erlaubt.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Das Verzeichnis existiert nicht. Überprüfen Sie die Einstellungen.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Dies ist eine doppelte Datei. Löschen Sie bitte die erste Datei.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Ein Projekt mit diesem Namen ist bereits vorhanden.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Ein notwendiges Feld „%1$s“ war leer. Überprüfen Sie Ihre Eingabe.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Dieses Konto ist geschützt. Sie können nicht darauf zugreifen, bevor der Schutz aufgehoben ist.'; diff --git a/lang/strings_hebrew.txt b/lang/strings_hebrew.txt index ae8e714765..371ce50150 100644 --- a/lang/strings_hebrew.txt +++ b/lang/strings_hebrew.txt @@ -558,10 +558,6 @@ $s_plugin_install = 'התקנה'; $s_plugin_upgrade = 'שדרוג'; $s_plugin_uninstall = 'הסרה'; $s_plugin_uninstall_message = 'להסיר את התוסף "%1$s"?'; -$s_plugin_key_met = 'תוסף מוכן'; -$s_plugin_key_unmet = 'חסרות תלויות'; -$s_plugin_key_dated = 'תלויות לא עדכניות'; -$s_plugin_key_upgrade = 'נדרש שדרוג'; $s_project_added_msg = 'הפרויקט הוקם'; $s_category_added_msg = 'הקטגוריה נוספה'; $s_category_deleted_msg = 'הקטגוריה נמחקה'; @@ -1042,7 +1038,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'נמצאה שגיאה בדו"ח שלך.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'לא צוין קובץ'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'סוג הקובץ אסור'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'המחיצה אינה קיימת - יש לבדוק את הגדרות הפרויקט.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'קובץ זה כבר קיים. יש למחוק את הקובץ הקודם.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'קיים פרויקט בשם זה.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'שדה חובה \'%1$s\' הושאר ריק. עליך לבדוק את הנתונים שקלטת.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'חשבון זה מוגן. אין אפשרות לגשת לחשבון זה אלא לאחר הסרת ההגנה.'; diff --git a/lang/strings_hungarian.txt b/lang/strings_hungarian.txt index c0511d8152..2207e2202f 100644 --- a/lang/strings_hungarian.txt +++ b/lang/strings_hungarian.txt @@ -581,11 +581,6 @@ $s_plugin_install = 'Telepítés'; $s_plugin_upgrade = 'Frissítés'; $s_plugin_uninstall = 'Eltávolítás'; $s_plugin_uninstall_message = 'Biztos vagy benne, hogy el szeretnéd távolítani a(z) „%1$s” bővítményt?'; -$s_plugin_key_label = 'Kulcsszó:'; -$s_plugin_key_met = 'bővítmény kész'; -$s_plugin_key_unmet = 'nem teljesülő függőségek'; -$s_plugin_key_dated = 'elavult függőségek'; -$s_plugin_key_upgrade = 'frissítés szükséges'; $s_project_added_msg = 'Projekt sikeresen hozzáadva...'; $s_category_added_msg = 'Kategória sikeresen hozzáadva...'; $s_category_deleted_msg = 'Kategória sikeresen törölve...'; @@ -803,7 +798,6 @@ $s_changed = 'Változott (óra)'; $s_viewing_bugs_title = 'Ügyek megtekintése'; $s_updated = 'Frissítve'; $s_sticky = 'Ragadós ügyek megjelenítése'; -$s_sort_label = 'Rendezés:'; $s_issue_id = 'Ügy #'; $s_recently_visited = 'Nemrég megtekintett'; $s_none = 'egyik sem'; @@ -1093,7 +1087,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Hiba volt a jelentésében.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nincs fájl megadva'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'A fájltípus nem megengedett'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'A könyvtár nem létezik. Ellenőrizze a projekt beállításait.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Ez a fájl már létezik, először törölnie kell.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Már létezik ilyen nevű projekt.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Egy kötelező \'%1$s\' mező üres. Ellenőrizze a megadott adatokat.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Ez egy védett felhasználó. Hozzáférés a felhasználó-védelem megszüntetetéséig megtagadva.'; diff --git a/lang/strings_icelandic.txt b/lang/strings_icelandic.txt index c3264fef1a..3c50a09c63 100644 --- a/lang/strings_icelandic.txt +++ b/lang/strings_icelandic.txt @@ -836,7 +836,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Það var villa í tilkynningunni.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Engin skrá valin'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Þessi tegund skráar er ekki leyfð'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Þessi mappa er ekki til. Athugaðu verkefna stillinguna.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Þetta er afrit. Eyddu skránni fyrst.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Verkefni með sama nafni er til.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Nauðsynlegt svæði \'%1$s\' var autt. Athugaðu betur ílagsgögnin.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Þessi aðgangur er lokaður. Þú hefur ekki aðgang þar til læsingu hefur verið aflétt.'; diff --git a/lang/strings_italian.txt b/lang/strings_italian.txt index 21ad78a6fa..d93450a54a 100644 --- a/lang/strings_italian.txt +++ b/lang/strings_italian.txt @@ -542,10 +542,6 @@ $s_plugin_install = 'Installa'; $s_plugin_upgrade = 'Aggiorna'; $s_plugin_uninstall = 'Disinstalla'; $s_plugin_uninstall_message = 'Sei sicuro di voler rimuovere il plugin "%1$s"?'; -$s_plugin_key_met = 'plugin pronto'; -$s_plugin_key_unmet = 'dipendenze non soddisfatte'; -$s_plugin_key_dated = 'dipendenze obsolete'; -$s_plugin_key_upgrade = 'Richiede aggiornamento'; $s_project_added_msg = 'Il progetto è stato inserito...'; $s_category_added_msg = 'La categoria è stata inserita...'; $s_category_deleted_msg = 'La categoria è stata eliminata...'; @@ -984,7 +980,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Il tuo report conteneva un errore.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Non è stato specificato nessun file'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Tipo di file non consentito'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'La directory non esiste. Controlla le impostazioni del progetto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Il file è un duplicato. Cancella prima il file presente.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Esiste già un progetto con quel nome.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Il campo obbligatorio "%1$s" era vuoto. Ricontrolla le informazioni che hai inserito.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Questo account è protetto. Non ti è consentito accedere finché non verrà tolta la protezione.'; diff --git a/lang/strings_japanese.txt b/lang/strings_japanese.txt index 8c2ecfac0f..5ac5751cb1 100644 --- a/lang/strings_japanese.txt +++ b/lang/strings_japanese.txt @@ -74,7 +74,6 @@ $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 = 'ID 指定'; $s_copy_users = '利用者のコピー'; @@ -479,8 +478,6 @@ $s_lost_password_done_title = 'パスワードのメッセージを送信しま $s_lost_password_subject = 'パスワードリセット'; $s_lost_password_info = 'パスワードを元に戻すために、アカウントの名前とメールアドレスを入力してください。

有効なアカウントであれば、アカウントの妥当性を確かめるコードを含むURLをメールであなたに送ります。そのリンクに従って、パスワードを変更してください。'; $s_lost_password_confirm_hash_OK = '受理されました。パスワードを更新してください。'; -$s_open_and_assigned_to_me_label = '未対処かつ自分の担当:'; -$s_open_and_reported_to_me_label = '未対処かつ自分が報告:'; $s_newer_news_link = '新しいニュース'; $s_older_news_link = '過去のニュース'; $s_archives = '履歴'; @@ -607,11 +604,6 @@ $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 = '依存無効'; -$s_plugin_key_upgrade = '要アップグレード'; $s_project_added_msg = 'プロジェクトが追加されました。'; $s_category_added_msg = 'カテゴリーが追加されました。'; $s_category_deleted_msg = 'カテゴリーが削除されました。'; @@ -835,7 +827,6 @@ $s_viewing_bugs_title = 'チケット一覧'; $s_updated = '更新日'; $s_sticky = 'チケット (Sticky) の表示'; $s_sticky_label = 'チケット (Sticky) の表示:'; -$s_sort_label = 'ソート順:'; $s_issue_id = 'チケット #'; $s_recently_visited = '参照履歴'; $s_note_user_id_label = 'コメント登録者:'; @@ -848,8 +839,6 @@ $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 = 'はい'; @@ -1136,7 +1125,6 @@ $MANTIS_ERROR[ERROR_REPORT] = '報告に間違いがあります。'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'ファイルが選択されていません。'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'そのファイル形式は許可されていません。'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'ディレクトリが存在しません。プロジェクトの設定を確認してください。'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'ファイルが重複しています。先にファイルを削除してください。'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'その名前のプロジェクトが既に存在します。'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = '必須欄「%1$s」が入力されていません。入力を確認してください。'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = '権限がありません。権限を上げてアクセスしてください。'; diff --git a/lang/strings_korean.txt b/lang/strings_korean.txt index 9efc84de36..4eb7401738 100644 --- a/lang/strings_korean.txt +++ b/lang/strings_korean.txt @@ -828,7 +828,6 @@ $MANTIS_ERROR[ERROR_REPORT] = '입력내용에 오류가 발생했습니다.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = '파일이 없습니다.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = '허용되지 않는 파일 종류입니다.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = '디렉토리가 존재하지 않습니다.. 프로젝트 환경을 확인하세요.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = '파일 중복. 먼저 파일을 삭제하세요.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = '같은 이름의 프로젝트가 이미 존재합니다.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = '필수 입력 필드 누락, 입력사항을 확인하세요.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = '보호중인 계정입니다. 보호를 해제하기전에는 이 계정에 접근할 수 없습니다.'; diff --git a/lang/strings_latvian.txt b/lang/strings_latvian.txt index 08550205cd..da9a1568f7 100644 --- a/lang/strings_latvian.txt +++ b/lang/strings_latvian.txt @@ -543,7 +543,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Jūsu ziņojumā konstatētas kļūdas.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Fails neeksistē'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Šādi faili ir aizliegti'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Katalogs neeksistē. Pārbaudiet projekta opcijas.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Faila dublikāts. Vispirms izdzēsiet veco failu.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projekts ar šādu nosaukumu jau eksistē.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Nav aizpildīti visi lauki. Pārbaudiet ievades pareizību.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Šis lietotājs ir aizsargāts. Jūs nevarat labot opcijas.'; diff --git a/lang/strings_lithuanian.txt b/lang/strings_lithuanian.txt index 388134cd7d..33445cf156 100644 --- a/lang/strings_lithuanian.txt +++ b/lang/strings_lithuanian.txt @@ -813,7 +813,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Jūsų pranešime yra klaida.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nenurodėte failo'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Neleistinas failo tipas'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Šis katalogas neegzistuoja. Prašome patikrinti projekto nustatymus.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Toks failas jau yra. Prašome pirmiau ištrinti seną failą.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projektas tokiu pavadinimu jau yra.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Privalomas laukas \'%1$s\' tuščias. Prašome užpildyti iki galo.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Šis vartotojas apsaugotas. Jūs neturite teisių prie jo prieiti, kol apsauga nebus išjungta.'; diff --git a/lang/strings_macedonian.txt b/lang/strings_macedonian.txt index 477676d6b0..aeb3eeb412 100644 --- a/lang/strings_macedonian.txt +++ b/lang/strings_macedonian.txt @@ -74,7 +74,6 @@ $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 = 'Копирај корисници'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'Пораката со лозинката е ис $s_lost_password_subject = 'Менување лозинка'; $s_lost_password_info = 'За враќање на загубената лозинка, внесете го името и е-поштенската адреса на сметката.

Ако податоците се соцпаѓаат со важечка сметка, ќе ви биде испратена специјална URL-адреса по е-пошта која содржи потврден код за вашата сметка. Проследете ја врската за да си ја смените лозинката.'; $s_lost_password_confirm_hash_OK = 'Вашата потврда е прифатена. Подновете си ја лозинката.'; -$s_open_and_assigned_to_me_label = 'Отворени и доделени на мене:'; -$s_open_and_reported_to_me_label = 'Отворени и пријавени од мене:'; $s_newer_news_link = 'Понови новости'; $s_older_news_link = 'Постари новости'; $s_archives = 'Архиви'; @@ -615,11 +612,6 @@ $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 = 'застарени зависности'; -$s_plugin_key_upgrade = 'потребно е надградување'; $s_project_added_msg = 'Проектот е успешно додаден...'; $s_category_added_msg = 'Категоријата е успешно додадена...'; $s_category_deleted_msg = 'Категоријата е успешно избришана...'; @@ -843,7 +835,6 @@ $s_viewing_bugs_title = 'Преглед на проблемите'; $s_updated = 'Подновено'; $s_sticky = 'Прикажи залепени проблеми'; $s_sticky_label = 'Прикажи залепени проблеми:'; -$s_sort_label = 'Сортирај по:'; $s_issue_id = 'Проблем #'; $s_recently_visited = 'Неодамна посетени'; $s_note_user_id_label = 'Белешка од:'; @@ -856,8 +847,6 @@ $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 = 'Да'; @@ -1148,7 +1137,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Најдена е грешка во вашата $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Нема назначено податотека.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Тој тип на податотеки е забранет.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Директориумот не постои. Проверете ги проектните нагодувања.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Оваа податотека е дупликат. Најпрвин избришете ја првата.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Веќе постои проект со тоа име.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Неопходното поле „%1$s“ е празно. Проверете дали сè ви е пополнето како што треба.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Сметката е заштитена. Немате дозвола за пристап сè додека заштитата не се отстрани.'; diff --git a/lang/strings_norwegian_bokmal.txt b/lang/strings_norwegian_bokmal.txt index bc0849eb3c..9e4eef6424 100644 --- a/lang/strings_norwegian_bokmal.txt +++ b/lang/strings_norwegian_bokmal.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Tilgangsnivå prosjekt'; $s_view_submitted_bug_link = 'Vis innlagt sak %1$s'; $s_assigned_projects = 'Delegerte prosjekter'; $s_assigned_projects_label = 'Tildelte prosjekt:'; -$s_unassigned_projects_label = 'Ikke-tildelte prosjekt:'; $s_print = 'Utskrift'; $s_jump = 'Gå til sak'; $s_copy_users = 'Kopiere brukere'; @@ -480,8 +479,6 @@ $s_lost_password_done_title = 'Passordepost er sendt'; $s_lost_password_subject = 'Passord nullstilt'; $s_lost_password_info = 'For å få ditt nytt passord, vennligst angi kontoens navn og epostadresse.

Hvis dataene stemmer med en gyldig konto vil du bli tilsendt en spesiell URL i en epost som inneholder en valideringskode for kontoen din. Vennligst følg den lenka for å endre passordet ditt.'; $s_lost_password_confirm_hash_OK = 'Bekreftelsen din har blitt godtatt. Vennligst oppdater passordet ditt.'; -$s_open_and_assigned_to_me_label = 'Åpen og delegert til meg:'; -$s_open_and_reported_to_me_label = 'Åpen og rapportert av meg:'; $s_newer_news_link = 'Nyere nyheter'; $s_older_news_link = 'Eldre nyheter'; $s_archives = 'Arkiv'; @@ -612,11 +609,6 @@ $s_plugin_install = 'Installere'; $s_plugin_upgrade = 'Oppgradér'; $s_plugin_uninstall = 'Avinstallere'; $s_plugin_uninstall_message = 'Er du sikker på at du ønsker å avinstallere tilleggsprogrammet "%1$s?'; -$s_plugin_key_label = 'Nøkkel:'; -$s_plugin_key_met = 'tilleggsprogram klart'; -$s_plugin_key_unmet = 'mangler avhengigheter'; -$s_plugin_key_dated = 'utdaterte avhengigheter'; -$s_plugin_key_upgrade = 'oppgradering nødvendig'; $s_project_added_msg = 'Prosjektet har blitt lagt til ...'; $s_category_added_msg = 'Kategorien har blitt lagt til ...'; $s_category_deleted_msg = 'Kategorien har blitt slettet ...'; @@ -839,7 +831,6 @@ $s_changed_label = 'Endret(timer):'; $s_viewing_bugs_title = 'Oversikt over saker'; $s_updated = 'Oppdatert'; $s_sticky = 'Vis fastlåste saker'; -$s_sort_label = 'Sorter etter:'; $s_issue_id = 'Sak #'; $s_recently_visited = 'Sist besøkte'; $s_note_user_id_label = 'Notert av:'; @@ -852,8 +843,6 @@ $s_prev = 'Forrige'; $s_next = 'Neste'; $s_first = 'Første'; $s_last = 'Siste'; -$s_start_date_label = 'Startdato:'; -$s_end_date_label = 'Sluttdato:'; $s_use_date_filters = 'Bruk datoavgrensing'; $s_use_date_filters_label = 'Bruk datofiltre:'; $s_yes = 'Ja'; @@ -1145,7 +1134,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Det var en feil i rapporten din.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Ingen fil spesifisert'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Ulovlig filtype'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Mappen eksisterer ikke. Vennligst sjekk prosjektinnstillingene.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Filen eksisterer fra før. Vennligst slett filen først.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Det eksisterer et prosjekt med et likt navn.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Det påkrevde feltet «%1$s» var tomt. Vennligst kontroller feltene.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Denne kontoen er beskyttet. Du kan ikke bruke kontoen før beskyttelsen er fjernet.'; diff --git a/lang/strings_norwegian_nynorsk.txt b/lang/strings_norwegian_nynorsk.txt index 9200aa0f1f..10a241243c 100644 --- a/lang/strings_norwegian_nynorsk.txt +++ b/lang/strings_norwegian_nynorsk.txt @@ -69,7 +69,6 @@ $s_private_project_msg = 'Dette prosjektet er PRIVAT. Berre administratorar og b $s_access_level_project = 'Prosjekttilgjenge'; $s_view_submitted_bug_link = 'Sjå insend sak %1$s'; $s_assigned_projects = 'Tildelte prosjekt'; -$s_unassigned_projects = 'Utildelte prosjekt'; $s_print = 'Skriv ut'; $s_jump = 'Gå til'; $s_copy_users = 'Kopier brukarar'; @@ -257,7 +256,6 @@ $s_add_bugnote_button = 'Legg til merknad'; $s_bugnote_edit_link = 'Endra'; $s_closed_bug_button = 'Lat att sak'; $s_bugnote_updated_msg = 'Merknaden er vorten oppdatert.'; -$s_edited_on = 'endra:'; $s_hide_content = 'Løyn innhald'; $s_show_content = 'Vis innhald'; $s_click_to_login = 'Trykk her for å logga inn'; @@ -304,15 +302,12 @@ $s_reporter_by_resolution = 'Meldar etter løysingsstoda'; $s_reporter_effectiveness = 'Meldareffektivitet'; $s_developer_by_resolution = 'Utviklar etter løysingsstoda'; $s_percentage_fixed = '% fiksa'; -$s_sort = 'Sorter etter'; $s_issue_id = 'Sak #'; $s_recently_visited = 'Sist vitja'; $s_prev = 'Førre'; $s_next = 'Neste'; $s_first = 'Fyrste'; $s_last = 'Siste'; -$s_start_date = 'Startdato'; -$s_end_date = 'Sluttdato'; $s_use_date_filters = 'Nytt datofilter'; $s_yes = 'Ja'; $s_no = 'Nei'; @@ -347,8 +342,6 @@ $s_set_view_status = 'Endra visingsstoda (offentleg eller privat)'; $s_update_view_status = 'Oppdater visingsstoda (offentleg eller privat)'; $s_notes = 'MERKNADER'; $s_add_notes = 'Legg til merknader'; -$s_update_notes = 'Oppdater merknader'; -$s_delete_note = 'Slett merknad'; $s_view_private_notes = 'Sjå private merknader'; $s_news = 'NYHENDE'; $s_view_private_news = 'Sjå private nyhende'; diff --git a/lang/strings_occitan.txt b/lang/strings_occitan.txt index 2d701efbb8..47f58b9825 100644 --- a/lang/strings_occitan.txt +++ b/lang/strings_occitan.txt @@ -577,10 +577,6 @@ $s_plugin_install = 'Installacion'; $s_plugin_upgrade = 'Mesa a nivèl'; $s_plugin_uninstall = 'Desinstallar'; $s_plugin_uninstall_message = 'Sètz segur que volètz desinstallar lo plugin « %1$s » ?'; -$s_plugin_key_met = 'Plugin prèst'; -$s_plugin_key_unmet = 'Dependéncias introbablas'; -$s_plugin_key_dated = 'Dependéncias perimidas'; -$s_plugin_key_upgrade = 'Mesa a nivèl requerida'; $s_project_added_msg = 'Lo projècte es estat apondut amb succès...'; $s_category_added_msg = 'Categoria novèla creada amb succès...'; $s_category_deleted_msg = 'Categoria escafada amb succès...'; @@ -1082,7 +1078,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'I aviá una error dins vòstre rapòrt.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Pas cap de fichièr especificat'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Tipe de fichièr interdich'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Lo repertòri existís pas. Mercés de verificar los paramètres del projècte.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Fichièr duplicat. Suprimir d\'en primièr lo primièr.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Un projècte amb aqueste nom existís ja.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Un camp obligatòri "%1$s" es pas entresenhat. Mercés de verificar vòstra picada.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Aqueste compte es protegit. Sètz pas autorizat(ada) a i accedir tant que la proteccion existís.'; diff --git a/lang/strings_polish.txt b/lang/strings_polish.txt index 09ab077129..1886c42752 100644 --- a/lang/strings_polish.txt +++ b/lang/strings_polish.txt @@ -573,10 +573,6 @@ $s_plugin_install = 'Instaluj'; $s_plugin_upgrade = 'Instaluj nowszą wersję'; $s_plugin_uninstall = 'Odinstaluj'; $s_plugin_uninstall_message = 'Czy jesteś pewien, że chcesz odinstalować wtyczkę „%1$s”?'; -$s_plugin_key_met = 'wtyczka gotowa'; -$s_plugin_key_unmet = 'niespełnione zależności'; -$s_plugin_key_dated = 'nieaktualne zależności'; -$s_plugin_key_upgrade = 'potrzeba nowsza wersja'; $s_project_added_msg = 'Projekt został pomyślnie dodany...'; $s_category_added_msg = 'Kategoria została pomyślnie dodana...'; $s_category_deleted_msg = 'Kategoria została pomyślnie usunięta...'; @@ -1077,7 +1073,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Wystąpił błąd w zgłoszeniu.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Żaden plik nie został wybrany.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Typ przesyłanego pliku nie jest dozwolony.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Podany katalog nie istnieje. Sprawdź ustawienia projektu.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Plik o podanej nazwie już istnieje. Usuń najpierw istniejący plik.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Istnieje już projekt o takiej nazwie.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Wymagane pole „%1$s” nie zostało wypełnione. Sprawdź wprowadzone dane.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Konto jest zabezpieczone. Nie masz uprawnień dostępu do tego konta dopóki zabezpieczenie jest aktywne.'; diff --git a/lang/strings_portuguese_brazil.txt b/lang/strings_portuguese_brazil.txt index 1c78835e6f..b89944518f 100644 --- a/lang/strings_portuguese_brazil.txt +++ b/lang/strings_portuguese_brazil.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Nível de Acesso ao Projeto'; $s_view_submitted_bug_link = 'Visualizar Caso Enviado %1$s'; $s_assigned_projects = 'Projetos Atribuídos'; $s_assigned_projects_label = 'Projetos Atribuídos:'; -$s_unassigned_projects_label = 'Projetos Não Atribuídos:'; $s_print = 'Imprimir'; $s_jump = 'Ir para'; $s_copy_users = 'Copiar Usuários'; @@ -480,8 +479,6 @@ $s_lost_password_done_title = 'Mensagem de Senha Enviada'; $s_lost_password_subject = 'Reajuste de Senha'; $s_lost_password_info = 'Para reestabelecer sua senha perdida, por favor forneça o nome e endereço de e-mail da sua conta.

Se os dados corresponderem a uma conta válida, lhe será enviado um endereço especial via e-mail que contém um código de validação para a sua conta. Por favor, siga este link para mudar a sua senha.'; $s_lost_password_confirm_hash_OK = 'Sua confirmação foi aceita. Por favor, atualize sua senha.'; -$s_open_and_assigned_to_me_label = 'Abertos e atribuídos a mim:'; -$s_open_and_reported_to_me_label = 'Abertos e relatados por mim:'; $s_newer_news_link = 'Notícias Recentes'; $s_older_news_link = 'Notícias Antigas'; $s_archives = 'Arquivos'; @@ -607,11 +604,6 @@ $s_plugin_install = 'Instalar'; $s_plugin_upgrade = 'Atualizar'; $s_plugin_uninstall = 'Desinstalar'; $s_plugin_uninstall_message = 'Tem certeza que deseja desinstalar o plugin "%1$s"?'; -$s_plugin_key_label = 'Chave:'; -$s_plugin_key_met = 'plugin pronto'; -$s_plugin_key_unmet = 'dependências não satisfeitas'; -$s_plugin_key_dated = 'dependências desatualizadas'; -$s_plugin_key_upgrade = 'atualização necessária'; $s_project_added_msg = 'O projeto foi adicionado com sucesso...'; $s_category_added_msg = 'A categoria foi adicionada com sucesso...'; $s_category_deleted_msg = 'A categoria foi apagada com sucesso...'; @@ -835,7 +827,6 @@ $s_viewing_bugs_title = 'Visualizando Casos'; $s_updated = 'Atualizado'; $s_sticky = 'Mostrar Casos "Pegajosos"'; $s_sticky_label = 'Mostrar Casos "Pegajosos":'; -$s_sort_label = 'Ordenar por:'; $s_issue_id = 'Caso #'; $s_recently_visited = 'Recentemente Visitado'; $s_note_user_id_label = 'Nota Por:'; @@ -848,8 +839,6 @@ $s_prev = 'Anterior'; $s_next = 'Próximo'; $s_first = 'Primeiro'; $s_last = 'Último'; -$s_start_date_label = 'Data de Início:'; -$s_end_date_label = 'Data de Término:'; $s_use_date_filters = 'Usar Filtros de Data'; $s_use_date_filters_label = 'Usar Filtros de Data:'; $s_yes = 'Sim'; @@ -1136,7 +1125,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Houve um erro em seu relatório.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Arquivo não especificado'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'O tipo de arquivo não é permitido'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'O diretório não existe. Por favor, verifique as configurações do projeto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Este é um arquivo duplicado. Por favor, apague o arquivo antes.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Um projeto com este nome já existe.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Um campo necessário \'%1$s\' estava vazio. Por favor, verifique novamente suas entradas.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Esta conta está protegida. Você não tem permissão para acessá-la até que a proteção da conta seja retirada.'; diff --git a/lang/strings_portuguese_standard.txt b/lang/strings_portuguese_standard.txt index 3bf30457a1..c83d0dde94 100644 --- a/lang/strings_portuguese_standard.txt +++ b/lang/strings_portuguese_standard.txt @@ -553,7 +553,6 @@ $MANTIS_ERROR[ERROR_SQL] = 'Erro de SQL detetado'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nenhum ficheiro especificado'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'O tipo de ficheiro está bloqueado.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'A pasta não existe. Por favor verifique as definições do projeto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Este ficheiro é um duplicado. Por favor apague o ficheiro antes.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Já existe um projeto com esse nome.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Esta conta está protegida. Você não tem permissão para aceder a isto até que a proteção seja removida.'; $MANTIS_ERROR[ERROR_ACCESS_DENIED] = 'Acesso Negado.'; diff --git a/lang/strings_qqq.txt b/lang/strings_qqq.txt index 83f1eeb5a3..d52c57bd42 100644 --- a/lang/strings_qqq.txt +++ b/lang/strings_qqq.txt @@ -61,14 +61,10 @@ $s_click_to_login = '{{Identical|Login}}'; $s_login_title = '{{Identical|Login}}'; $s_login_button = '{{Identical|Login}}'; $s_plugin_update = '{{Identical|Update}}'; -$s_plugin_key = 'This message is the title of the page section used to show the different meaning of color codes; -Color codes are described in the s_plugin_key* messages'; $s_update = '{{Identical|Update}}'; $s_summary_link = '{{Identical|Summary}}'; $s_logout_link = '{{Identical|Logout}}'; $s_back_link = '{{Identical|Back}}'; -$s_start_date = '{{Identical|Start date}}'; -$s_end_date = '{{Identical|End date}}'; $s_ok = '{{Identical|OK}}'; $s_add_user_to_monitor = '{{Identical|Add}}'; $s_add_new_relationship_button = '{{Identical|Add}}'; diff --git a/lang/strings_ripoarisch.txt b/lang/strings_ripoarisch.txt index ac0eb8c4c1..5576418e7f 100644 --- a/lang/strings_ripoarisch.txt +++ b/lang/strings_ripoarisch.txt @@ -571,7 +571,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'En Dingem Bereesch es ene Fähler opjetrodde.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Kein Dattei aanjejovve.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Di Zoot Dattei es nit zohjelohße.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Dat Verzeijshneß jidd_et nit. Loor donoh en de Enshtellunge för et Projäk.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Dat es en dubbelte Datei. Donn eets de eezte dovun fottschmiiße.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'E Projäk met däm Name jidd_et ald.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'De nüüdejje Aanjab „%1$s“ es nit jemaat. Donn ens Ding Enjaabe nohloore.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Heh dä Zohjang es extra jeschöz. Do kanns De nix met maache, bes dat dä Schoz wider opjehovve es.'; diff --git a/lang/strings_romanian.txt b/lang/strings_romanian.txt index 48ed253de5..7aa438367e 100644 --- a/lang/strings_romanian.txt +++ b/lang/strings_romanian.txt @@ -885,7 +885,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'EROARE: Aţi omis un detaliu obligatoriu din rapo $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'EROARE: Nu aţi specificat un fişier.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'ERROR: Acest tip de fişier nu este acceptat.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'EROARE: Calea specificată nu există. Verificaţi configuraţia proiectului.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'ERROR: Acest fişier există deja. Ştergeţi vechiul fişier.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'ERROR: Există deja un proiect cu acest nume.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Un câmp necesar "%1$s" a fost vid. Reverificaţi datele de intrare.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'ERROR: Acest cont este protejat şi nu poate fi accesat până când protecţia nu este ridicată.'; diff --git a/lang/strings_russian.txt b/lang/strings_russian.txt index 40d7d55f0d..3bbd5655da 100644 --- a/lang/strings_russian.txt +++ b/lang/strings_russian.txt @@ -74,7 +74,6 @@ $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 = 'Копирование пользователей'; @@ -481,8 +480,6 @@ $s_lost_password_done_title = 'Сообщение отправлено'; $s_lost_password_subject = 'Сброс пароля'; $s_lost_password_info = 'Для восстановления пароля введите регистрационное имя и адрес электронной почты своей учетной записи.

Если данные соответствует существующей учетной записи, вам будет выслана специальная ссылка на страницу с кодом проверки. Для смены пароля перейдите по этой ссылке.'; $s_lost_password_confirm_hash_OK = 'Подтверждение принято. Обновите свой пароль.'; -$s_open_and_assigned_to_me_label = 'Открытых и назначенных мне:'; -$s_open_and_reported_to_me_label = 'Открытых, созданных мной:'; $s_newer_news_link = 'Свежие новости'; $s_older_news_link = 'Старые новости'; $s_archives = 'Архивы'; @@ -614,11 +611,6 @@ $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 = 'несовместимая версия'; -$s_plugin_key_upgrade = 'необходимо обновление'; $s_project_added_msg = 'Проект добавлен...'; $s_category_added_msg = 'Категория добавлена...'; $s_category_deleted_msg = 'Категория удалена...'; @@ -842,7 +834,6 @@ $s_viewing_bugs_title = 'Список инцидентов'; $s_updated = 'Изменен'; $s_sticky = 'Выводить прикрепленные'; $s_sticky_label = 'Выводить прикрепленные:'; -$s_sort_label = 'Сортировать по:'; $s_issue_id = 'Инцидент #'; $s_recently_visited = 'Недавно посещенные'; $s_priority_abbreviation = 'П'; @@ -856,8 +847,6 @@ $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 = 'да'; @@ -1150,7 +1139,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Во введенной информации об $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Не указан файл.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Этот тип файлов запрещен.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Каталог не существует. Проверьте настройки проекта.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Дубликат файла. Сначала удалите старый файл.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Проект с таким названием уже существует.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Обязательное поле \'%1$s\' не заполнено. Пожалуйста, проверьте правильность заполнения.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Эта учетная запись защищена. Вы не сможете получить к ней доступ, пока защита не снята.'; diff --git a/lang/strings_serbian.txt b/lang/strings_serbian.txt index 35e01b8a70..b04c3c26ef 100644 --- a/lang/strings_serbian.txt +++ b/lang/strings_serbian.txt @@ -655,7 +655,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Postoji greska u vasem izvestaju.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Fajl nije izabran'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Ovaj tip fajla nije dozvoljen'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Direktorijum ne postoji. Molim proverite podesavanja projekta.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Dupliran fajl. Molim izbrisite fajl prvo.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projekat pod tim imenom vec postoji.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Obavezno polje je ostavljeno prazno. Molim proverite podatke.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Ovaj nalog je zasticen. Niste ovlasceni da mu pristupite dok se zastita ne ukloni .'; diff --git a/lang/strings_slovak.txt b/lang/strings_slovak.txt index 59b4cbcd2c..357fe9b04d 100644 --- a/lang/strings_slovak.txt +++ b/lang/strings_slovak.txt @@ -571,10 +571,6 @@ $s_plugin_install = 'Inštalácia'; $s_plugin_upgrade = 'Upgradovať'; $s_plugin_uninstall = 'Odinštalovať'; $s_plugin_uninstall_message = 'Ste si istý, že chcete odinštalovať zásuvný modul "%1$s"?'; -$s_plugin_key_met = 'zásuvný modul pripravený'; -$s_plugin_key_unmet = 'nesplnené závislosti'; -$s_plugin_key_dated = 'zastaralé závislosti'; -$s_plugin_key_upgrade = 'vyžadovaný upgrade'; $s_project_added_msg = 'Projekt bol úspešne pridaný...'; $s_category_added_msg = 'Kategória bola úspešne pridaná...'; $s_category_deleted_msg = 'Kategória bola úspešne zmazaná...'; @@ -1076,7 +1072,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Vo vašej správe bola chyba.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Žiadny súbor nebol určený.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Tento typ súboru nie je povolený.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Adresár neexistuje. Prosím skontrolujte nastavenia projektu.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Toto je duplikátny súbor. Prosím, najprv súbor zmažte.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projekt s takým názvom už existuje.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Potrebné pole „%1$s“ nebolo vyplnené. Prosím, znova skontrolujte údaje, ktoré ste zadali.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Toto konto je chránené. Nemáte povolený vstup dokiaľ nebude ochrana odstránená.'; diff --git a/lang/strings_slovene.txt b/lang/strings_slovene.txt index c249a203a5..6d5bfbafa0 100644 --- a/lang/strings_slovene.txt +++ b/lang/strings_slovene.txt @@ -612,7 +612,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'V vašem poročilu je bila napaka.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Nobena datoteka ni bila določena'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Vrsta datoteke ni odobrena'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Direktorij ne obstaja. Preverite nastavitve projekta.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Datoteka je dvojnik. Najprej izbrišite datoteko.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Projekt s tem imenom že obstaja.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Polje \'%1$s\' je bilo prazno. Ponovno preverite vnose.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Uporabniški račun je zaščiten. Dostop je onemogočen, dokler se zaščita računa ne odpravi.'; diff --git a/lang/strings_spanish.txt b/lang/strings_spanish.txt index 94eef9975a..eb12cf82ee 100644 --- a/lang/strings_spanish.txt +++ b/lang/strings_spanish.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Nivel de Acceso de Proyecto'; $s_view_submitted_bug_link = 'Ver Incidencia Reportada %1$s'; $s_assigned_projects = 'Proyectos Asignados'; $s_assigned_projects_label = 'Proyectos Asignados:'; -$s_unassigned_projects_label = 'Proyectos sin asignar:'; $s_print = 'Imprimir'; $s_jump = 'Ir a Incidencia'; $s_copy_users = 'Copiar Usuarios'; @@ -478,8 +477,6 @@ $s_lost_password_done_title = 'Mensaje de contraseña enviado'; $s_lost_password_subject = 'Reinicialización de Contraseña'; $s_lost_password_info = 'Para recuperar su contraseña olvidada, por favor escriba su e-mail y contraseña.

Si los datos corresponden a una cuenta válida, recibirá por e-mail una dirección especial para cambiar su contraseña, que contiene un código de validación para su cuenta. Por favor siga las instrucciones que recibirá para cambiar su contraseña.'; $s_lost_password_confirm_hash_OK = 'Su confirmación ha sido aceptada. Por favor cambie su contraseña.'; -$s_open_and_assigned_to_me_label = 'Abiertas y asignadas a mí:'; -$s_open_and_reported_to_me_label = 'Abiertas y reportadas por mí:'; $s_newer_news_link = 'Noticias más Recientes'; $s_older_news_link = 'Noticias Anteriores'; $s_archives = 'Archivo de Noticias'; @@ -611,11 +608,6 @@ $s_plugin_install = 'Instalar'; $s_plugin_upgrade = 'Actualizar'; $s_plugin_uninstall = 'Desinstalar'; $s_plugin_uninstall_message = '¿Está seguro que desea desinstalar el plugin \'%1$s\'?'; -$s_plugin_key_label = 'Clave:'; -$s_plugin_key_met = 'plugin listo'; -$s_plugin_key_unmet = 'dependencias no satisfechas'; -$s_plugin_key_dated = 'dependencies desactualizadas'; -$s_plugin_key_upgrade = 'actualización requerida'; $s_project_added_msg = 'El proyecto ha sido agregado...'; $s_category_added_msg = 'La categoría ha sido agregada...'; $s_category_deleted_msg = 'La categoría ha sido eliminada...'; @@ -839,7 +831,6 @@ $s_viewing_bugs_title = 'Mostrando Incidencias'; $s_updated = 'Actualizada'; $s_sticky = 'Ver Incidencias Fijadas'; $s_sticky_label = 'Mostrar Incidencias Fijadas:'; -$s_sort_label = 'Ordenado por:'; $s_issue_id = 'Incidencia #'; $s_recently_visited = 'Visitadas recientemente'; $s_priority_abbreviation = 'P'; @@ -853,8 +844,6 @@ $s_prev = 'Anterior'; $s_next = 'Siguiente'; $s_first = 'Primero'; $s_last = 'Último'; -$s_start_date_label = 'Fecha de Inicio:'; -$s_end_date_label = 'Fecha de Fin:'; $s_use_date_filters = 'Usar filtros de fecha'; $s_use_date_filters_label = 'Usar Filtros de Fecha:'; $s_yes = 'Sí'; @@ -1146,7 +1135,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Se encontró un error en su informe.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Archivo no especificado'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Este tipo de archivo no está permitido'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'El directorio no existe. Por favor revise la configuración del proyecto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Este es un archivo duplicado. Por favor borre el archivo primero.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Ya existe un proyecto con este nombre.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'El campo requerido "%1$s" está vacío. Por favor, verifique los datos.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Esta cuenta está protegida. No está autorizado a utilizarla hasta que la protección de la cuenta haya sido retirada.'; diff --git a/lang/strings_swedish.txt b/lang/strings_swedish.txt index 191057d4d0..b2c5f3124a 100644 --- a/lang/strings_swedish.txt +++ b/lang/strings_swedish.txt @@ -568,10 +568,6 @@ $s_plugin_install = 'Installera'; $s_plugin_upgrade = 'Uppgradera'; $s_plugin_uninstall = 'Avinstallera'; $s_plugin_uninstall_message = 'Är du säker att du vill avinstallera insticksprogrammet "%1$s"?'; -$s_plugin_key_met = 'instickprogrammet redo'; -$s_plugin_key_unmet = 'beroende saknas'; -$s_plugin_key_dated = 'föråldrade beroenden'; -$s_plugin_key_upgrade = 'uppgradering behövs'; $s_project_added_msg = 'Projektet har lagts till...'; $s_category_added_msg = 'Kategorin har lagts till...'; $s_category_deleted_msg = 'Kategorin har tagits bort...'; @@ -1058,7 +1054,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Det fanns ett fel i din rapport.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Ingen fil angiven'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Filtypen är inte tillåten'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Katalogen finns inte. Var god kontrollera projektinställningarna.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Filen finns redan. Var god ta bort den andra filen först.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Ett projekt med det namnet finns redan.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Det obligatoriska fältet "%1$s" var tomt. Var god kontrollera din inmatning.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Detta konto är skyddat. Du har inte tillgång till det innan skyddet är borttaget.'; diff --git a/lang/strings_swissgerman.txt b/lang/strings_swissgerman.txt index 93b79a81c0..f466fb5237 100644 --- a/lang/strings_swissgerman.txt +++ b/lang/strings_swissgerman.txt @@ -74,7 +74,6 @@ $s_access_level_project = 'Projäkt-Zuegangsstapfle'; $s_view_submitted_bug_link = 'Zeig yytrait Probläm %1$s'; $s_assigned_projects = 'Zuegwiseni Projäkt'; $s_assigned_projects_label = 'Zuegwiseni Projäkt:'; -$s_unassigned_projects_label = 'Nit zuegwiseni Projäkt:'; $s_print = 'Drucke'; $s_jump = 'Gumpe'; $s_copy_users = 'Benutzer kopiere'; @@ -483,8 +482,6 @@ $s_lost_password_done_title = 'Passwort-Nochricht gschickt'; $s_lost_password_subject = 'Passwort zrucksetze'; $s_lost_password_info = 'Go Dyy verlore Passwort iberchuu, gib bitte Benutzername un E-Mail Adräss zu Dyynem Konto aa.

Wänn d Date zuen eme giltige Konto stimme, wird Dir e speziälli URL iber E-Mail gschickt, wu s e Bstätigungscode fir Dyy Konto din het. Bitte gang däm Gleich (Link) no un ändere Dyy Passwort.'; $s_lost_password_confirm_hash_OK = 'Dyy Bstätigung isch akzeptiert wore. Bitte aktualisier Dyy Passwort.'; -$s_open_and_assigned_to_me_label = 'Uffe un zuegwise an mi:'; -$s_open_and_reported_to_me_label = 'Uffe un gmäldet dur mi:'; $s_newer_news_link = 'Nejeri Nochrichte'; $s_older_news_link = 'Elteri Nochrichte'; $s_archives = 'Archiv'; @@ -615,11 +612,6 @@ $s_plugin_install = 'Installiere'; $s_plugin_upgrade = 'Ufrischte'; $s_plugin_uninstall = 'Deinstallation'; $s_plugin_uninstall_message = 'Bisch sicher, ass Du s Plugin „%1$s“ witt deinstalliere?'; -$s_plugin_key_label = 'Schlissel:'; -$s_plugin_key_met = 'Plugin fertig'; -$s_plugin_key_unmet = 'nit erfillti Abhängigkeite'; -$s_plugin_key_dated = 'veralteti Abhängigkeite'; -$s_plugin_key_upgrade = 'Upgrade notwändig'; $s_project_added_msg = 'Projäkt isch zuegfiegt wore …'; $s_category_added_msg = 'Kategorii isch zuegfiegt wore …'; $s_category_deleted_msg = 'Kategorii isch glescht wore …'; @@ -843,7 +835,6 @@ $s_viewing_bugs_title = 'Probläm aazeige'; $s_updated = 'Aktualisiert'; $s_sticky = 'Fixierti Probläm aazeige'; $s_sticky_label = 'Sticky-Mäldige zeige:'; -$s_sort_label = 'Sortiere no:'; $s_issue_id = 'Probläm #'; $s_recently_visited = 'Letschti ufgmacht'; $s_note_user_id_label = 'Aagmerkt dur:'; @@ -856,8 +847,6 @@ $s_prev = 'Zruck'; $s_next = 'Vor'; $s_first = 'Erschti'; $s_last = 'Letschti'; -$s_start_date_label = 'Aafangsdatum:'; -$s_end_date_label = 'Änddatum:'; $s_use_date_filters = 'Datumsfilter neh'; $s_use_date_filters_label = 'Datumsfilter verwände:'; $s_yes = 'Jo'; @@ -1149,7 +1138,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'In Dyynem Report het s e Fähler din.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Kei Datei aagee.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Dää Dateityp isch nit erlaubt.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'S Verzeichnis git s nit. Iberprief d Yystellige.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Des isch e doppleti Datei. Lesch zerscht säli Datei.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'S het scho ne Projäkt mit däm Name.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'E notwändig Fäld „%1$s“ isch läär gsi. Iberprief Dyyni Yygabe.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Des Konto isch gschitzt. Du chasch nit druf zuegryfe, voreb dr Schutz ufghoben isch.'; diff --git a/lang/strings_tagalog.txt b/lang/strings_tagalog.txt index 756554dd46..ebebd182b3 100644 --- a/lang/strings_tagalog.txt +++ b/lang/strings_tagalog.txt @@ -564,10 +564,6 @@ $s_plugin_install = 'Iluklok'; $s_plugin_upgrade = 'Itaas ang Uri/Kalidad'; $s_plugin_uninstall = 'Huwag iluklok'; $s_plugin_uninstall_message = 'Nakatitiyak ka bang nais mong tanggalin sa pagkakaluklok ang pampasak na "%1$s"?'; -$s_plugin_key_met = 'nakahanda na ang pampasak'; -$s_plugin_key_unmet = 'hindi nakamit na mga inaasahan'; -$s_plugin_key_dated = 'lipas na mga inaasahan'; -$s_plugin_key_upgrade = 'kailangan ang pagtataas ng uri/kalidad'; $s_project_added_msg = 'Matagumpay na naidagdag ang proyekto...'; $s_category_added_msg = 'Matagumpay na naidagdag ang kaurian...'; $s_category_deleted_msg = 'Matagumpay na nabura ang kaurian...'; @@ -1045,7 +1041,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'May isang kamalian sa loob ng iyong ulat.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Walang tinukoy na talaksan.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Hindi pinapahintulutan ang uri ng talaksan.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Hindi umiiral ang direktoryo. Pakisuri lamang ang mga pagtatakdang pamproyekto.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Isa itong sipi/kopya (kakambal) ng talaksan. Pakibura muna ang talaksan.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Umiiral na ang proyektong may ganyang pangalan.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Walang laman ang isang kinakailangang kahanayang "%1$s". Pakisuri lamang muli ang mga ipinasok mo.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Nakasanggalang ang kuwentang ito. Hindi ka pinapahintulutang mapuntahan ito hangga\'t hindi inaalis ang proteksyon ng akawnt.'; diff --git a/lang/strings_turkish.txt b/lang/strings_turkish.txt index 48c4bdabbf..f90760af34 100644 --- a/lang/strings_turkish.txt +++ b/lang/strings_turkish.txt @@ -52,7 +52,6 @@ $s_private_project_msg = 'Bu projeye sadece yöneticiler ve yöneticiler tarafı $s_access_level_project = 'Proje Erişim Sınırı'; $s_view_submitted_bug_link = 'Gönderilmiş Bugları İzle %1$s'; $s_assigned_projects = 'Atanmış Projeler'; -$s_unassigned_projects = 'Atanmamış Projeler'; $s_print = 'Yazdır'; $s_jump = 'Git'; $s_copy_users = 'Kullanıcıları Kopyala'; @@ -197,7 +196,6 @@ $s_add_bugnote_button = 'Bug Notu Ekle'; $s_bugnote_edit_link = 'Güncelle'; $s_closed_bug_button = 'Bug Kapat'; $s_bugnote_updated_msg = 'Bug notu başarıyla güncellendi...'; -$s_edited_on = 'güncelleme tarihi:'; $s_click_to_login = 'Sisteme Girmek İçin Tıklayınız'; $s_login_page_info = 'Bug Takip Sistemine hoşgeldiniz.'; $s_login_title = 'Sisteme Giriş'; @@ -206,8 +204,6 @@ $s_choose_project = 'Proje Seç'; $s_login_button = 'Sisteme Gir'; $s_signup_link = 'Yeni bir hesap aç'; $s_select_project_button = 'Proje Seç'; -$s_open_and_assigned_to_me = 'Açık ve bana atanmış olanlar'; -$s_open_and_reported_to_me = 'Açık ve benim tarafımdan bildirilenler'; $s_newer_news_link = 'Yeni Haberler'; $s_older_news_link = 'Eski Haberler'; $s_created_user_part1 = 'Kullanıcı'; @@ -404,6 +400,5 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Raporunuzda bir hata tespit edildi.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Dosya adı belirtilmedi.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Bu dosya türüne izin verilmemektedir'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Dizin bulunamadı. Lütfen proje ayarlarınızı kontrol ediniz.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Bu daha önce girilmiş bir dosya adı. Lütfen önce dosyayı siliniz.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Gerekli bir girdi alanı boş bırakıldı. Lütfen girdilerinizi kontrol ediniz.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Bu kullanıcı hesabı koruma altında. Koruma kaldırılana kadar erişime izin verilmeyecektir.'; diff --git a/lang/strings_ukrainian.txt b/lang/strings_ukrainian.txt index b2a4c028e8..e75311a014 100644 --- a/lang/strings_ukrainian.txt +++ b/lang/strings_ukrainian.txt @@ -717,7 +717,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'Десь у вашому звіті є помил $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Не вказаний файл'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Недозволений тип файлів'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Папка не існує. Перевірте параметри проекту.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Це дублікат файлу. Спочатку видаліть попередній файл.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Проект з такою назвою вже існує.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Не заповнене обов\'язкове поле \'%1$s\'. Перевірте заповнені поля.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Цей запис захищений. Ви не зможете переглядати його доки ввімкнений захист.'; diff --git a/lang/strings_urdu.txt b/lang/strings_urdu.txt index c508296c42..a9c43998d4 100644 --- a/lang/strings_urdu.txt +++ b/lang/strings_urdu.txt @@ -907,7 +907,6 @@ $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'کوی فاہل بتای نہی گی'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'اس قسم کی فاہل کی اجازت نہی'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'لسٹ دستیاب نہی ھے. Please check the project settings.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'یہ نقل والی فاہل ھےمہربانی کر کے پہلے اسے خارج کریں.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'اس نام کا منصو بہ پہلے ہی موجود ھے.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'اپنی اندراج والی قیمت دیکھیں ایک بہت ہی خاص اندراج نہی ھے \'%1$s\''; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'یہ کھاتہ مھفوظ ھے آپ اسے استہمال نہی کر سکتے جب تک اسے غیر مہفوظ نہ بنایا جاے۔.'; diff --git a/lang/strings_volapuk.txt b/lang/strings_volapuk.txt index 59370fc855..e1015bce32 100644 --- a/lang/strings_volapuk.txt +++ b/lang/strings_volapuk.txt @@ -191,7 +191,6 @@ $s_delete_link = 'Moükön'; $s_add_bugnote_title = 'Läükön Noeti'; $s_add_bugnote_button = 'Läükön Noeti'; $s_bugnote_edit_link = 'Redakön'; -$s_edited_on = 'pebevobon ün:'; $s_hide_content = 'Klänedön Ninädi'; $s_show_content = 'Jonön Ninädi'; $s_total_queries_executed = '%1$d seivids valemik peledunons.'; @@ -209,7 +208,6 @@ $s_lost_password_link = 'Eperol-li letavödi olik?'; $s_select_project_button = 'Välön Proyegi'; $s_lost_password_done_title = 'Letavödanun pesedon'; $s_lost_password_confirm_hash_OK = 'Fümedam olik pezepon. Votükolös letavödi olik.'; -$s_open_and_assigned_to_me = 'Maifik ä pegivülöl obe'; $s_site_information = 'Nüns tefü Topäd'; $s_mantis_version = 'Fomam ela MantisBT'; $s_site_path = 'Luveg Bevüresodatopäda'; @@ -259,7 +257,6 @@ $s_plugin_author = 'Lautan: %$1s'; $s_plugin_url = 'Bevüresodatopäd:'; $s_plugin_protected = 'Pejelon'; $s_plugin_actions = 'Duns'; -$s_plugin_key = 'Kik'; $s_project_added_msg = 'Proyeg peläükon benosekiko...'; $s_category_added_msg = 'Klad peläükon benosekiko...'; $s_category_deleted_msg = 'Klad pemoükon benosekiko...'; @@ -368,8 +365,6 @@ $s_prev = 'Büik'; $s_next = 'Sököl'; $s_first = 'Balid'; $s_last = 'Lätik'; -$s_start_date = 'Primadät'; -$s_end_date = 'Finadät'; $s_use_date_filters = 'Gebön Dätisulis'; $s_yes = 'Si'; $s_no = 'No'; @@ -411,7 +406,6 @@ $s_horizontal = 'Horitätik'; $s_view = 'Logön'; $s_notes = 'NOETS'; $s_add_notes = 'Läükön noetis'; -$s_delete_note = 'Moükön noetis'; $s_view_private_notes = 'Logön noetis privatik'; $s_delete_attachment_button = 'Moükön'; $s_filters = 'suls'; @@ -449,7 +443,6 @@ $MANTIS_ERROR[ERROR_REPORT] = 'In nunod oli ädabinon pöl.'; $MANTIS_ERROR[ERROR_NO_FILE_SPECIFIED] = 'Ragiv nonik pegivon.'; $MANTIS_ERROR[ERROR_FILE_DISALLOWED] = 'Ragivatip no pedälon.'; $MANTIS_ERROR[ERROR_NO_DIRECTORY] = 'Ragiviär no dabinon. Kontrololös parametemi proyega.'; -$MANTIS_ERROR[ERROR_DUPLICATE_FILE] = 'Atos binon ragiv petelüköl. Büo moükolös ragivi.'; $MANTIS_ERROR[ERROR_DUPLICATE_PROJECT] = 'Proyeg labü nem at ya dabinon.'; $MANTIS_ERROR[ERROR_EMPTY_FIELD] = 'Fel zesüdik: „$1$s“ ävagon. Kontrololös utosi, kelosi epenol.'; $MANTIS_ERROR[ERROR_PROTECTED_ACCOUNT] = 'Kal at pejelon. No dalol gebön ani jüs kalijel ponosükon.';