Changeset 7238
- Timestamp:
- 11/08/08 13:07:01 (5 years ago)
- Files:
-
- modules/branches/2.5/core/page.general.php (modified) (1 diff)
- modules/branches/2.5/dashboard/i18n/dashboard.pot (modified) (1 diff)
- modules/branches/2.5/dashboard/i18n/sv_SE/LC_MESSAGES/dashboard.mo (modified) (previous)
- modules/branches/2.5/dashboard/i18n/sv_SE/LC_MESSAGES/dashboard.po (modified) (2 diffs)
- modules/branches/2.5/dashboard/page.index.php (modified) (1 diff)
- modules/branches/2.5/findmefollow/functions.inc.php (modified) (1 diff)
- modules/branches/2.5/findmefollow/i18n/findmefollow.pot (modified) (2 diffs)
- modules/branches/2.5/findmefollow/i18n/sv_SE/LC_MESSAGES/findmefollow.mo (modified) (previous)
- modules/branches/2.5/findmefollow/i18n/sv_SE/LC_MESSAGES/findmefollow.po (modified) (2 diffs)
- modules/branches/2.5/vmblast/functions.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.5/core/page.general.php
r6973 r7238 197 197 <option value="u"<?php if ($VM_DDTYPE == "u" || $VM_DDTYPE == "su") echo " SELECTED"; ?>><?php echo _("Unavailable"); ?></option> 198 198 <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> 200 200 </select> 201 201 </td></tr> modules/branches/2.5/dashboard/i18n/dashboard.pot
r6989 r7238 162 162 163 163 #: page.index.php:316 164 msgid "Asterisk is running: "164 msgid "Asterisk is running: %s" 165 165 msgstr "" 166 166 modules/branches/2.5/dashboard/i18n/sv_SE/LC_MESSAGES/dashboard.po
r6989 r7238 163 163 164 164 #: page.index.php:316 165 msgid "Asterisk is running: "166 msgstr "Asterisk körs: "165 msgid "Asterisk is running: %s" 166 msgstr "Asterisk körs: %s" 167 167 168 168 #: page.index.php:318 … … 297 297 msgid "FreePBX System Status" 298 298 msgstr "FreePBX systemstatus" 299 300 msgid "System Dashboard" 301 msgstr "Instrumentpanelen" modules/branches/2.5/dashboard/page.index.php
r7225 r7238 314 314 // asterisk 315 315 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)); 317 317 } else { 318 318 $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 436 436 $usage_arr[] = array( 437 437 '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']), 439 439 ); 440 440 } modules/branches/2.5/findmefollow/i18n/findmefollow.pot
r6944 r7238 9 9 "Project-Id-Version: PACKAGE VERSION\n" 10 10 "Report-Msgid-Bugs-To: \n" 11 "POT-Creation-Date: 2008-1 0-05 23:10+0200\n"11 "POT-Creation-Date: 2008-11-08 18:34+0100\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 30 30 msgstr "" 31 31 32 #: functions.inc.php:438 33 #, php-format 34 msgid "Follow-Me User: %s" 35 msgstr "" 36 32 37 #: install.php:4 33 38 msgid "Findme Follow Toggle" modules/branches/2.5/findmefollow/i18n/sv_SE/LC_MESSAGES/findmefollow.po
r6944 r7238 8 8 "Project-Id-Version: FreePBX findmefollow\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2008-1 0-05 23:10+0200\n"11 "PO-Revision-Date: 2008-1 0-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" 12 12 "Last-Translator: Mikael Carlsson <mickecamino@gmail.com>\n" 13 13 "Language-Team: \n" … … 31 31 msgid "Follow-Me: %s (%s)" 32 32 msgstr "Följ-mig: %s (%s)" 33 34 #: functions.inc.php:438 35 #, php-format 36 msgid "Follow-Me User: %s" 37 msgstr "Följ-mig anvÀndare %s" 33 38 34 39 #: install.php:4 modules/branches/2.5/vmblast/functions.inc.php
r6955 r7238 257 257 // Add the 'process' function - this gets called when the page is loaded, to hook into 258 258 // 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"))); 261 261 $currentcomponent->setoptlistopts('vmblast_group', 'sort', false); 262 262
