Index: i18nblocks/i18nblocks.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nblocks/i18nblocks.module,v retrieving revision 1.7.2.6 diff -u -r1.7.2.6 i18nblocks.module --- i18nblocks/i18nblocks.module 25 Sep 2008 16:09:28 -0000 1.7.2.6 +++ i18nblocks/i18nblocks.module 25 Sep 2008 18:23:44 -0000 @@ -39,7 +39,7 @@ $output .= '
  • '.t('Blocks with a language will be displayed only in pages with that language.').'
  • '; $output .= '
  • '.t('Translatable blocks can be translated using the localization interface.').'
  • '; $output .= ''; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } } Index: i18nblocks/i18nblocks.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nblocks/i18nblocks.install,v retrieving revision 1.5.2.2 diff -u -r1.5.2.2 i18nblocks.install --- i18nblocks/i18nblocks.install 25 Sep 2008 16:09:28 -0000 1.5.2.2 +++ i18nblocks/i18nblocks.install 25 Sep 2008 18:23:44 -0000 @@ -52,7 +52,7 @@ 'language' => array( 'type' => 'varchar', 'length' => 12, - 'description' => t('Block language'), + 'description' => t('Block language.'), 'not null' => TRUE, 'default' => '', ), Index: i18ntaxonomy/i18ntaxonomy.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18ntaxonomy/i18ntaxonomy.module,v retrieving revision 1.5.2.14 diff -u -r1.5.2.14 i18ntaxonomy.module --- i18ntaxonomy/i18ntaxonomy.module 25 Sep 2008 16:09:27 -0000 1.5.2.14 +++ i18ntaxonomy/i18ntaxonomy.module 25 Sep 2008 18:23:45 -0000 @@ -38,12 +38,12 @@ $output .= '
  • '.t('Different terms for each language with translation relationships.').'
  • '; $output .= '
  • '.t('Terms can be common to all languages, but may be localized.').'
  • '; $output .= ''; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; $output .= '

    '. t('For more information, see the online handbook entry for Internationalization module.', array('@i18n' =>'http://drupal.org/node/133977')) .'

    '; return $output; case 'admin/settings/i18n': $output = ''; return $output; case 'admin/content/taxonomy/%': Index: i18ntaxonomy/i18ntaxonomy.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18ntaxonomy/i18ntaxonomy.install,v retrieving revision 1.3.2.3 diff -u -r1.3.2.3 i18ntaxonomy.install --- i18ntaxonomy/i18ntaxonomy.install 25 Sep 2008 16:09:27 -0000 1.3.2.3 +++ i18ntaxonomy/i18ntaxonomy.install 25 Sep 2008 18:23:45 -0000 @@ -48,7 +48,7 @@ } } variable_set('i18ntaxonomy_vocabulary', $options); - drupal_set_message(t('The multilingual vocabulary settings have been updated. Please review them in the taxonomy administration.', array('!taxonomy_admin' => url('admin/content/taxonomy')))); + drupal_set_message(t('The multilingual vocabulary settings have been updated. Please review them in the taxonomy administration.', array('@taxonomy_admin' => url('admin/content/taxonomy')))); // @ TODO Update strings in localization tables return $items; } Index: i18ncontent/i18ncontent.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18ncontent/i18ncontent.module,v retrieving revision 1.1.2.4 diff -u -r1.1.2.4 i18ncontent.module --- i18ncontent/i18ncontent.module 25 Sep 2008 16:09:28 -0000 1.1.2.4 +++ i18ncontent/i18ncontent.module 25 Sep 2008 18:23:44 -0000 @@ -25,7 +25,7 @@ $output .= '
  • '.t('Submission guidelines').'
  • '; $output .= '
  • '.t("Content type descriptions were previously localized so they won't be affected.").'
  • '; $output .= ''; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } if ($arg[0] == 'node' && $arg[1] == 'add' && $arg[2]) { Index: i18nprofile/i18nprofile.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nprofile/i18nprofile.module,v retrieving revision 1.6.2.3 diff -u -r1.6.2.3 i18nprofile.module --- i18nprofile/i18nprofile.module 25 Sep 2008 16:09:28 -0000 1.6.2.3 +++ i18nprofile/i18nprofile.module 25 Sep 2008 18:23:44 -0000 @@ -17,7 +17,7 @@ switch ($section) { case 'admin/modules#description' : $output = '

    ' . t('Supports translation for profile module field names and descriptions.') . '

    '; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } } Index: i18nsync/i18nsync.info =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nsync/i18nsync.info,v retrieving revision 1.2.2.4 diff -u -r1.2.2.4 i18nsync.info --- i18nsync/i18nsync.info 25 Sep 2008 16:09:27 -0000 1.2.2.4 +++ i18nsync/i18nsync.info 25 Sep 2008 18:23:45 -0000 @@ -1,5 +1,5 @@ ; $Id: i18nsync.info,v 1.2.2.4 2008/09/25 16:09:27 jareyero Exp $ -name = Sinchronize translations +name = Synchronize translations description = Synchronizes taxonomy and fields accross translations of the same content. dependencies[] = i18n package = Multilanguage Index: i18n.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18n.module,v retrieving revision 1.41.2.8 diff -u -r1.41.2.8 i18n.module --- i18n.module 25 Sep 2008 16:09:28 -0000 1.41.2.8 +++ i18n.module 25 Sep 2008 18:23:44 -0000 @@ -55,8 +55,8 @@ return $output; case 'admin/settings/i18n': $output = ''; return $output; } Index: i18n.info =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18n.info,v retrieving revision 1.5.2.3 diff -u -r1.5.2.3 i18n.info --- i18n.info 25 Sep 2008 16:09:28 -0000 1.5.2.3 +++ i18n.info 25 Sep 2008 18:23:43 -0000 @@ -1,6 +1,6 @@ ; $Id: i18n.info,v 1.5.2.3 2008/09/25 16:09:28 jareyero Exp $ name = Internationalization -description = Extends Drupal support for multilingual features +description = Extends Drupal support for multilingual features. dependencies[] = locale dependencies[] = translation package = Multilanguage Index: i18nstrings/i18nstrings.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nstrings/i18nstrings.module,v retrieving revision 1.8.2.8 diff -u -r1.8.2.8 i18nstrings.module --- i18nstrings/i18nstrings.module 25 Sep 2008 16:09:27 -0000 1.8.2.8 +++ i18nstrings/i18nstrings.module 25 Sep 2008 18:23:45 -0000 @@ -31,7 +31,7 @@ $output .= '
  • '.t('Use the refresh option when you are missing strings to translate for a given text group. All the strings will be re-created keeping existing translations.').'
  • '; $output .= '
  • '.t('Use the update option when some of the strings had been previously translated with the localization system, but the translations are not showing up for the configurable strings.').'
  • '; $output .= ''; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } } Index: i18nmenu/i18nmenu.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nmenu/i18nmenu.module,v retrieving revision 1.2.2.4 diff -u -r1.2.2.4 i18nmenu.module --- i18nmenu/i18nmenu.module 25 Sep 2008 16:09:28 -0000 1.2.2.4 +++ i18nmenu/i18nmenu.module 25 Sep 2008 18:23:44 -0000 @@ -63,7 +63,7 @@ $output .= '
  • '.t('Create menus as usual, with names in the default language, usually English. If the menu is already created, no changes are needed.') . '
  • '; $output .= '
  • '.t('Optionally, you can set up a language for a menu item so it is only displayed for that language.') . '
  • '; $output .= ''; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } } Index: i18nviews/i18nviews.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nviews/i18nviews.module,v retrieving revision 1.4.2.4 diff -u -r1.4.2.4 i18nviews.module --- i18nviews/i18nviews.module 25 Sep 2008 16:09:28 -0000 1.4.2.4 +++ i18nviews/i18nviews.module 25 Sep 2008 18:23:46 -0000 @@ -17,7 +17,7 @@ switch ($section) { case 'admin/modules#description' : $output = '

    ' . t('Supports translation for views strings: title, header, footer...') . '

    '; - $output .= '

    ' . t('To search and translate strings, use the !translate-interface pages.', array('!translate-interface' => l(t('Translate interface'), 'admin/build/translate'))) . '

    '; + $output .= '

    ' . t('To search and translate strings, use the translation interface pages.', array('@translate-interface' => url('admin/build/translate'))) . '

    '; return $output; } }