home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / modules / wiki / lang / default.php
PHP Script  |  2004-03-08  |  6KB  |  130 lines

  1. <?php
  2. /** 
  3.  *   This file provides the textual interface of WikkiTikkiTavi
  4.  * For more information see http://tavi.sourceforge.net/TaviTranslation
  5.  *
  6.  *   This file is divided into the sections according to subdirectories of 
  7.  * where the constants are used. So that the constant PARSE_RecentChanges are
  8.  * to be found somewhere within the parse-subdirectory.
  9.  *
  10.  *   See http://tavi.sourceforge.net/TaviTranslation for notes on how to 
  11.  * translate the file into another language, and how to publish your changes.
  12.  * Please do contribute to make 'Tavi available in multiple languages. 
  13.  *   The gist of translation, is to copy this file and translate it. Store the
  14.  * resulting work as lang_XX.php, where XX denotes the two characters used to
  15.  * describe the language. And after that to add a line like the following to
  16.  * your config.php:
  17.  *   define(LANGUAGE_CODE, 'fr');
  18.  * Using 'fr' for the french version, if available.
  19.  */
  20.  
  21. /* General messages */
  22. define('GEN_ErrorSuffix', 
  23.        '<br />Please contact the <a href="mailto:' . 
  24.        $Admin . '">administrator</a> for assistance.');
  25.  
  26. /* action-directory */
  27. define('ACTION_RateControlIpBlocking', 'Rate control / IP blocking disabled');
  28. define('ACTION_LockUnlockPages', 'Lock / unlock pages');
  29. define('ACTION_BLockUnblockHosts', 'Block / unblock hosts');
  30. define('ACTION_ErrorNameMatch',
  31.        'You have entered an invalid user name.' . GEN_ErrorSuffix);
  32. define('ACTION_ErrorAdminDisabled',
  33.        'Administration features are disabled for this wiki.'.GEN_ErrorSuffix);
  34. define('ACTION_ErrorPageLocked',
  35.        'The page you have tried to edit is locked.' . GEN_ErrorSuffix);
  36.  
  37. /* lib-directory */
  38. define('LIB_ErrorDatabaseQuery', 
  39.        'Error executing database query.' . GEN_ErrorSuffix);
  40. define('LIB_ErrorDatabaseConnect', 
  41.        'Error connecting to database.' . GEN_ErrorSuffix); 
  42. define('LIB_ErrorDatabaseSelect', 
  43.        'Error selecting database.' . GEN_ErrorSuffix); 
  44. define('LIB_ErrorCreatingTemp', 
  45.        'Error creating temporary file.' . GEN_ErrorSuffix);
  46. define('LIB_ErrorWritingTemp',
  47.        'Error writing to temporary file.' . GEN_ErrorSuffix);
  48. // The next two entries are parsed through the wiki engine, so leave the \'\'
  49. // to get bolded entries... And the escaping of $!DiffCmd...   ;)
  50. define('LIB_NoDiffAvailableSafeMode',
  51.        '\'\'No diff available, due to wrong location of diffcmd. It should '.
  52.        'have been inside '. ini_get("safe_mode_exec_dir") .
  53.        'but is located at '. $DiffCmd .'. Please relocate diffcmd or '.
  54.        'make sysAdmins create symbolic links into this directory. Also '.
  55.        'remember to change configuration of $!DiffCmd accordingly.\'\'');       
  56. define('LIB_NoDiffAvailable',
  57.        '\'\'No diff available. $!DiffCmd points to ' . $DiffCmd .
  58.        ' which doesn\'t exist or isn\'t readable\'\'');
  59. define('LIB_ErrorDeniedAccess',
  60.        'You have been denied access to this site.' . GEN_ErrorSuffix);
  61. define('LIB_ErrorRateExceeded',
  62.        'You have exeeded the number of pages you are allowed to visit in a '.
  63.        'given period of time.  Please return later.' . GEN_ErrorSuffix);
  64. define('LIB_ErrorInvalidPage',
  65.        'Invalid page name.' . GEN_ErrorSuffix);
  66.  
  67. /* parse-directory */
  68. define('PARSE_Added', 'Added: ');
  69. define('PARSE_Changed', 'Changed: ');
  70. define('PARSE_Deleted', 'Deleted: ');
  71. define('PARSE_Never', 'Never'); 
  72. // The next two entries, are joined with a counting variable inbetween
  73. define('PARSE_CompleteListStart', 'See complete list (');
  74. define('PARSE_CompleteListEnd',   ' entries)');
  75. define('PARSE_RecentChanges', 'RecentChanges');
  76. define('PARSE_Locked', 'Locked');
  77. define('PARSE_BlockedRange', 'Blocked IP address ranges');
  78. define('PARSE_EnterIpRange', 
  79.        'Enter IP address range in form <tt>12.*</tt>, <tt>34.56.*</tt>, or ' .
  80.        '<tt>78.90.123.*</tt>');
  81. define('PARSE_EmptyToBeDeleted',
  82.        ' ** Empty, scheduled for deletion ** ');
  83. define('PARSE_From', 'from'); //ie. SomeThing *from* WantedPages, MacroSomePage
  84. define('PARSE_ButtonButton', 'Block');
  85. define('PARSE_ButtonBlock', 'Unblock');
  86. define('PARSE_ButtonSave', 'Save');
  87. define('PARSE_ButtonPreview', 'Preview');
  88.  
  89. /* Template directory */
  90. // Note the change to use only TMPL_ as prefix instead of full TEMPLATE_
  91. define('TMPL_Adminstration', 'Administration');
  92. define('TMPL_EditDocument', 'Edit this document');
  93. define('TMPL_NoEditDocument', 'This document can\'t be edited');
  94. define('TMPL_EditArchiveVersion', 
  95.        'Edit this <em>ARCHIVE VERSION</em> of this document');
  96. // Next entry is followed by a date as produced by html_time()
  97. define('TMPL_ViewDocHistory', 'View document history');
  98. define('TMPL_DocLastModified', 'Document last modified');
  99. define('TMPL_TwinPages', 'Twin pages:');
  100. define('TMPL_Search', 'Search:');
  101. define('TMPL_Editing', 'Editing');
  102. define('TMPL_WarningOtherEditing',
  103.        'Warning: since you started editing, this document has been changed '.
  104.        'by someone else.  Please merge your edits into the current version '.
  105.        'of this document.' );
  106. define('TMPL_CurrentVersion', 'Current Version');
  107. define('TMPL_ButtonSave', 'Save');
  108. define('TMPL_ButtonPreview', 'Preview');
  109. define('TMPL_YourUsername', 'Your user name is');
  110. define('TMPL_VisitPrefs', 
  111.        'Visit <a href="'. $PrefsScript. '">Preferences</a> to set '.
  112.        'your user name');
  113. define('TMPL_SummaryOfChange', 'Summary of change:');
  114. define('TMPL_AddToCategory', 'Add document to category:');
  115. define('TMPL_YourChanges', 'Your changes');
  116. define('TMPL_PreviewCurrentVersion', 'Preview of Current Version');
  117. define('TMPL_DifferencesIn', 'Differences In');
  118. define('TMPL_DifferenceBetweenVersions', 'Difference between versions:');
  119. define('TMPL_Find', 'Find');
  120. define('TMPL_HistoryOf', 'History of');
  121. define('TMPL_Older', 'Older');
  122. define('TMPL_Newer', 'Newer');
  123. define('TMPL_ButtonComputeDifference', 'Compute Difference');
  124. define('TMPL_ChangesLastAuthor', 'Changes by last author:');
  125. define('TMPL_Prefs', 'Preferences');
  126. define('TMPL_Previewing', 'Previewing');
  127. define('TMPL_Preview', 'Preview');
  128.  
  129. ?>
  130.