Web CMS Designs: Forums
 

 
Post new topic Reply to topic
Message
Display posts from previous:       
PostPosted: Sun Jan 12, 2014 7:28 pm
Reply with quote Back to top
ruwo
Newbie
Newbie
Joined: Jan 10, 2014
Posts: 7
Location: Heerlen - Netherlands

View user's profile Send private message Visit poster's website
I will make a account on your site next week, and look around.
 
PostPosted: Mon Jan 13, 2014 7:52 am
Reply with quote Back to top
ruwo
Newbie
Newbie
Joined: Jan 10, 2014
Posts: 7
Location: Heerlen - Netherlands

View user's profile Send private message Visit poster's website
Found it
Change
Code:
// HighCharts Chart (begin)

            if($xAxis!='') $xAxis .= ', ';
            if ($k >= 13) {
               $ampm = 'pm';
               $dahour = $k-12;
            } else {
               $ampm = 'am';
               if ($k == 0){
                  $dahour = 12;
                  } else {
                  $dahour = $k;
               }

to
Code:
// HighCharts Chart (begin)

            if($xAxis!='') $xAxis .= ', ';
            if ($k >= 24) {
               $ampm = 'u';
               $dahour = $k-12;
            } else {
               $ampm = 'u';
               if ($k == 0){
                  $dahour = 00;
                  } else {
                  $dahour = $k;
               }

for the 24 time format
 
PostPosted: Mon Jan 13, 2014 7:58 am
Reply with quote Back to top
ruwo
Newbie
Newbie
Joined: Jan 10, 2014
Posts: 7
Location: Heerlen - Netherlands

View user's profile Send private message Visit poster's website
I also got the lang-dutch.php ready give a shout if you want it to put in the module

grtz Ruwo
 
PostPosted: Sat Jan 18, 2014 12:35 am
Reply with quote Back to top
spasticdonkey
Newbie
Newbie
Joined: Nov 18, 2010
Posts: 106
Location: Texas

View user's profile Send private message Visit poster's website
Sorry I have been busy here... Glad you got your issue sorted.

Would love lang-dutch Smile

Can you ZIP or 7z it, and attach it to this forum thread?
spasticdonkeywebcmsdesigns
 
PostPosted: Sat Jan 18, 2014 12:56 am
Reply with quote Back to top
ruwo
Newbie
Newbie
Joined: Jan 10, 2014
Posts: 7
Location: Heerlen - Netherlands

View user's profile Send private message Visit poster's website
Here it is i put it in a code block, if i attach it i get a error Could not connect to FTP Server: '208.*.*.*'. Please check your FTP-Settings.

lang-dutch.php
Code:
<?php


/**************************************************************************/
/* PHP-NUKE: Advanced Content Management System                           */
/* ============================================                           */
/*                                                                        */
/* This is the language module with all the system messages               */
/*                                                                        */
/* If you made a translation, please go to the site and send to me        */
/* the translated file. Please keep the original text order by modules,   */
/* and just one message per line, also double check your translation!     */
/*                                                                        */
/* You need to change the second quoted phrase, not the capital one!      */
/*                                                                        */
/* If you need to use double quotes (') remember to add a backslash (\),  */
/* so your entry will look like: This is \'double quoted\' text.          */
/* And, if you use HTML code, please double check it.                     */
/**************************************************************************/

define('_ACTIVEAUTHORS','Active Schrijvers:');
define('_ARTICLESSEC','Artikelen in Onderwerpen:');
define('_BACKTODETSTATS','Terug naar Uitgebreide Statistieken');
define('_BACKTOMAIN','Terug naar Hoofd');
define('_BOTS','Robots/Spiders');
define('_BROWSERS','Browsers');
define('_COMMENTSPOSTED','Reacties Geplaatst:');
define('_DAILYSTATS','Dagelijkse Statistieken voor');
define('_HITS','Hits');
define('_HOURLYSTATS','Statistieken per Uur voor');
define('_LINKSCAT','Catagorieen in Links:');
define('_LINKSINLINKS','Links in Web Links:');
define('_MISCSTATS','Diversen Statistieken');
define('_MONTHLYSTATS','Maandelijkse Statistieken voor');
define('_MOSTDAY','Drukste Dag');
define('_MOSTHOUR','Drukste Uur');
define('_MOSTMONTH','Drukste Maand');
define('_NEWSWAITING','Nieuws in de Wacht:');
define('_NUKEVERSION','PHP-Nuke Versie:');
define('_OPERATINGSYS','Besturings Systeem');
define('_OTHER','Andere / Onbekend');
define('_REGUSERS','Geregistreerde Gebruikers:');
define('_RETURNBASICSTATS','Terug naar Basis Statistieken');
define('_SACTIVETOPICS','Aktieve Onderwerpen:');
define('_SEARCHENGINES','Zoek Machines');
define('_SPAGESVIEWS','Bekeken Paginas');
define('_SSPECIALSECT','Speciale Delen:');
define('_STATS','Website Statistieken');
define('_STORIESPUBLISHED','Artikelen Geplaatst:');
define('_TODAYIS','Vandaag is het');
define('_UNKNOWN','Onbekend');
define('_VIEWDETAILED','Bekijk Gedetailleerde Statistieken');
define('_YEARLYSTATS','Jaarlijkse Statistieken');
define('_STATS_OPBROWSE','Browser en OS Statistieken');
define('_STATS_TRAFFIC','Verkeer Statistieken');
define('_STATS_BY_BROWSER','Verkeer op Browser');
define('_STATS_BY_OS','Verkeer op OS');
define('_STATS_BY_MONTH','Verkeer per Maand | Klik op de Maand voor meer Info | Selecteer gebied om te Zoomen');
define('_STATS_BY_DAY','Verkeer per Dag | Klik op de Dagen voor meer Info | Selecteer gebied om te Zoomen');
define('_STATS_BY_HOUR','Verkeer per Uur | Selecteer gebied om te Zoomen');
define('_STATS_NO_RESULT','Geen Resultaten om te laten zien');

?>
 
PostPosted: Sat Jan 18, 2014 10:37 am
Reply with quote Back to top
spasticdonkey
Newbie
Newbie
Joined: Nov 18, 2010
Posts: 106
Location: Texas

View user's profile Send private message Visit poster's website
thanks for the heads up and sorry about the attachments issues... think I have it resolved.

If you could make another attempt to attach the file that would be best/appreciated Smile
spasticdonkeywebcmsdesigns
 
PostPosted: Sat Jan 18, 2014 3:41 pm
Reply with quote Back to top
ruwo
Newbie
Newbie
Joined: Jan 10, 2014
Posts: 7
Location: Heerlen - Netherlands

View user's profile Send private message Visit poster's website
Here is the file
 
PostPosted: Fri Aug 15, 2014 3:10 pm
Reply with quote Back to top
Yerafzzz
Newbie
Newbie
Joined: Aug 15, 2014
Posts: 2

View user's profile Send private message
Your message made me feel funny and adorable.
I read this, I was very impressed.
It is a good message that I have been taught a lot.
 
Post new topic Reply to topic Web CMS Designs Forum Index RavenNuke Modules
Your AccountNew Members
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001-2008 phpBB Group
 
 
Exuberanza Scripts