Best practice forum (Archived)

该论坛讨论已删除

 
该论坛帖子已被删除
2016年08月5日 Friday 07:01
该论坛帖子的内容已被删除,无法再访问。
me
Re: Display of time in non-english language packs
AngusGeorge 发表于 2016年08月7日 Sunday 19:14
小组 Totara

Hi Christoph,

Its set by the language pack - you'd have to identify the strings and edit.

regards,

George.

该论坛帖子已被删除
2016年08月7日 Sunday 23:52
该论坛帖子的内容已被删除,无法再访问。
me
Re: Display of time in non-english language packs
AngusGeorge 发表于 2016年08月8日 Monday 15:07
小组 Totara

Hi Christoph,

If you have a look in langconfig.php (for example):

$string['alphabet'] = 'A,Ä,B,C,D,E,F,G,H,I,J,K,L,M,N,O,Ö,P,Q,R,S,T,U,Ü,V,W,X,Y,Z';

$string['backupnameformat'] = '%Y%m%d-%H%M';

$string['datepickerplaceholder'] = 'tt/mm/jj';

$string['decsep'] = ',';

$string['firstdayofweek'] = '1';

$string['iso6391'] = 'de';

$string['iso6392'] = 'ger';

$string['labelsep'] = ': ';

$string['listsep'] = ';';

$string['locale'] = 'de_DE.UTF-8';

$string['localewin'] = 'German_Germany.1252';

$string['localewincharset'] = 'WINDOWS-1252';

$string['oldcharset'] = 'ISO-8859-1';

$string['parentlanguage'] = '';

$string['strfdateattime'] = '%d %b %Y um %H:%M';

$string['strfdateshortmonth'] = '%d %b %Y';

$string['strftimedate'] = '%d. %B %Y';

$string['strftimedatefullshort'] = '%d.%m.%y';

$string['strftimedateseconds'] = '%d %b %Y um %H:%M:%S';

$string['strftimedateshort'] = '%d. %B';

$string['strftimedatetime'] = '%d. %B %Y, %H:%M';

$string['strftimedatetimeshort'] = '%d.%m.%Y %H:%M';

$string['strftimedaydate'] = '%A, %d. %B %Y';

$string['strftimedaydatetime'] = '%A, %d. %B %Y, %H:%M';

$string['strftimedayshort'] = '%A, %d. %B';

$string['strftimedaytime'] = '%a, %H:%M';

$string['strftimemonthyear'] = '%B %Y';

$string['strftimerecent'] = '%d. %b, %H:%M';

$string['strftimerecentfull'] = '%a, %d. %b %Y, %H:%M';

$string['strftimeshort'] = '%H:%M';

$string['strftimetime'] = '%H:%M';

$string['thischarset'] = 'UTF-8';

$string['thisdirection'] = 'ltr';

$string['thisdirectionvertical'] = 'btt';

$string['thislanguage'] = 'Deutsch';

$string['thislanguageint'] = 'German';

$string['thousandssep'] = '.';


Any changes here will affect all the users using the language pack.

cheers,

George.

该论坛帖子已被删除
2016年08月11日 Thursday 07:54
该论坛帖子的内容已被删除,无法再访问。
该论坛帖子已被删除
2016年08月22日 Monday 00:51
该论坛帖子的内容已被删除,无法再访问。
me
Re: Display of time in non-english language packs
AngusGeorge 发表于 2016年08月22日 Monday 15:43
小组 Totara

Good job!