/bugzilla/3.4.4/tr/default/setup/strings.txt.pl

https://bitbucket.org/baris/pardus-projects · Perl · 132 lines · 92 code · 9 blank · 31 comment · 4 complexity · bdc0328bceba2997116b3f0bcf2993ec MD5 · raw file

  1. # The contents of this file are subject to the Mozilla Public
  2. # License Version 1.1 (the "License"); you may not use this file
  3. # except in compliance with the License. You may obtain a copy of
  4. # the License at http://www.mozilla.org/MPL/
  5. #
  6. # Software distributed under the License is distributed on an "AS
  7. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. # implied. See the License for the specific language governing
  9. # rights and limitations under the License.
  10. #
  11. # The Initial Developer of the Original Code is Everything Solved.
  12. # Portions created by Everything Solved are Copyright (C) 2007
  13. # Everything Solved. All Rights Reserved.
  14. #
  15. # The Original Code is the Bugzilla Bug Tracking System.
  16. #
  17. # Contributor(s): Max Kanat-Alexander <mkanat@bugzilla.org>
  18. # Translator(s): Necmettin Begiter <necmettin@pardus.org.tr> (Turkish)
  19. # This file contains a single hash named %strings, which is used by the
  20. # installation code to display strings before Template-Toolkit can safely
  21. # be loaded.
  22. #
  23. # Each string supports a very simple substitution system, where you can
  24. # have variables named like ##this## and they'll be replaced by the string
  25. # variable with that name.
  26. #
  27. # Please keep the strings in alphabetical order by their name.
  28. %strings = (
  29. any => 'any',
  30. blacklisted => '(blacklisted)',
  31. checking_for => 'Checking for',
  32. checking_dbd => 'Checking available perl DBD modules...',
  33. checking_optional => 'The following Perl modules are optional:',
  34. checking_modules => 'Checking perl modules...',
  35. commands_dbd => <<EOT,
  36. YOU MUST RUN ONE OF THE FOLLOWING COMMANDS (depending on which database
  37. you use):
  38. EOT
  39. commands_optional => 'COMMANDS TO INSTALL OPTIONAL MODULES:',
  40. commands_required => <<EOT,
  41. COMMANDS TO INSTALL REQUIRED MODULES (You *must* run all these commands
  42. and then re-run checksetup.pl):
  43. EOT
  44. done => 'done.',
  45. header => "* This is Bugzilla ##bz_ver## on perl ##perl_ver##\n"
  46. . "* Running on ##os_name## ##os_ver##",
  47. install_all => <<EOT,
  48. To attempt an automatic install of every required and optional module
  49. with one command, do:
  50. ##perl## install-module.pl --all
  51. EOT
  52. install_data_too_long => <<EOT,
  53. WARNING: Some of the data in the ##table##.##column## column is longer than
  54. its new length limit of ##max_length## characters. The data that needs to be
  55. fixed is printed below with the value of the ##id_column## column first and
  56. then the value of the ##column## column that needs to be fixed:
  57. EOT
  58. install_module => 'Installing ##module## version ##version##...',
  59. max_allowed_packet => <<EOT,
  60. WARNING: You need to set the max_allowed_packet parameter in your MySQL
  61. configuration to at least ##needed##. Currently it is set to ##current##.
  62. You can set this parameter in the [mysqld] section of your MySQL
  63. configuration file.
  64. EOT
  65. min_version_required => "Minimum version required: ",
  66. # Note: When translating these "modules" messages, don't change the formatting
  67. # if possible, because there is hardcoded formatting in
  68. # Bugzilla::Install::Requirements to match the box formatting.
  69. modules_message_db => <<EOT,
  70. ***********************************************************************
  71. * DATABASE ACCESS *
  72. ***********************************************************************
  73. * In order to access your database, Bugzilla requires that the *
  74. * correct "DBD" module be installed for the database that you are *
  75. * running. See below for the correct command to run to install the *
  76. * appropriate module for your database. *
  77. EOT
  78. modules_message_optional => <<EOT,
  79. ***********************************************************************
  80. * OPTIONAL MODULES *
  81. ***********************************************************************
  82. * Certain Perl modules are not required by Bugzilla, but by *
  83. * installing the latest version you gain access to additional *
  84. * features. *
  85. * *
  86. * The optional modules you do not have installed are listed below, *
  87. * with the name of the feature they enable. Below that table are the *
  88. * commands to install each module. *
  89. EOT
  90. modules_message_required => <<EOT,
  91. ***********************************************************************
  92. * REQUIRED MODULES *
  93. ***********************************************************************
  94. * Bugzilla requires you to install some Perl modules which are either *
  95. * missing from your system, or the version on your system is too old. *
  96. * See below for commands to install these modules. *
  97. EOT
  98. module_found => "found v##ver##",
  99. module_not_found => "not found",
  100. module_ok => 'ok',
  101. module_unknown_version => "found unknown version",
  102. ppm_repo_add => <<EOT,
  103. ***********************************************************************
  104. * Note For Windows Users *
  105. ***********************************************************************
  106. * In order to install the modules listed below, you first have to run *
  107. * the following command as an Administrator: *
  108. * *
  109. * ppm repo add theory58S ##theory_url##
  110. EOT
  111. ppm_repo_up => <<EOT,
  112. * *
  113. * Then you have to do (also as an Administrator): *
  114. * *
  115. * ppm repo up theory58S *
  116. * *
  117. * Do that last command over and over until you see "theory58S" at the *
  118. * top of the displayed list. *
  119. EOT
  120. template_precompile => "Precompiling templates...",
  121. template_removing_dir => "Removing existing compiled templates...",
  122. );
  123. 1;