mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
- one more var to translation (Custom)
This commit is contained in:
parent
e28719bd95
commit
708cda0bf5
3 changed files with 5 additions and 3 deletions
|
|
@ -123,6 +123,7 @@ class DefaultLang
|
|||
'set_sessions_php' => "PHP",
|
||||
'set_sessions_files' => "Files",
|
||||
'set_firstdayofweek' => "First day of week",
|
||||
'set_custom' => "Custom",
|
||||
'set_date' => "Date format",
|
||||
'set_date2' => "Short Date format",
|
||||
'set_shortdate' => "Short Date (current year)",
|
||||
|
|
|
|||
|
|
@ -125,6 +125,7 @@ class Lang extends DefaultLang
|
|||
'set_sessions_php' => "PHP",
|
||||
'set_sessions_files' => "Files",
|
||||
'set_firstdayofweek' => "First day of week",
|
||||
'set_custom' => "Custom",
|
||||
'set_date' => "Date format",
|
||||
'set_date2' => "Short Date format",
|
||||
'set_shortdate' => "Short Date (current year)",
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ function timezoneIdentifiers()
|
|||
<input name="dateformat" value="<?php echo htmlspecialchars(_c('dateformat'));?>" />
|
||||
<select onchange="if(this.value!=0) this.form.dateformat.value=this.value;">
|
||||
<?php echo selectOptions(array('F j, Y'=>formatTime('F j, Y'), 'M d, Y'=>formatTime('M d, Y'), 'j M Y'=>formatTime('j M Y'), 'd F Y'=>formatTime('d F Y'),
|
||||
'n/j/Y'=>formatTime('n/j/Y'), 'd.m.Y'=>formatTime('d.m.Y'), 'j. F Y'=>formatTime('j. F Y'), 0=>'Custom'), _c('dateformat'), 0); ?>
|
||||
'n/j/Y'=>formatTime('n/j/Y'), 'd.m.Y'=>formatTime('d.m.Y'), 'j. F Y'=>formatTime('j. F Y'), 0=>__('set_custom')), _c('dateformat'), 0); ?>
|
||||
</select>
|
||||
</td></tr>
|
||||
|
||||
|
|
@ -214,7 +214,7 @@ function timezoneIdentifiers()
|
|||
<?php echo selectOptions(array('Y-m-d'=>'yyyy-mm-dd ('.date('Y-m-d').')',
|
||||
'n/j/y'=>'m/d/yy ('.date('n/j/y').')',
|
||||
'd.m.y'=>'dd.mm.yy ('.date('d.m.y').')',
|
||||
'd/m/y'=>'dd/mm/yy ('.date('d/m/y').')', 0=>'Custom'), _c('dateformat2')); ?>
|
||||
'd/m/y'=>'dd/mm/yy ('.date('d/m/y').')', 0=>__('set_custom')), _c('dateformat2')); ?>
|
||||
</select>
|
||||
</td></tr>
|
||||
|
||||
|
|
@ -223,7 +223,7 @@ function timezoneIdentifiers()
|
|||
<td>
|
||||
<input name="dateformatshort" value="<?php echo htmlspecialchars(_c('dateformatshort'));?>" />
|
||||
<select onchange="if(this.value!=0) this.form.dateformatshort.value=this.value;">
|
||||
<?php echo selectOptions(array('M d'=>formatTime('M d'), 'j M'=>formatTime('j M'), 'n/j'=>formatTime('n/j'), 'd.m'=>formatTime('d.m'), 0=>'Custom'), _c('dateformatshort'), 0); ?>
|
||||
<?php echo selectOptions(array('M d'=>formatTime('M d'), 'j M'=>formatTime('j M'), 'n/j'=>formatTime('n/j'), 'd.m'=>formatTime('d.m'), 0=>__('set_custom')), _c('dateformatshort'), 0); ?>
|
||||
</select>
|
||||
</td></tr>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue