Changeset 7238

Show
Ignore:
Timestamp:
11/08/08 13:07:01 (5 years ago)
Author:
mickecarlsson
Message:

Addresses #3380, some text strings did not translate

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.5/core/page.general.php

    r6973 r7238  
    197197  <option value="u"<?php if ($VM_DDTYPE == "u" || $VM_DDTYPE == "su") echo " SELECTED"; ?>><?php echo _("Unavailable"); ?></option> 
    198198  <option value="b"<?php if ($VM_DDTYPE == "b" || $VM_DDTYPE == "sb") echo " SELECTED"; ?>><?php echo _("Busy"); ?></option> 
    199   <option value="s"<?php if ($VM_DDTYPE == "s") echo " SELECTED"; ?>><?php echo ("No Message"); ?></option> 
     199  <option value="s"<?php if ($VM_DDTYPE == "s") echo " SELECTED"; ?>><?php echo _("No Message"); ?></option> 
    200200  </select> 
    201201  </td></tr> 
  • modules/branches/2.5/dashboard/i18n/dashboard.pot

    r6989 r7238  
    162162 
    163163#: page.index.php:316 
    164 msgid "Asterisk is running:
     164msgid "Asterisk is running: %s
    165165msgstr "" 
    166166 
  • modules/branches/2.5/dashboard/i18n/sv_SE/LC_MESSAGES/dashboard.po

    r6989 r7238  
    163163 
    164164#: page.index.php:316 
    165 msgid "Asterisk is running:
    166 msgstr "Asterisk körs:
     165msgid "Asterisk is running: %s
     166msgstr "Asterisk körs: %s
    167167 
    168168#: page.index.php:318 
     
    297297msgid "FreePBX System Status" 
    298298msgstr "FreePBX systemstatus" 
     299 
     300msgid "System Dashboard" 
     301msgstr "Instrumentpanelen" 
  • modules/branches/2.5/dashboard/page.index.php

    r7225 r7238  
    314314  // asterisk 
    315315  if ($astver = $astinfo->check_asterisk()) { 
    316     $out .= draw_status_box(_("Asterisk"), "ok", _('Asterisk is running: '.$astver)); 
     316    $out .= draw_status_box(_("Asterisk"), "ok", sprintf(_('Asterisk is running: %s'),$astver)); 
    317317  } else { 
    318318    $out .= draw_status_box(_("Asterisk"), "error", _('Asterisk is not running, this is a critical service!')); 
  • modules/branches/2.5/findmefollow/functions.inc.php

    r6972 r7238  
    436436      $usage_arr[] = array( 
    437437        'url_query' => 'config.php?display=findmefollow&extdisplay=GRP-'.urlencode($result['grpnum']), 
    438         'description' => "Follow-Me User: ".$result['grpnum']
     438        'description' => sprintf(_("Follow-Me User: %s"),$result['grpnum'])
    439439      ); 
    440440    } 
  • modules/branches/2.5/findmefollow/i18n/findmefollow.pot

    r6944 r7238  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2008-10-05 23:10+0200\n" 
     11"POT-Creation-Date: 2008-11-08 18:34+0100\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    3030msgstr "" 
    3131 
     32#: functions.inc.php:438 
     33#, php-format 
     34msgid "Follow-Me User: %s" 
     35msgstr "" 
     36 
    3237#: install.php:4 
    3338msgid "Findme Follow Toggle" 
  • modules/branches/2.5/findmefollow/i18n/sv_SE/LC_MESSAGES/findmefollow.po

    r6944 r7238  
    88"Project-Id-Version: FreePBX findmefollow\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2008-10-05 23:10+0200\n" 
    11 "PO-Revision-Date: 2008-10-11 17:11+0100\n" 
     10"POT-Creation-Date: 2008-11-08 18:34+0100\n" 
     11"PO-Revision-Date: 2008-11-08 18:39+0100\n" 
    1212"Last-Translator: Mikael Carlsson <mickecamino@gmail.com>\n" 
    1313"Language-Team: \n" 
     
    3131msgid "Follow-Me: %s (%s)" 
    3232msgstr "Följ-mig: %s (%s)" 
     33 
     34#: functions.inc.php:438 
     35#, php-format 
     36msgid "Follow-Me User: %s" 
     37msgstr "Följ-mig anvÀndare %s" 
    3338 
    3439#: install.php:4 
  • modules/branches/2.5/vmblast/functions.inc.php

    r6955 r7238  
    257257  // Add the 'process' function - this gets called when the page is loaded, to hook into  
    258258  // displaying stuff on the page. 
    259   $currentcomponent->addoptlistitem('vmblast_group', '0', _("Exclude")); 
    260   $currentcomponent->addoptlistitem('vmblast_group', '1', _("Include")); 
     259  $currentcomponent->addoptlistitem('vmblast_group', '0', dgettext('vmblast',_("Exclude"))); 
     260  $currentcomponent->addoptlistitem('vmblast_group', '1', dgettext('vmblast',_("Include"))); 
    261261  $currentcomponent->setoptlistopts('vmblast_group', 'sort', false); 
    262262