Hello!
After installation of CMSmadesimple, I have had German language as admin page language... Can I change it to english somehow and if yes.... how?
Thanks you in advance, Sentry
Question: Change Language of Admin page
-
westis
Re: Question: Change Language of Admin page
Hi Sentry,
If you automatically had German as the admin language you're probably hosting your site on a German server, right? You can change language in Meine Einstellungen -> User-Einstellungen.
If you automatically had German as the admin language you're probably hosting your site on a German server, right? You can change language in Meine Einstellungen -> User-Einstellungen.
-
Sentry
Re: Question: Change Language of Admin page
thank you very much... sometimes I really doubt about my intelligence...
-
Sentry
Re: Question: Change Language of Admin page
But another question I do have....
Can I create user-defined tags, which take a parameter and use it?
like
{char_logo 1442394875}
where char_logo is the tag and 144....75 the parameter I am giving to it?
And If I can make such thing... how can I get the paramater in the tag code?
Sentry
(Seems I need to register finally.. :P )
Can I create user-defined tags, which take a parameter and use it?
like
{char_logo 1442394875}
where char_logo is the tag and 144....75 the parameter I am giving to it?
And If I can make such thing... how can I get the paramater in the tag code?
Sentry
(Seems I need to register finally.. :P )
Re: Question: Change Language of Admin page
Parameters in user defined tags are key/value pairs. So, you would need to do:
Then to get at it in the user defined tag's code, just use the magic params variable that exists.
Code: Select all
{char_logo bignumber=14423994875}
Code: Select all
$somevar = $params['bignumber'];
-
SentryRaven
Re: Question: Change Language of Admin page
I am sorry if my questions are getting on your nerves, but I am trying to understand some principles of php....
If I want to do something like:
Do I
a) need to put Maspah V - Cal.... into ' ... ' ?
b) Can I readout every parameter by its keyword? like:
Sentry
Already found out..... thx
If I want to do something like:
Code: Select all
{sale id=16227 price=27.000.000 location=Maspah V - Caldari Navy Assembly Plant}a) need to put Maspah V - Cal.... into ' ... ' ?
b) Can I readout every parameter by its keyword? like:
Code: Select all
$itemID = $params['id'];
$itemPrice = $params['price'];
etc...
Already found out..... thx
Last edited by SentryRaven on Mon Dec 26, 2005 3:06 am, edited 1 time in total.
Re: Question: Change Language of Admin page
Well, just in case anyone else is wondering.
a. You should put as many parameters in '' or "" as you can. It's easier to read, if anything. And it also removes guesswork.
b. Yup
a. You should put as many parameters in '' or "" as you can. It's easier to read, if anything. And it also removes guesswork.
b. Yup

