Romanian translation?
Posted by unics
All files from this thread
File Name | File Size | Posted by | Date | ||
---|---|---|---|---|---|
romanian.php | 40.7 KB | open | download | unics | 04/15/2007 | Read message |
Romanian translation? December 07, 2006 03:36PM |
Registered: 18 years ago Posts: 2 |
Re: Can I translate it into Romanian ? December 07, 2006 03:40PM |
Registered: 23 years ago Posts: 1,076 |
Re: Can I translate it into Romanian ? December 07, 2006 03:49PM |
Registered: 18 years ago Posts: 2 |
December 07, 2006 04:57PM |
Admin Registered: 20 years ago Posts: 8,532 |
We do not force you into displaying that banner on your page at all. If you don't like it, then remove it from your template. I promise that we won't sue.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
Maurice Makaay
Phorum Development Team



Re: Can I translate it into Romanian ? April 06, 2007 06:16AM |
Registered: 18 years ago Posts: 21 |
Re: Can I translate it into Romanian ? April 10, 2007 02:22PM |
Registered: 18 years ago Posts: 21 |
I have finished translation into Romanian! It does crash general settings in admin panel but I am still looking for the bug or some wrong modifications in the Lang file compare to Eng.
If someone is interested write me. I don't know if I put the file on my server and just give you a link it will work. If you have a repository for Lang files I can send it.
Edited 1 time(s). Last edit at 04/10/2007 03:32PM by imedic.
If someone is interested write me. I don't know if I put the file on my server and just give you a link it will work. If you have a repository for Lang files I can send it.
Edited 1 time(s). Last edit at 04/10/2007 03:32PM by imedic.
Re: Can I translate it into Romanian ? April 11, 2007 06:28AM |
Registered: 23 years ago Posts: 1,076 |
April 11, 2007 06:33AM |
Admin Registered: 20 years ago Posts: 8,532 |
He's saying that it actually crashes the general settings, so that looks like something different than a remark about translating the admin. Maybe there's something wrong in the language file, causing phorum_get_language_info() to crash.
imedic: if you upload the language file here, we can take a look at it for you to see what is causing the crash.
Maurice Makaay
Phorum Development Team
my blog
linkedin profile
secret sauce
imedic: if you upload the language file here, we can take a look at it for you to see what is causing the crash.
Maurice Makaay
Phorum Development Team



Re: Can I translate it into Romanian ? April 13, 2007 01:58AM |
Registered: 18 years ago Posts: 21 |
I have managed to put the lang file here. [www.injectia.ro]
is a rar. I will put later a tar.gz for Linux users.
You are wright mmakaay it does crash my forum general settings (it shows a blank screen)
If I delete the Romanian lang file everything goes to normal.
Also I have no idea what is this
'ScriptUsage' => '***'. "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
I mean I guess is about modules but what is for ...
I will come later on with translation for some major mods.
Help is appreciated !
PS I am very new to phorum
is a rar. I will put later a tar.gz for Linux users.
You are wright mmakaay it does crash my forum general settings (it shows a blank screen)
If I delete the Romanian lang file everything goes to normal.
Also I have no idea what is this
'ScriptUsage' => '***'. "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
I mean I guess is about modules but what is for ...
I will come later on with translation for some major mods.
Help is appreciated !
PS I am very new to phorum
Re: Can I translate it into Romanian ? April 13, 2007 03:57AM |
Registered: 23 years ago Posts: 1,076 |
don't include english string in the translation.
for example
'Add' => 'Adauga'. "Add",
should be
'Add' => 'Adauga',
Or has something changed since I translated these?
Also
'ScriptUsage' => '***'. "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
--module=<module_name> Run the 'external' hook in the specified module.
--scheduled Run the 'scheduled' hooks in all available modules.
[options] When running a specific module, these options
are passed to the module. Consult the module
documentation for information on what options
it has. When using --scheduled, these are ignored.
Read docs/creating_mods.txt in your distribution for information on how
to write Phorum modules and on how to use the external and scheduled hooks.\n\n",
should be
'ScriptUsage' => "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
--module=<module_name> Run the 'external' hook in the specified module.
--scheduled Run the 'scheduled' hooks in all available modules.
[options] When running a specific module, these options
are passed to the module. Consult the module
documentation for information on what options
it has. When using --scheduled, these are ignored.
Read docs/creating_mods.txt in your distribution for information on how
to write Phorum modules and on how to use the external and scheduled hooks.\n\n",
(with the text translated)
and where it goes wrong for real is
'UnapprovedMessages' => 'Mesaje neaprobate'. '. "Unapproved Messages",
you have one extra ' in there.
My suggestion is that you _replace_ the english texts, ie text inside " ". and don't add anything else, especially don't use your own "quoting"
so the line above should be
'UnapprovedMessages' => "Mesaje neaprobate",
---
-=[ Panu ]=-
for example
'Add' => 'Adauga'. "Add",
should be
'Add' => 'Adauga',
Or has something changed since I translated these?
Also
'ScriptUsage' => '***'. "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
--module=<module_name> Run the 'external' hook in the specified module.
--scheduled Run the 'scheduled' hooks in all available modules.
[options] When running a specific module, these options
are passed to the module. Consult the module
documentation for information on what options
it has. When using --scheduled, these are ignored.
Read docs/creating_mods.txt in your distribution for information on how
to write Phorum modules and on how to use the external and scheduled hooks.\n\n",
should be
'ScriptUsage' => "\nUsage: php script.php [--module=<module_name> | --scheduled] [options]
--module=<module_name> Run the 'external' hook in the specified module.
--scheduled Run the 'scheduled' hooks in all available modules.
[options] When running a specific module, these options
are passed to the module. Consult the module
documentation for information on what options
it has. When using --scheduled, these are ignored.
Read docs/creating_mods.txt in your distribution for information on how
to write Phorum modules and on how to use the external and scheduled hooks.\n\n",
(with the text translated)
and where it goes wrong for real is
'UnapprovedMessages' => 'Mesaje neaprobate'. '. "Unapproved Messages",
you have one extra ' in there.
My suggestion is that you _replace_ the english texts, ie text inside " ". and don't add anything else, especially don't use your own "quoting"
so the line above should be
'UnapprovedMessages' => "Mesaje neaprobate",
---
-=[ Panu ]=-
Sorry, only registered users may post in this forum.