summaryrefslogtreecommitdiff
path: root/modules/locale/locale.module
blob: 58deceb631dcfd133ac7e63ad8491ba581658345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<?php
// $Id$

/**
 * @file
 * Enables administrators to manage the site interface languages.
 *
 * When enabled, the site interface can be displayed in different
 * languages. The setup of languages and translations is completely
 * web based. Gettext portable object files are supported.
 */

// ---------------------------------------------------------------------------------
// Hook implementations (needed on all page loads)

/**
 * Implementation of hook_help().
 */
function locale_help($section = "admin/help#locale") {
  switch ($section) {
    case 'admin/modules#description':
      return t('Enables the translation of the user interface to languages other than English.');
    case 'admin/locale':
    case 'admin/locale/language/overview':
      return t("<p>Drupal provides support for the translation of its interface text into different languages.  This page provides an overview of the installed languages. You can add a language on the <a href=\"%add-language\">add language page</a>, or directly by <a href=\"%import\">importing a translation</a>. If multiple languages are enabled, registered users will be able to set their preferred language.  The site default will be used for anonymous visitors and for users without their own settings.</p><p>Drupal interface translations may be added or extended by several courses: by <a href=\"%import\">importing</a> an existing translation, by <a href=\"%search\">translating everything</a> from scratch, or by a combination of these approaches.</p>", array("%search" => url("admin/locale/string/search"), "%import" => url("admin/locale/language/import"), "%add-language" => url("admin/locale/language/add")));
    case 'admin/locale/language/add':
      return t("<p>You need to add all languages in which you would like to display the site interface. If you can't find the desired language in the quick-add dropdown, then you will need to provide the proper language code yourself. The language code may be used to negotiate with browsers and to present flags, etc., so it is important to pick a code that is standardised for the desired language. You can also add a language by <a href=\"%import\">importing a translation</a>.</p>", array("%import" => url("admin/locale/language/import")));
    case 'admin/locale/language/import':
      return t("<p>This page allows you to import a translation provided in the gettext Portable Object (.po) format.  The easiest way to get your site translated is to obtain an existing Drupal translation and to import it.  You can find existing translations on the <a href=\"%url\">Drupal translation page</a>. Note that importing a translation file might take a while.</p>", array('%url' => 'http://drupal.org/project/translations'));
    case 'admin/locale/language/export':
      return t("<p>This page allows you to export Drupal strings. The first option is to export a translation so it can be shared.  The second option generates a translation template, which contains all Drupal strings, but without their translations. You can use this template to start a new translation using various software packages designed for this task.</p>");
    case 'admin/locale/string/search':
      return t("<p>It is often convenient to get the strings from your setup on the <a href=\"%export\">export page</a>, and use a desktop Gettext translation editor to edit the translations.  On this page you can search in the translated and untranslated strings, and the default English texts provided by Drupal.</p>", array("%export" => url("admin/locale/language/export")));

    case 'admin/help#locale':
      return t("
      <p>Most programs are written and documented in English, and primarily use English to interact with users. This is also true for a great deal of web sites. However, many users are less comfortable with English than with their native language, and would prefer to use their mother tongue where possible.  Therefore Drupal provides a framework to setup a multi-lingual web site, or to overwrite the default English texts.</p>
      <h3>How interface translation works</h3>
      <p>Whenever Drupal encounters an interface string which needs to be displayed, it tries to translate it into the currently selected language. If a translation is not available, then the string is remembered, so you can look up untranslated strings easily.</p>
      <p>Drupal provides two options to translate these strings.  The first option is an integrated web interface, where you can search for untranslated strings, and provide translations for these via simple web forms.  An easier and faster method is to import translations already done for your language. This is achieved by the use of GNU gettext Portable Object files. These are editable with desktop editing tools designed for this purpose.  Drupal's import feature allows you to add strings from such files into the site database. The export functionality enables you to share your translations with others, generating Portable Object files from your site strings.");
      break;
  }
}

/**
 * Implementation of hook_menu().
 */
function locale_menu($may_cache) {
  $items = array();

  if ($may_cache) {
    $access = user_access('administer locales');

    // Main admin menu item
    $items[] = array('path' => 'admin/locale', 'title' => t('localization'),
      'callback' => 'locale_admin_manage', 'access' => $access);

    // Top level tabs
    $items[] = array('path' => 'admin/locale/language', 'title' => t('manage languages'),
      'access' => $access, 'weight' => -10, 'type' => MENU_DEFAULT_LOCAL_TASK);
    $items[] = array('path' => 'admin/locale/string/search', 'title' => t('manage strings'),
      'callback' => 'locale_admin_string', 'access' => $access, 'weight' => 10,
      'type' => MENU_LOCAL_TASK);

    // Manage languages subtabs
    $items[] = array('path' => 'admin/locale/language/overview', 'title' => t('list'),
      'callback' => 'locale_admin_manage', 'access' => $access, "weight" => 0,
      'type' => MENU_DEFAULT_LOCAL_TASK);
    $items[] = array('path' => 'admin/locale/language/add', 'title' => t('add language'),
      'callback' => 'locale_admin_manage_add', 'access' => $access, "weight" => 5,
      'type' => MENU_LOCAL_TASK);
    $items[] = array('path' => 'admin/locale/language/import', 'title' => t('import'),
      'callback' => 'locale_admin_import', 'access' => $access, 'weight' => 10,
      'type' => MENU_LOCAL_TASK);
    $items[] = array('path' => 'admin/locale/language/export', 'title' => t('export'),
      'callback' => 'locale_admin_export', 'access' => $access, 'weight' => 20,
      'type' => MENU_LOCAL_TASK);

    // Language related callbacks
    $items[] = array('path' => 'admin/locale/language/delete', 'title' => t('confirm'),
      'callback' => 'locale_admin_manage_delete_screen', 'access' => $access,
      'type' => MENU_CALLBACK);

    // String related callbacks
    $items[] = array('path' => 'admin/locale/string/edit', 'title' => t('edit'),
      'callback' => 'locale_admin_string', 'access' => $access, 'type' => MENU_CALLBACK);
    $items[] = array('path' => 'admin/locale/string/delete', 'title' => t('delete'),
      'callback' => 'locale_admin_string', 'access' => $access, 'type' => MENU_CALLBACK);
  }

  return $items;
}

/**
 * Implementation of hook_perm().
 */
function locale_perm() {
  return array('administer locales');
}

/**
 * Implementation of hook_user().
 */
function locale_user($type, $edit, &$user, $category = NULL) {
  $languages = locale_supported_languages();
  if ($type == 'form' && $category == 'account' && count($languages['name']) > 1) {
    if ($user->language == '') {
      $user->language = key($languages['name']);
    }
    $languages['name'] = array_map('check_plain', $languages['name']);
    return array(array('title' => t('Interface language settings'), 'data' => form_radios(t("Language"), 'language', $user->language, $languages['name'], t("Selecting a different locale will change the interface language of the site."))));
  }
}

// ---------------------------------------------------------------------------------
// Locale core functionality (needed on all page loads)

/**
 * Provides interface translation services
 *
 * This function is called from t() to translate a string if needed.
 */
function locale($string) {
  global $locale;
  static $locale_t;

  // Store database cached translations in a static var
  if (!isset($locale_t)) {
    $cache = cache_get("locale:$locale");

    if ($cache == 0) {
      locale_refresh_cache();
      $cache = cache_get("locale:$locale");
    }
    $locale_t = unserialize($cache->data);
  }

  // We have the translation cached (if it is TRUE, then there is no
  // translation, so there is no point in checking the database)
  if (isset($locale_t[$string])) {
    $string = ($locale_t[$string] === TRUE ? $string : $locale_t[$string]);
  }

  // We don't have this translation cached, so get it from the DB
  else {
    $result = db_query("SELECT s.lid, t.translation FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid WHERE s.source = '%s' AND t.locale = '%s'", $string, $locale);
    // Translation found
    if ($trans = db_fetch_object($result)) {
      if (!empty($trans->translation)) {
        $locale_t[$string] = $trans->translation;
        $string = $trans->translation;
      }
    }

    // Either we have no such source string, or no translation
    else {
      $result = db_query("SELECT lid, source FROM {locales_source} WHERE source = '%s'", $string);
      // We have no such translation
      if ($obj = db_fetch_object($result)) {
        if ($locale) {
          db_query("INSERT INTO {locales_target} (lid, locale) VALUES (%d, '%s')", $obj->lid, $locale);
        }
      }
      // We have no such source string
      else {
        db_query("INSERT INTO {locales_source} (location, source) VALUES ('%s', '%s')", request_uri(), $string);
        if ($locale) {
          $lid = db_fetch_object(db_query("SELECT lid FROM {locales_source} WHERE source = '%s'", $string));
          db_query("INSERT INTO {locales_target} (lid, locale) VALUES (%d, '%s')", $lid->lid, $locale);
        }
      }
      // Clear locale cache in DB
      cache_clear_all("locale:$locale");
    }
  }

  return $string;
}

/**
 * Refreshes database stored cache of translations
 *
 * We only store short strings to improve performance and consume less memory.
 */
function locale_refresh_cache() {
  $languages = locale_supported_languages();

  foreach (array_keys($languages['name']) as $locale) {
    $result = db_query("SELECT s.source, t.translation, t.locale FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid WHERE t.locale = '%s' AND LENGTH(s.source) < 75", $locale);
    while ($data = db_fetch_object($result)) {
      $t[$data->source] = (empty($data->translation) ? TRUE : $data->translation);
    }
    cache_set("locale:$locale", serialize($t));
  }
}

/**
 * Returns list of languages supported on this site
 *
 * @param $reset Refresh cached language list
 * @param $getall Return all languages (even disabled ones)
 */
function locale_supported_languages($reset = FALSE, $getall = FALSE) {
  static $enabled = NULL;
  static $all = NULL;

  if ($reset) {
    unset($enabled); unset($all);
  }

  if (is_null($enabled)) {
    $enabled = $all = array();
    $all['name'] = $all['formula'] = $enabled['name'] = $enabled['formula'] = array();
    $result = db_query('SELECT locale, name, formula, enabled FROM {locales_meta} ORDER BY isdefault DESC, enabled DESC, name ASC');
    while ($row = db_fetch_object($result)) {
      $all['name'][$row->locale] = $row->name;
      $all['formula'][$row->locale] = $row->formula;
      if ($row->enabled) {
        $enabled['name'][$row->locale] = $row->name;
        $enabled['formula'][$row->locale] = $row->formula;
      }
    }
  }
  return $getall ? $all : $enabled;
}

/**
 * Returns plural form index for a specific number
 *
 * The index is computed from the formula of this language
 */
function locale_get_plural($count) {
  global $locale;
  static $locale_formula, $plurals = array();

  if (!isset($plurals[$count])) {
    if (!isset($locale_formula)) {
      $languages = locale_supported_languages();
      $locale_formula = $languages['formula'][$locale];
    }
    if ($locale_formula) {
      $n = $count;
      $plurals[$count] = @eval("return intval($locale_formula);");
      return $plurals[$count];
    }
    else {
      $plurals[$count] = -1;
      return -1;
    }
  }
  return $plurals[$count];
}

// ---------------------------------------------------------------------------------
// Language management functionality (administration only)

/**
 * Page handler for the language management screen
 */
function locale_admin_manage() {
  include_once './includes/locale.inc';
  $edit = &$_POST['edit'];

  if ($_POST['op'] == t('Save configuration')) {
    // Save changes to existing languages
    $languages = locale_supported_languages(FALSE, TRUE);
    foreach($languages['name'] as $key => $value) {
      if ($edit['sitedefault'] == $key) {
        $edit['enabled'][$key] = 1; // autoenable the default language
      }
      if ($key == 'en') {
        // Disallow name change for English locale
        db_query("UPDATE {locales_meta} SET isdefault = %d, enabled = %d WHERE locale = 'en'", ($edit['sitedefault'] == $key), $edit['enabled'][$key]);
      }
      else {
        db_query("UPDATE {locales_meta} SET name = '%s', isdefault = %d, enabled = %d WHERE locale = '%s'", $edit['name'][$key], ($edit['sitedefault'] == $key), $edit['enabled'][$key], $key);
      }
    }

    // Changing the locale settings impacts the interface:
    cache_clear_all();

    drupal_goto('admin/locale/language/overview');
  }

  return _locale_admin_manage_screen();
}

/**
 * User interface for the language deletion confirmation screen
 */
function locale_admin_manage_delete_screen() {
  include_once './includes/locale.inc';
  $langcode = arg(4);
  $edit = $_POST['edit'];

  // Check confirmation and if so, delete language
  if ($edit['confirm']) {
    $languages = locale_supported_languages(FALSE, TRUE);
    if (isset($languages['name'][$edit['langcode']])) {
      db_query("DELETE FROM {locales_meta} WHERE locale = '%s'", $edit['langcode']);
      db_query("DELETE FROM {locales_target} WHERE locale = '%s'", $edit['langcode']);
      $message = t('The language %locale has been removed.', array('%locale' => theme('placeholder', t($languages['name'][$edit['langcode']]))));
      drupal_set_message($message);
      watchdog('locale', $message);
    }

    // Changing the locale settings impacts the interface:
    cache_clear_all();
    drupal_goto('admin/locale/language/overview');
  }

  // Do not allow deletion of English locale
  if ($langcode == 'en') {
    drupal_goto('admin/locale/language/overview');
    return;
  }

  // For other locales, warn user that data loss is ahead
  $languages = locale_supported_languages(FALSE, TRUE);

  $extra = form_hidden('langcode', $langcode);
  $output = theme('confirm',
                  t('Are you sure you want to delete the language %name?', array('%name' => theme('placeholder', t($languages['name'][$langcode])))),
                  'admin/locale/language/overview',
                  t('Deleting a language will remove all data associated with it. This action cannot be undone.'),
                  t('Delete'),
                  t('Cancel'),
                  $extra);
  return $output;
}

/**
 * Page handler for the language addition screen
 */
function locale_admin_manage_add() {
  include_once './includes/locale.inc';
  $edit = &$_POST['edit'];
  $isocodes = _locale_get_iso639_list();

  switch ($_POST['op']) {
    // Try to add new language
    case t('Add language'):
      // Check for duplicates
      if (db_num_rows(db_query("SELECT locale FROM {locales_meta} WHERE locale = '%s'", $edit['langcode'])) == 0) {

        // Set language name from the available list if needed
        if ($edit['langcode'] && !$edit['langname'] && isset($isocodes[$edit['langcode']])) {
          _locale_add_language($edit['langcode'], $isocodes[$edit['langcode']][0]);
          drupal_goto('admin/locale');
        }

        // Add language, if we have the details
        elseif ($edit['langcode'] && $edit['langname']) {
          _locale_add_language($edit['langcode'], $edit['langname']);
          drupal_goto('admin/locale');
        }

        // Seems like we have not received some data
        drupal_set_message(t('The language code and the English name of the new language must be specified.'), 'error');
      }
      else {
        drupal_set_message(t('The language %language (%code) already exists.', array('%language' => theme('placeholder', check_plain($edit['langname'])), '%code' => theme('placeholder', $edit['langcode']))), 'error');
      }
      break;
  }
  return _locale_admin_manage_add_screen();
}

// ---------------------------------------------------------------------------------
// Gettext Portable Object import functionality (administration only)

/**
 * Page handler for the translation import screen
 */
function locale_admin_import() {
  include_once './includes/locale.inc';
  $edit = &$_POST['edit'];
  switch ($_POST['op']) {
    case t('Import'):

      // Add language, if not yet supported
      $languages = locale_supported_languages(TRUE, TRUE);
      if (!isset($languages['name'][$edit['langcode']])) {
        $isocodes = _locale_get_iso639_list();
        _locale_add_language($edit['langcode'], $isocodes[$edit['langcode']][0], FALSE);
      }

      // Now import strings into the language
      $file = file_check_upload('file');
      if ($ret = _locale_import_po($file, $edit['langcode'], $edit['mode']) == FALSE) {
        $message = t('The translation import of %filename failed.', array('%filename' => theme('placeholder', $file->filename)));
        drupal_set_message($message, 'error');
        watchdog('locale', $message, WATCHDOG_ERROR);
      }

      drupal_goto('admin/locale');
      break;
  }
  return _locale_admin_import_screen();
}


// ---------------------------------------------------------------------------------
// Gettext Portable Object export functionality (administration only)

/**
 * Page handler for the translation export screen
 */
function locale_admin_export() {
  include_once './includes/locale.inc';
  switch ($_POST['op']) {
    case t('Export'):
      _locale_export_po($_POST['edit']['langcode']);
      break;
  }
  return _locale_admin_export_screen();
}


// ---------------------------------------------------------------------------------
// String search and editing functionality (administration only)

/**
 * Page handler for the string search and administration screen
 */
function locale_admin_string() {
  include_once './includes/locale.inc';
  $op = ($_POST['op'] ? $_POST['op'] : arg(3));
  $edit =& $_POST['edit'];

  switch ($op) {
    case 'delete':
      $output .= _locale_string_delete(db_escape_string(arg(4)));
      $output .= _locale_string_seek();
      break;
    case 'edit':
      $output .= _locale_string_edit(db_escape_string(arg(4)));
      $output .= _locale_string_seek();
      break;
    case t('Search'):
    case 'search':
      $output = _locale_string_seek();
      $output .= _locale_string_seek_form();
      break;
    case t('Save translations'):
      $output .= _locale_string_save(db_escape_string(arg(4)));
      drupal_goto('admin/locale/string/search');
      break;
    default:
  }
  return $output;
}