|
@@ -63,12 +63,12 @@ format({{_,_,_} = Date,{_,_,_} = Time}, FormatString) ->
|
|
%%
|
|
%%
|
|
format({_,_,_} = Date, FormatString) ->
|
|
format({_,_,_} = Date, FormatString) ->
|
|
replace_tags(Date, {0,0,0}, FormatString);
|
|
replace_tags(Date, {0,0,0}, FormatString);
|
|
-format(DateTime, FormatString, TransFun) ->
|
|
|
|
- io:format("Translations are not yet supported", []),
|
|
|
|
- FormatString.
|
|
|
|
format(DateTime, FormatString) ->
|
|
format(DateTime, FormatString) ->
|
|
io:format("Unrecognised date paramater : ~p~n", [DateTime]),
|
|
io:format("Unrecognised date paramater : ~p~n", [DateTime]),
|
|
FormatString.
|
|
FormatString.
|
|
|
|
+format(DateTime, FormatString, TransFun) ->
|
|
|
|
+ io:format("Translations are not yet supported", []),
|
|
|
|
+ FormatString.
|
|
|
|
|
|
replace_tags(Date, Time, Input) ->
|
|
replace_tags(Date, Time, Input) ->
|
|
replace_tags(Date, Time, Input, [], noslash).
|
|
replace_tags(Date, Time, Input, [], noslash).
|