creativewild
Only those who will risk going too far can possibly find out how far one can go. T.S. Eliot
Luis Gomes
38 anos
Chelmsford
Registrado desde
Última atividade
grupos
contribuintes doadores
contribuintes doadores
Atividade recente
translated everything! yeah! xD
19 set 2017
Please tell us the steps to use English only
20 dez 2016
Please tell us the steps to use English only
20 dez 2016
Here is something I agree but i dont agree with you at the same time:
First issue was, that the CMS should had been written from start up in only English and later if the core is stable, then in other languages tooand let me tell you why: Its their own cms, they can make it with any language they want, if french is the easy way to do it so be it.
There's is no rule that says when developing software it needs to be in English there's not even a guideline to it at all.
Every time a new release comes along i normally do a pull and merge it in my own fork.
Can we do something about it? Absolutely, both @FoxLey and @eResnova have been working hard on this cms and they were even more awesome when they made it opensource.
The translation system to be honest is not a mess, it just needs to be applied to all modules but as you can imagine having only two people constantly working to improve it and bring on new features while working on their normal day jobs is not an easy task,
Why not help them by setting up a translation project for the cms, the more people join in the more quality we can get out of the translations.
I can start a GitHub repo with what i already have.
Heres is an example of a website that is using neofrag and is fully translated into english:
http://sevensinsguild.com/index.html
Please tell us the steps to use English only
19 dez 2016
I assume the issue you are experiencing is mostly related where some areas are in English and other bits are still in French correct?
Aide pour la traduction en portugais
15 nov 2016
User Online status not working & keeps being auto logged out after short while
3 out 2016
User Online status not working & keeps being auto logged out after short while
22 set 2016
see if you have it setup, you can create a php file in the root of your host and add
<?php phpinfo(); ?>
and see if your timezone is set to your location/server location - basically it needs to have a valid time zone, otherwise can mess up the cookies which will result in a session expired even if you just logged in
User Online status not working & keeps being auto logged out after short while
21 set 2016
Message prive inaccessible.
21 set 2016
go to neofrag / modules / user / controllers / index.php
on line 637 replace:
if ($this->form->is_valid($post))
{
$this->model('messages')->reply($message_id, $post['message']);
redirect('user/messages/'.$message_id.'/'.url_title($title).'.html');
}
with:
if ($this->form->is_valid($post))
{
if (preg_match('/^[a-z0-9\040\.\-]+$/i',$post['title']) && mb_strlen($post['title']) > 3 )
{
$title = $post['title'];
} else {
$title = "No title";
}
if ($message_id = $this->model('messages')->insert_message($post['recipients'], $title, $post['message']))
{
redirect('user/messages/'.$message_id.'/'.url_title($title).'.html');
}
}
NOTE: This may not be the best way to do it but it works perfectly for me.
Language doesn't work properly on site.
15 ago 2016
to to neofrag /core / config.php and comment line 98 and uncomment line 99 it should look like this
//$this->update('default', 'fr');
$this->update('default', array_shift($nf_languages));