Plugin Directory

Changeset 1398088


Ignore:
Timestamp:
04/18/2016 07:15:09 AM (10 years ago)
Author:
sedLex
Message:
  • NEW: Update of the core
Location:
links-synthesis/trunk
Files:
10 added
1 deleted
24 edited

Legend:

Unmodified
Added
Removed
  • links-synthesis/trunk/core.class.php

    r1057976 r1398088  
    100100            add_filter('get_the_excerpt', array( $this, 'the_excerpt_SL'),1000000);
    101101            add_filter('get_the_excerpt', array( $this, 'the_excerpt_ante_SL'),2);
     102           
     103            // To debug error
     104            add_action('activated_plugin',array($this,'save_error_on_activation'));
     105
    102106                       
    103107            $this->signature = '<p style="text-align:right;font-size:75%;">&copy; SedLex - <a href="http://www.sedlex.fr/">http://www.sedlex.fr/</a></p>' ;
    104108           
    105109            $this->frmk = new coreSLframework() ;
    106             $this->excerpt_called_SL = false ;         
     110            $this->excerpt_called_SL = false ; 
     111                   
     112        }
     113       
     114        /** ====================================================================================================================================================
     115        * In order to save error that can be generated on activation
     116        *
     117        * @access private
     118        * @return void
     119        */
     120
     121        function save_error_on_activation($plugin) {
     122            update_option('plugin_error_on_activation',  ob_get_contents());
    107123        }
    108124               
     
    158174            global $db_version;
    159175           
    160             if (strlen(trim($this->tableSQL))>0) {
    161                 if($wpdb->get_var("show tables like '".$table_name."'") != $table_name) {
    162                     $sql = "CREATE TABLE " . $table_name . " (".$this->tableSQL. ") DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;";
    163            
    164                     require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    165                     dbDelta($sql);
    166            
    167                     add_option("db_version", $db_version);
     176           
     177            // If there is only one sql table
     178            if (!is_array($this->tableSQL)) {
     179                if (strlen(trim($this->tableSQL))>0) {
     180                    if($wpdb->get_var("show tables like '".$table_name."'") != $table_name) {
     181                        $sql = "CREATE TABLE " . $table_name . " (".$this->tableSQL. ") DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;";
     182           
     183                        require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
     184                        dbDelta($sql);
     185                       
     186                        // On montre les erreurs en cas de besoin
     187                        if ($wpdb->last_error) {
     188                            ob_start();
     189                                var_dump($wpdb->last_query) ;
     190                            echo 'SQL_Error=' . ob_get_clean() ;
     191                            ob_start() ;
     192                                var_dump($wpdb->last_error) ;
     193                            echo ' ==> ' . ob_get_clean() ; 
     194                        }
     195           
     196                        add_option("db_version", $db_version);
    168197                   
    169                     // Gestion de l'erreur
    170                     ob_start() ;
    171                     $wpdb->print_error();
    172                     $result = ob_get_clean() ;
    173                     if (strlen($result)>0) {
    174                         echo $result ;
    175                         die() ;
     198                        // Gestion de l'erreur
     199                        ob_start() ;
     200                        $wpdb->print_error();
     201                        $result = ob_get_clean() ;
     202                        if (strlen($result)>0) {
     203                            echo $result ;
     204                            die() ;
     205                        }
     206                    }
     207                }
     208            } else {
     209                for ($i=0 ; $i<count($this->tableSQL) ; $i++) {
     210                    if (strlen(trim($this->tableSQL[$i]))>0) {
     211                        if($wpdb->get_var("show tables like '".$table_name[$i]."'") != $table_name[$i]) {
     212                            $sql = "CREATE TABLE " . $table_name[$i] . " (".$this->tableSQL[$i]. ") DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ;";
     213           
     214                            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
     215                            dbDelta($sql);
     216           
     217                            add_option("db_version", $db_version);
     218                   
     219                            // Gestion de l'erreur
     220                            ob_start() ;
     221                            $wpdb->print_error();
     222                            $result = ob_get_clean() ;
     223                            if (strlen($result)>0) {
     224                                echo $result ;
     225                                die() ;
     226                            }
     227                        }                   
    176228                    }
    177229                }
     
    498550        public function admin_menu() {   
    499551       
    500             global $menu,$SLtopLevel_alreadyInstalled,$SLpluginActivated ;
     552            global $menu,$SLtopLevel_alreadyInstalled,$SLpluginActivated, $Custom_SLtopLevel ;
    501553           
    502554            $tmp = explode('/',plugin_basename($this->path)) ;
     
    524576                } else {
    525577                    //add main menu
    526                     add_object_page('SL Plugins', 'SL Plugins', 'activate_plugins', $topLevel, array($this,'sedlex_information'));
     578                    add_menu_page('SL Plugins', 'SL Plugins', 'activate_plugins', $topLevel, array($this,'sedlex_information'));
    527579                    $page = add_submenu_page($topLevel, __('About...', 'SL_framework'), __('About...', 'SL_framework'), 'activate_plugins', $topLevel, array($this,'sedlex_information'));
     580                }
     581            }
     582           
     583            // If there is a specific main menu
     584            if ((isset($this->upper_level_menu))&&($this->upper_level_menu!="")) {
     585                if (!isset($Custom_SLtopLevel[$this->upper_level_menu])) {
     586                    $Custom_SLtopLevel[$this->upper_level_menu] = $plugin ;
     587                    add_menu_page($this->upper_level_menu, $this->upper_level_menu, 'activate_plugins', $plugin, array($this,'configuration_page'));
    528588                }
    529589            }
     
    546606            $SLpluginActivated[] = $plugin ;
    547607           
    548             if ($selection_pos=="plugins") {
    549                 $page = add_submenu_page('plugins.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
    550             } else if ($selection_pos=="tools") {
    551                 $page = add_submenu_page('tools.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));         
    552             } else if ($selection_pos=="settings") {
    553                 $page = add_submenu_page('options-general.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
    554             } else {
    555                 $page = add_submenu_page($topLevel, $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
     608            if ((isset($this->upper_level_menu))&&($this->upper_level_menu!="")) {
     609                $page = add_submenu_page($Custom_SLtopLevel[$this->upper_level_menu], $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));         
     610            } else {
     611                if ($selection_pos=="plugins") {
     612                    $page = add_submenu_page('plugins.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
     613                } else if ($selection_pos=="tools") {
     614                    $page = add_submenu_page('tools.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));         
     615                } else if ($selection_pos=="settings") {
     616                    $page = add_submenu_page('options-general.php', $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
     617                } else {
     618                    $page = add_submenu_page($topLevel, $this->pluginName, $this->pluginName . $number, 'activate_plugins', $plugin, array($this,'configuration_page'));           
     619                }
    556620            }
    557621        }
     
    729793        public function add_js($url) {
    730794            global $sedlex_list_scripts ;
    731             $sedlex_list_scripts[] = str_replace(plugin_dir_url("/"),WP_PLUGIN_DIR,$url) ;
     795            if ($url=="jquery-tokenize") {
     796                // pour le plugin tokenize jQuery
     797                $sedlex_list_scripts[] = str_replace(plugin_dir_url("/"),WP_PLUGIN_DIR, SL_FRAMEWORK_DIR . "/core/include/tokenize/jquery.tokenize.js") ;
     798            } else {
     799                $sedlex_list_scripts[] = str_replace(plugin_dir_url("/"),WP_PLUGIN_DIR,$url) ;
     800            }
    732801        }
    733802       
     
    864933                $sedlex_adminJavascript_tobedisplayed = false ;
    865934               
    866             //if (str_replace(basename( __FILE__),"",plugin_basename( __FILE__))==str_replace(basename( $this->path),"",plugin_basename($this->path))) {
    867935                // For the tabs of the admin page
    868936                wp_enqueue_script('jquery');   
     
    893961                    }
    894962                }
     963               
     964                // pour le plugin tokenize jQuery
     965                $this->add_js("jquery-tokenize") ;
    895966            }
    896967           
     
    9391010        public function add_css($url) {
    9401011            global $sedlex_list_styles ;
    941             $sedlex_list_styles[] = str_replace(content_url(),WP_CONTENT_DIR,$url) ;
     1012            if ($url=="jquery-tokenize") {
     1013                // pour le plugin tokenize jQuery
     1014                $sedlex_list_styles[] = str_replace(plugin_dir_url("/"),WP_PLUGIN_DIR, SL_FRAMEWORK_DIR . "/core/include/tokenize/jquery.tokenize.css") ;
     1015            } else {
     1016                $sedlex_list_styles[] = str_replace(content_url(),WP_CONTENT_DIR,$url) ;
     1017            }
    9421018        }
    9431019       
     
    11001176                wp_enqueue_style('thickbox');       
    11011177
    1102             //if (str_replace(basename( __FILE__),"",plugin_basename( __FILE__))==str_replace(basename( $this->path),"",plugin_basename($this->path))) {
    1103            
    11041178                wp_enqueue_style('wp-admin');
    11051179                wp_enqueue_style('dashboard');
     
    11191193                    }
    11201194                }
     1195               
     1196                // Pour le plugin tokenize
     1197                $this->add_css("jquery-tokenize") ;
    11211198            }
    11221199           
     
    12651342            global $blog_id ;
    12661343            global $SLpluginActivated ;
     1344           
     1345            echo get_option('plugin_error_on_activation');
     1346            update_option('plugin_error_on_activation',  "");
    12671347           
    12681348            if (((is_multisite())&&($blog_id == 1))||(!is_multisite())) {
  • links-synthesis/trunk/core.nfo

    r1084989 r1398088  
    1 e3f5c814a5f2f4b83570c724f57c81b8df5f5564#20150208150244
     1ad6660799ae45686df1c8a8b10e02847b578b760#20160417085624
  • links-synthesis/trunk/core/lang/SL_framework-cs_CZ.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-09-09T08:41:58+00:00\n"
     7"PO-Revision-Date: 2016-04-17T08:43:48+00:00\n"
    88"Last-Translator: Caseidor <[email protected]>\n"
    99"Last-Translator: david <>\n"
    1010"Last-Translator: MichaelKoci <[email protected]>\n"
    1111"Last-Translator: ElvisEK <[email protected]>\n"
     12"Last-Translator: homi <[email protected]>\n"
    1213"Language-Team: \n"
    1314"MIME-Version: 1.0\n"
     
    3132
    3233msgid "Log options"
    33 msgstr "Hlášení nastavení"
     34msgstr "Možnosti logování"
    3435
    3536msgid "What is the debug level:"
  • links-synthesis/trunk/core/lang/SL_framework-de_DE.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-12-01T09:34:23+00:00\n"
     7"PO-Revision-Date: 2015-10-09T14:13:47+00:00\n"
    88"Last-Translator: reitermarkus <[email protected]>\n"
    99"Last-Translator: ThorstenKallnischkies <http://desastre.eu>\n"
     
    1919"Last-Translator: DL8AAP <http://dl8aap.koch-carsten.de>\n"
    2020"Last-Translator: solist <http://cts.solist.co>\n"
     21"Last-Translator: Gahapati <[email protected]>\n"
    2122"Language-Team: \n"
    2223"MIME-Version: 1.0\n"
     
    6768
    6869msgid "Do you want to allow sub-blogs to modify the translations of the plugins:"
    69 msgstr "Möchten Sie, dass Unter-Blogs die Übersetzungen der Plugins verändern?"
     70msgstr "Möchten Sie, daß Unter-Blogs die Übersetzungen der Plugins verändern?"
    7071
    7172msgid "If this option is unchecked, the translation tab won't be displayed in the blog administration panel."
     
    8283
    8384msgid "There is a SQL database for this plugin"
    84 msgstr "SQL-Datenbank für dieses Plugin existiert"
     85msgstr "SQL-Datenbank für dieses Plugin existiert."
    8586
    8687msgid "Version: %s by %s"
     
    8889
    8990msgid "List of SL plugins"
    90 msgstr "Liste der SL Plugins"
     91msgstr "Liste der SL-Plugins"
    9192
    9293msgid "Parameters of the framework"
     
    9798
    9899msgid "The folder %s is not %s !"
    99 msgstr "Der Ordner %s ist nicht %s"
     100msgstr "Der Ordner %s ist nicht %s!"
    100101
    101102msgid "The file %s is not %s !"
    102 msgstr "Die Datei %s ist nicht %s"
     103msgstr "Die Datei %s ist nicht %s!"
    103104
    104105msgid "The folder %s does not exists and cannot be created !"
     
    109110
    110111msgid "There are some issues with folders rights. Please corret them as soon as possible as they could induce bugs and instabilities."
    111 msgstr "Es gibt probleme mit Berechtigungen von Verzeichnissen. Bitte beheben Sie sie schnellstmöglich, weil sie instabiles Verhalten Ihrer Webseite bewirken können."
     112msgstr "Es sind Probleme mit Berechtigungen von Verzeichnissen aufgetreten. Bitte beheben Sie sie schnellstmöglich, weil dies die Stabilität Ihrer Webseite beeinträchtigen kann."
    112113
    113114msgid "Please see below:"
     
    118119
    119120msgid "Here, you may configure three levels of translations: at the plugin level, at the framework level, and at the dashboard level."
    120 msgstr "Hier kannst du drei Ebenen der Übersetzung einstellen: Auf Plugin Ebene, auf Framework Ebene und auf Dashboard Ebene."
     121msgstr "Hier können Sie drei Ebenen der Übersetzung einstellen: Auf Plugin-Ebene, auf Framework-Ebene und auf Dashboard-Ebene."
    121122
    122123msgid "Please be informed that your current language is %s. Text will be translated if a translation is available."
    123 msgstr "Bitte nehme zur Kenntnis das deine gegenwärtige Sprache %s ist. Der Text wird übersetzt sobald eine Übersetzung zur Verfügung steht."
     124msgstr "Bitte beachten Sie, daß Ihre gegenwärtige Sprache %s ist. Der Text wird übersetzt, sobald eine Übersetzung zur Verfügung steht."
    124125
    125126msgid "If you want to modify the language, please go in %s and find %s or %s. The second argument is your language and you may modify it as you want."
    126 msgstr "Wenn du die Sprache ändern willst, gehe bitte in %s und finde %s oder %s. Das zweite Argument ist die Sprache und könnte geändert werden."
     127msgstr "Wenn Sie die Sprache ändern möchten, gehen Sie bitte in %s und suchen Sie nach %s oder %s. Das zweite Argument ist die Sprache und kann geändert werden."
    127128
    128129msgid "Translations available for this plugin (i.e. %s)"
     
    136137
    137138msgid "Sentence to translate"
    138 msgstr "Satz, der zu übersetzen ist"
     139msgstr "Zu übersetzender Satz"
    139140
    140141msgid "Translation"
     
    145146
    146147msgid "(if your name/pseudo is already in the list, there is no need to fill this input)"
    147 msgstr "( falls dein Name/ Pseudonym bereits in der Liste ist, muss dieses Feld nicht ausgefüllt werden)"
     148msgstr "(falls Ihr Name/Pseudonym bereits in der Liste ist, muß dieses Feld nicht ausgefüllt werden)"
    148149
    149150msgid "Your email or your website:"
     
    172173
    173174msgid "The translation %s have been sent"
    174 msgstr "Die Übersetzung %s wurde verschickt"
     175msgstr "Die Übersetzung %s wurde verschickt."
    175176
    176177msgid "An error occured sending the email."
     
    178179
    179180msgid "Make sure that your wordpress is able to send email."
    180 msgstr "Bitte stellen Sie sicher, dass WordPress Mails verschicken kann."
     181msgstr "Bitte stellen Sie sicher, daß WordPress E-Mails verschicken kann."
    181182
    182183msgid "Send translation"
     
    238239
    239240msgid "You may add a new translation hereafter (Please note that it is recommended to send your translation to the author so that he would be able to add your translation to the future release of the plugin !)"
    240 msgstr "Sie können hier eine neue Übersetzung hinzufügen ( bitte beachten Sie, dass Sie ihre Übersetzung auch an den Autor senden, damit die Übersetzung für zukünftige Veröffentlichungen verwendet werden kann! )"
     241msgstr "Sie können hier eine neue Übersetzung hinzufügen ( bitte beachten Sie, daß Sie ihre Übersetzung auch an den Autor senden, damit die Übersetzung für zukünftige Veröffentlichungen verwendet werden kann! )"
    241242
    242243msgid "Add"
     
    244245
    245246msgid "The 'SL framework' is a framework used for developping many plugins like this one. Thus, if you participate translating the framework, it will be very helpful for a bunch of plugins."
    246 msgstr "Das &quot;SL Framework&quot; ist ein Framework, welches benutzt wird, um viele Plugins wie dieses hier zu entwickeln. Falls Sie sich entscheiden, dieses Framework zu übersetzen, helfen Sie einer Menge an Plugins."
     247msgstr "Das &quot;SL-Framework&quot; ist ein Framework, welches benutzt wird, um viele Plugins wie dieses hier zu entwickeln. Falls Sie sich entscheiden, dieses Framework zu übersetzen, kommt dies einer ganzen Anzahl Plugins zugute."
    247248
    248249msgid "There is %s languages supported for the 'SL framework'."
     
    262263
    263264msgid "Error: the submitted string does not match the constrains"
    264 msgstr "Fehler: Die Eingabe stimmt nicht mit den Anforderungen überein"
     265msgstr "Fehler: Die Eingabe stimmt nicht mit den Anforderungen überein."
    265266
    266267msgid "Error: the submitted file can not be uploaded!"
    267 msgstr "Fehler! Die abgeschickte Datei kann nicht hochgeladen werden"
     268msgstr "Fehler! Die abgeschickte Datei kann nicht hochgeladen werden."
    268269
    269270msgid "Error: security issue!"
     
    286287
    287288msgid "Warning: some characters have been removed because they are not allowed here"
    288 msgstr "Warnung: Einige Zeichen wurden entfernt weil sie bei dieser Eingabe nicht erlaubt sind.."
     289msgstr "Warnung: Einige Zeichen wurden entfernt, weil sie bei dieser Eingabe nicht erlaubt sind."
    289290
    290291msgid "(integer)"
     
    292293
    293294msgid "(If you want to delete this file, please check this box %s)"
    294 msgstr "(Wenn Sie diese Datei löschen wollen, setzen Sie hier einen Haken: %s)"
     295msgstr "(Wenn Sie diese Datei löschen wollen, setzen Sie hier einen Haken: %s.)"
    295296
    296297msgid "Update"
     
    325326
    326327msgid "All author's plugins have been installed. Thank you!"
    327 msgstr "Alle Plugins des Autoren wurden installiert. Vielen Dank!"
     328msgstr "Alle Plugins des Autors wurden installiert. Vielen Dank!"
    328329
    329330msgid "Installed plugins"
     
    334335
    335336msgid "Plugin already installed"
    336 msgstr "Plugin schon installiert"
     337msgstr "Plugin bereits installiert"
    337338
    338339msgid "The Wordpress page: %s"
     
    340341
    341342msgid "An Unexpected HTTP Error occurred during the API request."
    342 msgstr "Ein unerwarteter HTTP Fehler ist während der API-Anfrage aufgetreten."
     343msgstr "Ein unerwarteter HTTP-Fehler ist während der API-Anfrage aufgetreten."
    343344
    344345msgid "Last update:"
     
    367368
    368369msgid "If you like the plugin, do not hesitate to donate. Please note that this plugin is developed in my spare time for free."
    369 msgstr "Wenn dir das Plugin gefällt, zögere nicht zu spenden. Bitte beachte das dieses Plugin in meiner Freizeit entwickelt wurde und kostenlos zur Verfügung steht."
     370msgstr "Wenn Ihnen das Plugin gefällt, zögeren Sie nicht zu spenden. Bitte beachten Sie, daß dieses Plugin in meiner Freizeit entwickelt wurde und kostenlos zur Verfügung steht."
    370371
    371372msgid "This is not mandatory! but it may be a sign that this plugin fits you needs: it makes me happy..."
    372 msgstr "Dies ist zwar keine Pflicht, wäre aber auch ein Indikator für mich, ob das Plugin eure Bedürfnisse befriedigt. Ganz nebenbei würde ich mich auch darüber freuen."
     373msgstr "Dies ist zwar keine Pflicht, wäre aber auch ein Indikator für mich, ob das Plugin Ihre Bedürfnisse befriedigt. Ganz nebenbei würde ich mich auch darüber freuen."
    373374
    374375msgid "Feedback form"
     
    391392
    392393msgid "Please note that additional information on your wordpress installation will be sent to the author in order to help the debugging if needed (such as : the wordpress version, the installed plugins, etc.)"
    393 msgstr "Bitte nehmen Sie zur Kenntnis, dass zusätzliche Informationen an den Autor geschickt werden, wie z.B. WordPress-Version, installierte Plugins, etc. Diese Informationen werden benötigt, um Fehler zu finden."
     394msgstr "Bitte beachten Sie, daß zusätzliche Informationen an den Autor geschickt werden, wie z.B. WordPress-Version, installierte Plugins, etc. Diese Informationen werden benötigt, um Fehler zu finden."
    394395
    395396msgid "Send feedback"
     
    442443
    443444msgid "For now, you have installed %s plugins including %s plugins developped with the SedLex's framework"
    444 msgstr "Bis jetzt hast Du %s Plugins installiert inclusive %s Plugins, die mit SedLex&#039;s framework entwickelt wurden."
     445msgstr "Bis jetzt haben Sie %s Plugins installiert, einschließlich %s Plugins, die mit SedLex&#039; Framework entwickelt wurden."
    445446
    446447msgid "The core plugin is located at %s"
     
    451452
    452453msgid "The number of occurrence of %s does not match in both string. Please note that the string %s will be replaced with a contextual string."
    453 msgstr "Die Häufigkeit des Vorkommens von %s stimmt in beiden Strings nicht überein. Beachten Sie dass der String %s durch einen kontext bezogen String ersetzt wird."
     454msgstr "Die Häufigkeit des Vorkommens von %s stimmt in beiden Strings nicht überein. Beachten Sie daß der String %s durch einen kontext bezogen String ersetzt wird."
    454455
    455456msgid "About SL plugins..."
    456 msgstr "SL-Plugins Einstellungen"
     457msgstr "SL-Plugins"
    457458
    458459msgid "Location of the SL plugins"
     
    475476
    476477msgid "The URL is correct and the ID of the media file is %s."
    477 msgstr "Die URL ist korrekt und die ID der Media-Datei ist %s"
     478msgstr "Die URL ist korrekt und die ID der Media-Datei ist %s."
    478479
    479480msgid "The URL is not a media file."
    480 msgstr "Die URL verweist auf keine Media-Datei"
     481msgstr "Die URL verweist auf keine Media-Datei."
    481482
    482483msgid "Choose a media"
  • links-synthesis/trunk/core/lang/SL_framework-es_ES.po

    r806702 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2013-10-10T15:16:31+00:00\n"
     7"PO-Revision-Date: 2015-04-04T21:16:52+00:00\n"
    88"Last-Translator: IgnacioCalvo <http://ignaciocalvo.com>\n"
    99"Last-Translator: Verto <vertofotografia.es>\n"
     
    3131
    3232msgid "Settings"
    33 msgstr "Configuración"
     33msgstr "Ajustes"
    3434
    3535msgid "Log options"
     
    3737
    3838msgid "What is the debug level:"
    39 msgstr "Nivel de depuración:"
     39msgstr "Cuál es el nivel de depuración:"
    4040
    4141msgid "See the debug logs"
    42 msgstr "Ver registros de depuración"
     42msgstr "Ver los registros de depuración"
    4343
    4444msgid "1=log only the critical errors;"
    45 msgstr "1=registrar sólo errores críticos;"
     45msgstr "1=registrar sólo los errores críticos;"
    4646
    4747msgid "2=log only the critical errors and the standard errors;"
    48 msgstr "2=registrar sólo errores críticos y estándar;"
     48msgstr "2=registrar sólo los errores críticos y los estándar;"
    4949
    5050msgid "3=log only the critical errors, the standard errors and the warnings;"
    51 msgstr "3=registrar sólo errores críticos y estándar y advertencias;"
     51msgstr "3=registrar sólo los errores críticos, los estándar y las advertencias;"
    5252
    5353msgid "4=log information;"
     
    5858
    5959msgid "Multisite Management"
    60 msgstr "Gestión de Multisitio"
     60msgstr "Gestión Multisitio"
    6161
    6262msgid "Do you want to allow sub-blogs to modify the translations of the plugins:"
     
    6464
    6565msgid "If this option is unchecked, the translation tab won't be displayed in the blog administration panel."
    66 msgstr "Si no marca esta opción, la ficha de traducción no se mostrará en el panel de administración del blog."
     66msgstr "Si no marca esta opción, la pestaña de traducción no se mostrará en el panel de administración del blog."
    6767
    6868msgid "Summary page for the plugins developped with the SL framework"
    69 msgstr "Página resumen de los plugins desarrollados con SL Framework"
     69msgstr "Página resumen para los plugins desarrollados con el framework SL"
    7070
    7171msgid "For now, you have installed %s plugins including %s plugins developped with the SedLex's framework"
    72 msgstr "Por ahora, han instalado plugins de %s incluyendo %s plugins desarrollado con marco de SedLex"
     72msgstr "Por ahora, ha instalado %s plugins incluyendo %s plugins desarrollados con el framework de SedLex"
    7373
    7474msgid "The core plugin is located at %s"
     
    112112
    113113msgid "Please see below:"
    114 msgstr "Por favor, ver más abajo:"
     114msgstr "Por favor, vea debajo:"
    115115
    116116msgid "Close popup"
     
    127127
    128128msgid "Translations available for this plugin (i.e. %s)"
    129 msgstr "Traducciones disponibles para el plugin  %s"
     129msgstr "Traducciones disponibles para el plugin %s"
    130130
    131131msgid "Translations available for the SL framework (stored in %s)"
     
    358358
    359359msgid "Filter: %s"
    360 msgstr "Filtrar: %s"
     360msgstr "Filtro: %s"
    361361
    362362msgid "%s of %s"
     
    370370
    371371msgid "If you like the plugin, do not hesitate to donate. Please note that this plugin is developed in my spare time for free."
    372 msgstr "Si le gusta el plugin, no dude en donar. Tenga en cuenta que este plugin es desarrollado en mi tiempo libre de forma gratuita."
     372msgstr "Si le gusta el plugin, no dude en donar. Por favor tenga en cuenta que este plugin es desarrollado en mi tiempo libre de forma gratuita."
    373373
    374374msgid "This is not mandatory! but it may be a sign that this plugin fits you needs: it makes me happy..."
     
    385385
    386386msgid "Your email:"
    387 msgstr "Su email:"
     387msgstr "Su correo electrónico:"
    388388
    389389msgid "Useful... so that the author will be able to anwser you."
    390 msgstr "Útil para que el autor pueda responderle."
     390msgstr "Útil... para que el autor pueda responderle."
    391391
    392392msgid "Your comments:"
     
    444444msgstr "El archivo %s no se puede modificar. Debe tener un problema con los permisos de los archivos o las restricciones de seguridad."
    445445
     446msgid "Location of the SL plugins"
     447msgstr "Ubicación de los plugins SL"
     448
     449msgid "Where do you want to display the SL plugins:"
     450msgstr "Dónde quiere mostrar los plugins de SL:"
     451
     452msgid "Standard"
     453msgstr "Estándar"
     454
     455msgid "under Plugins"
     456msgstr "bajo Plugins"
     457
     458msgid "under Tools"
     459msgstr "bajo Herramientas"
     460
     461msgid "under Settings"
     462msgstr "bajo Ajustes"
     463
     464msgid "The following plugins have been developed by the author and are not yet been installed:"
     465msgstr "Los siguientes plugins han sido desarrollados por el autor y que aún no se han instalado:"
     466
     467msgid "The URL is correct and the ID of the media file is %s."
     468msgstr "La URL es correcta y la ID del fichero multimedia es %s."
     469
     470msgid "The URL is not a media file."
     471msgstr "La URL no es un fichero multimedia."
     472
     473msgid "Choose a media"
     474msgstr "Selecione un medio"
     475
     476msgid "About SL plugins..."
     477msgstr "Acerca de plugins SL..."
     478
  • links-synthesis/trunk/core/lang/SL_framework-fa_IR.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-09-10T15:44:21+00:00\n"
     7"PO-Revision-Date: 2016-04-17T08:44:29+00:00\n"
    88"Last-Translator: Mehdi <[email protected]>\n"
    99"Last-Translator: AhmadWayfarer <http://7eshop.ir>\n"
     
    1313"Last-Translator: Arash..by...translate.parsijoo.ir <http://arash-ne.ir>\n"
    1414"Last-Translator: Arash...by...translate.parsijoo.ir <http://arash-ne.ir>\n"
     15"Last-Translator: shahinsalek <[email protected]>\n"
    1516"Language-Team: \n"
    1617"MIME-Version: 1.0\n"
     
    361362
    362363msgid "Your email:"
    363 msgstr "ایمیل:"
     364msgstr "ایمیل شما:"
    364365
    365366msgid "Useful... so that the author will be able to anwser you."
     
    433434
    434435msgid "About SL plugins..."
    435 msgstr "دربارهSL plugins"
     436msgstr "درباره اس ال پلاگین"
    436437
    437438msgid "Location of the SL plugins"
    438 msgstr "مكانSL plugins"
     439msgstr "مكان SL plugins"
    439440
    440441msgid "Where do you want to display the SL plugins:"
    441 msgstr "مي خواهيد افزونهSL plugins كجا باشد؟"
     442msgstr "مي خواهيد افزونه SL plugins كجا باشد؟"
    442443
    443444msgid "Standard"
     
    456457msgstr "انتخاب يك رسانه"
    457458
     459msgid "The URL is not a media file."
     460msgstr "این آدرس شامل فایل مدیا نمی باشد."
     461
     462msgid "There are some issues with folders rights. Please corret them as soon as possible as they could induce bugs and instabilities."
     463msgstr "برخی از مسائل به دلیل حق دسترسی به فولدر ها می باشد. لطفا آن ها را برسی کرده و در اسرع وقت رفع نمایید."
     464
     465msgid "The URL is correct and the ID of the media file is %s."
     466msgstr "آدرس صحیح است و آی دی فایل مدیا %s است."
     467
     468msgid "%s file cannot be created for %s as there is no translated sentence. Please, translate at least one sentence to create a file"
     469msgstr "فایل %s نمی تواند ایجاد شود برای ایجاد %s هیچ ترجمه ای وجود ندارد. لطفا حداقل یک جمله را برای ایجاد شدن فایل ترجمه کنید."
     470
     471msgid "You may add a new translation hereafter (Please note that it is recommended to send your translation to the author so that he would be able to add your translation to the future release of the plugin !)"
     472msgstr "شما ممکن از ترجمه جدید اضافه کنید ( لطفا ترجمه خود را جوری قرار دهید که در صروت بروز شدن پلاگین ترجمه قابل استفاده باشد)"
     473
     474msgid "The 'SL framework' is a framework used for developping many plugins like this one. Thus, if you participate translating the framework, it will be very helpful for a bunch of plugins."
     475msgstr "&#039;SL framework&#039; یک فریم ورك توسعه برای ساخت پلاگین است مانند همین پلاگین. بنابر این اگر شما به ترجمه این فریم ورك کمک کنید انگار به کل پلاگین هایی که با این فریم ورك نوشته می شود کمک کرده اید."
     476
  • links-synthesis/trunk/core/lang/SL_framework-fr_FR.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-09-24T16:00:44+00:00\n"
     7"PO-Revision-Date: 2015-09-09T08:11:15+00:00\n"
    88"Last-Translator: SedLex <http://www.sedlex.fr/>\n"
    99"Last-Translator: PierreF <[email protected]>\n"
     
    2020"Last-Translator: ChristopheLemuet <>\n"
    2121"Last-Translator: Cedric <www.cegeek.fr>\n"
     22"Last-Translator: Vyler <clicfric.com>\n"
    2223"Language-Team: \n"
    2324"MIME-Version: 1.0\n"
     
    416417
    417418msgid "This is the default language of the plugin. It cannot be modified."
    418 msgstr "C&#039;est la langue par défaut du plugin. Il ne peut pas être modifié."
     419msgstr "C&#039;est la langue par défaut du plugin. Elle ne peut pas être modifiée."
    419420
    420421msgid "Modify"
  • links-synthesis/trunk/core/lang/SL_framework-ja_JP.po

    r721816 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2011-10-27T08:32:55+00:00\n"
     7"PO-Revision-Date: 2015-08-03T08:34:56+00:00\n"
    88"Last-Translator: hasegawa <lanna.in>\n"
     9"Last-Translator: OsamuKudo <[email protected]>\n"
    910"Language-Team: \n"
    1011"MIME-Version: 1.0\n"
     
    2122"X-Textdomain-Support: yes\n"
    2223
    23 msgid "About..."
    24 msgstr ""
    25 
    2624msgid "Settings"
    2725msgstr "設定"
     
    4846msgstr "SVNのパラメータが更新されました!"
    4947
    50 msgid "%s has been updated with %s !"
    51 msgstr ""
    52 
    53 msgid "Please click %shere%s to refresh the page and ensure everything is ok!"
    54 msgstr ""
    55 
    56 msgid "Summary page for the plugins developped with the SL framework"
    57 msgstr ""
    58 
    59 msgid "The core file used for the SedLex plugins is:"
    60 msgstr ""
    61 
    62 msgid "For now, you have installed %d  plugins including %d plugins developped with the 'SL framework':"
    63 msgstr ""
    64 
    65 msgid "Plugin name"
    66 msgstr ""
    67 
    68 msgid "Description"
    69 msgstr ""
    70 
    71 msgid "Status of the core"
    72 msgstr ""
    73 
    74 msgid "An Unexpected HTTP Error occurred during the API request."
    75 msgstr ""
    76 
    77 msgid "This plugin does not seem to be hosted on the wordpress repository."
    78 msgstr ""
    79 
    80 msgid "This plugin is hosted by wordpress repository and is not up-to-date ! (i.e. %s)"
    81 msgstr ""
    82 
    83 msgid "(the repository)"
    84 msgstr ""
    85 
    86 msgid "This plugin is hosted by wordpress repository with the same version but the plugin is not exactly the same"
    87 msgstr ""
    88 
    89 msgid "This plugin is hosted by wordpress repository and is up-to-date !"
    90 msgstr ""
    91 
    92 msgid "Last update:"
    93 msgstr ""
    94 
    95 msgid "by %s persons"
    96 msgstr ""
    97 
    98 msgid "Rating:"
    99 msgstr ""
    100 
    101 msgid "Number of download:"
    102 msgstr ""
    103 
    104 msgid "Version: %s by %s"
    105 msgstr ""
    106 
    107 msgid "Update with the core of the %s plugin (only if you definitely know what you do)"
    108 msgstr ""
    109 
    110 msgid "This core is currently used by the framework and plugins !"
    111 msgstr ""
    112 
    113 msgid "SVN management"
    114 msgstr ""
    115 
    116 msgid "An error occurs when requesting %s"
    117 msgstr ""
    118 
    119 msgid "You do not seem to have a repository for Wordpress because %s returns a 404 error. Thus, ask for one here: %s"
    120 msgstr ""
    121 
    122 msgid "Overwrite the local plugin files with files stored the SVN repository"
    123 msgstr ""
    124 
    125 msgid "Quick"
    126 msgstr ""
    127 
    128 msgid "Slow"
    129 msgstr ""
    130 
    131 msgid "Update the SVN repository with your current local plugin files"
    132 msgstr ""
    133 
    134 msgid "The slow version may be useful if you have issues with the quick version."
    135 msgstr ""
    136 
    137 msgid "Show the advanced options and parameters:"
    138 msgstr ""
    139 
    140 msgid "Show/Hide"
    141 msgstr ""
    142 
    143 msgid "Show the developpers documentation:"
    144 msgstr ""
    145 
    146 msgid "Enable SVN to commit your developed plugin to wordpress.org:"
    147 msgstr ""
    148 
    149 msgid "Enable/Disable"
    150 msgstr ""
    151 
    152 msgid "Your SVN Login:"
    153 msgstr ""
    154 
    155 msgid "Your SVN password:"
    156 msgstr ""
    157 
    158 msgid "The author name displayed in the Wordpress plugin (probably close to your login):"
    159 msgstr ""
    160 
    161 msgid "Update"
    162 msgstr ""
    163 
    164 msgid "List of SL plugins"
    165 msgstr ""
    166 
    167 msgid "The following description is a quick tutorial on about how to create a plugin with the SL framework. (Please note that the following description is in English for developpers, sorry for this inconvenience)"
    168 msgstr ""
    169 
    170 msgid "How to develop a plugin?"
    171 msgstr ""
    172 
    173 msgid "Framework documentation"
    174 msgstr ""
    175 
    176 msgid "Manage translation of the framework"
    177 msgstr ""
    178 
    179 msgid "Please find hearafter all the possible classes and methods for the development with this framework"
    180 msgstr ""
    181 
    182 msgid "[CLASS]"
    183 msgstr ""
    184 
    185 msgid "Here is the method of the class:"
    186 msgstr ""
    187 
    188 msgid "[METHOD]"
    189 msgstr ""
    190 
    191 msgid "Description:"
    192 msgstr ""
    193 
    194 msgid "Parameters:"
    195 msgstr ""
    196 
    197 msgid "[optional]"
    198 msgstr ""
    199 
    200 msgid "(by default, its value is:"
    201 msgstr ""
    202 
    203 msgid "No param"
    204 msgstr ""
    205 
    206 msgid "Return value:"
    207 msgstr ""
    208 
    209 msgid "Typical call:"
    210 msgstr ""
    211 
    212 msgid "See also:"
    213 msgstr ""
    214 
    215 msgid "Version of"
    216 msgstr ""
    217 
    218 msgid "MD5 fingerprint of the framework:"
    219 msgstr ""
    220 
    221 msgid "Last update of the core: %s at %s"
    222 msgstr ""
    223 
    224 msgid "The folder %s is not %s !"
    225 msgstr ""
    226 
    227 msgid "The file %s is not %s !"
    228 msgstr ""
    229 
    230 msgid "The folder %s does not exists and cannot be created !"
    231 msgstr ""
    232 
    233 msgid "The file %s does not exists and cannot be created !"
    234 msgstr ""
    235 
    236 msgid "There are some issues with folders rights. Please corret them as soon as possible as they could induce bugs and instabilities."
    237 msgstr ""
    238 
    239 msgid "Please see below:"
    240 msgstr ""
    241 
    242 msgid "Update the SVN repository %s with your current local plugin files (slower version)"
    243 msgstr ""
    244 
    245 msgid "Update the SVN repository %s with your current local plugin files"
    246 msgstr ""
    247 
    248 msgid "Overwrite the local plugin %s files with files stored the SVN repository"
    249 msgstr ""
    250 
    251 msgid "Updating the local cache"
    252 msgstr ""
    253 
    254 msgid "folder created"
    255 msgstr ""
    256 
    257 msgid "folder creation has failed !"
    258 msgstr ""
    259 
    260 msgid "%s bytes transfered"
    261 msgstr ""
    262 
    263 msgid "An error occurred during the retrieval of files on the server ! Sorry ..."
    264 msgstr ""
    265 
    266 msgid "To be sure that you compare the local plugin with the latest repoository files, it is necessary to download it locally. Please wait during the update (your are using the slow version which may be more reliable especially with big plugins)..."
    267 msgstr ""
    268 
    269 msgid "Update of the files of the %s plugin in progress (%s files)"
    270 msgstr ""
    271 
    272 msgid "An error occurred when listing the files of the %s plugin ! Sorry ..."
    273 msgstr ""
    274 
    275 msgid "Browsing the modifications"
    276 msgstr ""
    277 
    278 msgid "Comparing %s with %s"
    279 msgstr ""
    280 
    281 msgid "Confirmation"
    282 msgstr ""
    283 
    284 msgid "Commit comment:"
    285 msgstr ""
    286 
    287 msgid "Yes, the SVN version will be deleted and be replaced by the local version"
    288 msgstr ""
    289 
    290 msgid "Yes, the local version will be overwritten with the repository files"
    291 msgstr ""
    292 
    293 msgid "Sending to the repository in progress..."
    294 msgstr ""
    295 
    296 msgid "Preparation of the sending done !"
    297 msgstr ""
    298 
    299 msgid "Sending the file is finished ! Now merging the change in the repository ..."
    300 msgstr ""
    301 
    302 msgid "Error while preparing the sending!"
    303 msgstr ""
    304 
    305 msgid "The commit has ended [ %s ]... You should received an email quickly !"
    306 msgstr ""
    307 
    308 msgid "The commit has ended but there is an error!"
    309 msgstr ""
    310 
    311 msgid "Sending to the local files in progress..."
    312 msgstr ""
    313 
    314 msgid "The rollback has ended ..."
    315 msgstr ""
    316 
    317 msgid "Your name:"
    318 msgstr ""
    319 
    320 msgid "Your email (for response):"
    321 msgstr ""
    322 
    323 msgid "Your comments:"
    324 msgstr ""
    325 
    326 msgid "Please note that additional information on your wordpress installation will be sent to the author in order to help the debugging if needed (such as : the wordpress version, the installed plugins, etc.)"
    327 msgstr ""
    328 
    329 msgid "Send feedback"
    330 msgstr ""
    331 
    332 msgid "No email have been provided for the author of this plugin. Therefore, the feedback is impossible"
    333 msgstr ""
    334 
    335 msgid "The feedback has been sent"
    336 msgstr ""
    337 
    338 msgid "An error occured sending the email."
    339 msgstr ""
    340 
    341 msgid "Make sure that your wordpress is able to send email."
    342 msgstr ""
    343 
    344 msgid "Select all"
    345 msgstr ""
    346 
    347 msgid "Un-select all"
    348 msgstr ""
    349 
    350 msgid "KB"
    351 msgstr ""
    352 
    353 msgid "MB"
    354 msgstr ""
    355 
    356 msgid "GB"
    357 msgstr ""
    358 
    359 msgid "The available translation for the SL framework (contained in the '%s' folder)"
    360 msgstr ""
    361 
    362 msgid "There is %d languages supported for the 'SL framework'."
    363 msgstr ""
    364 
    365 msgid "There is %d sentence to be translated in the framework."
    366 msgstr ""
    367 
    368 msgid "The available translation for this plugin"
    369 msgstr ""
    370 
    371 msgid "There is %d languages supported for this plugin."
    372 msgstr ""
    373 
    374 msgid "There is %d sentence to be translated in this plugin."
    375 msgstr ""
    376 
    377 msgid "Please note that the translation for the framework is available in the %s submenu (see the %s tab)."
    378 msgstr ""
    379 
    38048msgid "Language"
    38149msgstr "言語"
    38250
     51msgid "About SL plugins..."
     52msgstr "SLプラグインについて"
     53
     54msgid "About..."
     55msgstr "概略"
     56
     57msgid "Log options"
     58msgstr "ログ記録オプション"
     59
     60msgid "What is the debug level:"
     61msgstr "デバッグレベルの設定"
     62
     63msgid "See the debug logs"
     64msgstr "デバッグログ記録を見る"
     65
     66msgid "1=log only the critical errors;"
     67msgstr "1=致命的なエラーのみを記録する"
     68
     69msgid "2=log only the critical errors and the standard errors;"
     70msgstr "2=致命的なエラーと標準的なエラーを記録する"
     71
     72msgid "3=log only the critical errors, the standard errors and the warnings;"
     73msgstr "3=致命的なエラーと標準的なエラーと警告を記録する"
     74
     75msgid "4=log information;"
     76msgstr "4=ログ記録のお知らせ"
     77
     78msgid "5=log verbose;"
     79msgstr "5=進捗状況をログ記録する"
     80
     81msgid "Multisite Management"
     82msgstr "複数サイトの管理"
     83
     84msgid "Do you want to allow sub-blogs to modify the translations of the plugins:"
     85msgstr "プラグインの翻訳を変更する許可をしますか?"
     86
     87msgid "If this option is unchecked, the translation tab won't be displayed in the blog administration panel."
     88msgstr "このオプションが選択されていない時は、翻訳タブは管理者パネルに表示されません。"
     89
     90msgid "Location of the SL plugins"
     91msgstr "SLプラグインの位置"
     92
     93msgid "Where do you want to display the SL plugins:"
     94msgstr "SLプラグインをどこに表示するか:"
     95
     96msgid "Summary page for the plugins developped with the SL framework"
     97msgstr "SLフレームワークによって開発されたプラグインの要約ページ"
     98
     99msgid "For now, you have installed %s plugins including %s plugins developped with the SedLex's framework"
     100msgstr "これによって、SedLexのフレームワークによって開発された%sのプラグインを含む%sプラグインがインストールされました。"
     101
     102msgid "The core plugin is located at %s"
     103msgstr "コアプラグインは%sにあります。"
     104
     105msgid "Plugin name"
     106msgstr "プラグインの名前"
     107
     108msgid "Description"
     109msgstr "説明"
     110
     111msgid "There is a SQL database for this plugin"
     112msgstr "このプラグイン用のSQLデーターベースがあります。"
     113
     114msgid "Version: %s by %s"
     115msgstr "バージョン:%sによる%s"
     116
     117msgid "List of SL plugins"
     118msgstr "SLプラグインの一覧"
     119
     120msgid "Parameters of the framework"
     121msgstr "フレームワークの変数"
     122
     123msgid "Manage translation of the framework"
     124msgstr "フレームワークの翻訳管理"
     125
     126msgid "The folder %s is not %s !"
     127msgstr "%sフォルダが%sに存在していない!"
     128
     129msgid "The file %s is not %s !"
     130msgstr "%sファイルが%sに存在していない!"
     131
     132msgid "The folder %s does not exists and cannot be created !"
     133msgstr "フォルダ%sが%存在せず作成できていない!"
     134
     135msgid "The file %s does not exists and cannot be created !"
     136msgstr "ファイル%sが存在せず作成できていない!"
     137
     138msgid "There are some issues with folders rights. Please corret them as soon as possible as they could induce bugs and instabilities."
     139msgstr "フォルダーの権限に問題があります。バグや不安定の原因になるので速やかに正しく設定してください。"
     140
     141msgid "Please see below:"
     142msgstr "以下を参照:"
     143
     144msgid "Standard"
     145msgstr "標準"
     146
     147msgid "under Plugins"
     148msgstr "プラグインの下に置く"
     149
     150msgid "under Tools"
     151msgstr "ツールの下に置く"
     152
     153msgid "under Settings"
     154msgstr "設定の下に置く"
     155
     156msgid "Filter: %s"
     157msgstr "フィルター:%s"
     158
     159msgid "%s of %s"
     160msgstr "%sの%s"
     161
     162msgid "Current Page"
     163msgstr "現在のページ"
     164
     165msgid "Donate"
     166msgstr "寄付"
     167
     168msgid "If you like the plugin, do not hesitate to donate. Please note that this plugin is developed in my spare time for free."
     169msgstr "このプラグインは私の空き時間を使って無償で開発されたことを覚えておいてください。もし、あなたが気に入って寄付してくれるなら謹んでお受けいたします。"
     170
     171msgid "This is not mandatory! but it may be a sign that this plugin fits you needs: it makes me happy..."
     172msgstr "強制ではありません。でも、あなたのニーズにマッチしているならそれだけでも私の幸せです。"
     173
     174msgid "Feedback form"
     175msgstr "感想や要望の問い合わせ"
     176
     177msgid "This form is an easy way to contact the author and to discuss issues/incompatibilities/etc. with him"
     178msgstr "この問い合わせフォームで作者と連絡をとることができ、問題点や不具合を議論することができます。"
     179
     180msgid "Contact the author"
     181msgstr "作者に連絡する"
     182
     183msgid "Your name:"
     184msgstr "あなたの名前:"
     185
     186msgid "Your email:"
     187msgstr "あなたのメール:"
     188
     189msgid "Useful... so that the author will be able to anwser you."
     190msgstr "便利・・・そうすれば作者があなたにお応えできます。"
     191
     192msgid "Your comments:"
     193msgstr "あなたのコメント"
     194
     195msgid "Please note that additional information on your wordpress installation will be sent to the author in order to help the debugging if needed (such as : the wordpress version, the installed plugins, etc.)"
     196msgstr "デバッグを手伝う為に、インストールされているwordpressの追加情報を作者にお知らせください。(wordpressのバージョンやインストール済みのプラグインなど"
     197
     198msgid "Send feedback"
     199msgstr "要望を送る"
     200
     201msgid "No email have been provided for the author of this plugin. Therefore, the feedback is impossible"
     202msgstr "このプラグインの作者にメールが送られていません。要望が送ることができていません。"
     203
     204msgid "The feedback has been sent"
     205msgstr "要望は送られました。"
     206
     207msgid "An error occured sending the email."
     208msgstr "メールを送るときにエラーが発生しました。"
     209
     210msgid "Make sure that your wordpress is able to send email."
     211msgstr "wordpressがメールを送ることができることをご確認ください。"
     212
     213msgid "Plugins that you may install"
     214msgstr "インストールできるプラグイン"
     215
     216msgid "The following plugins have been developed by the author and are not yet been installed:"
     217msgstr "次のプラグインが作者によって開発されました。まだインストールされていません。"
     218
     219msgid "Plugin not yet installed"
     220msgstr "まだインストールされていないプラグイン"
     221
     222msgid "Description and Screenshots"
     223msgstr "概要と画面例"
     224
     225msgid "All author's plugins have been installed. Thank you!"
     226msgstr "全ての作者のプラグインがインストールされました。感謝!"
     227
     228msgid "Installed plugins"
     229msgstr "インストールされたプラグイン"
     230
     231msgid "You have already installed the following author's plugins:"
     232msgstr "次の作者のプラグインがインストールされました。"
     233
     234msgid "Plugin already installed"
     235msgstr "プラグインはインストールされました。"
     236
     237msgid "The Wordpress page: %s"
     238msgstr "wordpressのページ:%s"
     239
     240msgid "An Unexpected HTTP Error occurred during the API request."
     241msgstr "API要求中に予期せぬHTTPエラーが発生しました。"
     242
     243msgid "Last update:"
     244msgstr "最新の更新:"
     245
     246msgid "Rating: %s"
     247msgstr "評価:%s"
     248
     249msgid "by %s persons"
     250msgstr "%s人数による"
     251
     252msgid "Number of download:"
     253msgstr "ダウンロード回数"
     254
     255msgid "Add new"
     256msgstr "新規追加"
     257
     258msgid "Error: the submitted value is not an integer and thus, the parameter has not been updated!"
     259msgstr "エラー:記入された値が整数でない。変数は更新されていません。"
     260
     261msgid "Error: the submitted string does not match the constrains"
     262msgstr "エラー:記入された文字列が一致しない"
     263
     264msgid "Error: the submitted file can not be uploaded!"
     265msgstr "エラー:記入されたファイルはアップロードされていません。"
     266
     267msgid "Error: security issue!"
     268msgstr "エラー:セイキュリティー問題"
     269
     270msgid "Parameters"
     271msgstr "変数"
     272
     273msgid "Here are the parameters of the plugin. Modify them at will to fit your needs."
     274msgstr "ここではプラグインの変数を設定します。要望に合うように変数を変更してください。"
     275
     276msgid "Here are the parameters of the framework. Modify them at will to fit your needs."
     277msgstr "ここではフレームワークの変数を設定します。要望に合うように変数を変更してください。"
     278
     279msgid "(Delete)"
     280msgstr "(削除)"
     281
     282msgid "Values"
     283msgstr "値"
     284
     285msgid "Warning: some characters have been removed because they are not allowed here"
     286msgstr "注意喚起:ここでは許可されていないためにいくつかの文字が削除されました。"
     287
     288msgid "(integer)"
     289msgstr "(整数)"
     290
     291msgid "The URL is correct and the ID of the media file is %s."
     292msgstr "そのURLは正しく、そのメディアファイルのIDは%sです。"
     293
     294msgid "The URL is not a media file."
     295msgstr "そのURLはメディアファイルではありません。"
     296
     297msgid "Choose a media"
     298msgstr "メディアを選択する"
     299
     300msgid "(If you want to delete this file, please check this box %s)"
     301msgstr "(このファイルを削除したければ。、このボックス%sにチェックを入れてください)"
     302
     303msgid "Update"
     304msgstr "更新"
     305
     306msgid "Reset to default values"
     307msgstr "初期値にリセットする"
     308
     309msgid "Some parameters have not been updated due to errors (see below)!"
     310msgstr "いくつかの変数がエラーのために更新されていません(下記を参照)!"
     311
     312msgid "Parameters have been updated (but with some warnings)!"
     313msgstr "変数は更新されました(ただし、いくつかの警告が出ています)!"
     314
     315msgid "Parameters have been updated successfully!"
     316msgstr "変数の更新に成功しました!"
     317
     318msgid "Parameters have been reset to their default values!"
     319msgstr "変数は初期値にリセットされました!"
     320
     321msgid "Close popup"
     322msgstr "ポップアップ画面を閉じる"
     323
     324msgid "Here, you may configure three levels of translations: at the plugin level, at the framework level, and at the dashboard level."
     325msgstr "ここでは、翻訳の3段階を定義できます(プラグインの基準、フレームワークの基準、ダッシュボードの基準)"
     326
     327msgid "Please be informed that your current language is %s. Text will be translated if a translation is available."
     328msgstr "現在の言語は%sで案内されています。もし翻訳が利用可能ならばテキストは翻訳されます。"
     329
     330msgid "If you want to modify the language, please go in %s and find %s or %s. The second argument is your language and you may modify it as you want."
     331msgstr "もし、言語を変更したければ、%sに行き、%sか%sを見つけてください。次の課題はあなたの言語であり、必要であれば変更できます。"
     332
     333msgid "Translations available for this plugin (i.e. %s)"
     334msgstr "このプラグインで利用できる翻訳(例:%s)"
     335
     336msgid "Translations available for the SL framework (stored in %s)"
     337msgstr "SLフレームワークで利用できる翻訳文(%sに保管されている)"
     338
     339msgid "Adding a new translation for this language: %s"
     340msgstr "この言語:%sで新しい翻訳を追加する"
     341
     342msgid "Sentence to translate"
     343msgstr "翻訳すべき文章"
     344
     345msgid "Translation"
     346msgstr "翻訳"
     347
     348msgid "(if your name/pseudo is already in the list, there is no need to fill this input)"
     349msgstr "(お名前/仮名がすでに一覧にあるならば、この欄は空白でかまいません)"
     350
     351msgid "Your email or your website:"
     352msgstr "メールかウェブサイト"
     353
     354msgid "Create the translation files"
     355msgstr "翻訳ファイルを作成する"
     356
     357msgid "Add a new translation"
     358msgstr "新しい翻訳を追加する"
     359
     360msgid "Modifying the translation for this language: %s"
     361msgstr "この言語の翻訳を変更する:%s"
     362
     363msgid "The number of occurrence of %s does not match in both string. Please note that the string %s will be replaced with a contextual string."
     364msgstr "%sの発生回数は両方の文字列に一致しません。文字列%sは文脈で置き換えられることに注意してください。"
     365
     366msgid "Modify the translation files"
     367msgstr "翻訳ファイルを変更する"
     368
     369msgid "Modify translations"
     370msgstr "翻訳文を変更する"
     371
     372msgid "%s sentences have been translated (i.e. %s)."
     373msgstr "%s文章は翻訳されました(例:%s)"
     374
     375msgid "%s sentences have been translated (i.e. %s) %s %s sentences have to be checked because they are close (but not identical) to those to translate.%s"
     376msgstr "%sの文章が翻訳されました。(例:%s)%s %s 翻訳に近くなるように(しかし、一致でない)、%s文章はチェックされなければなりません。"
     377
     378msgid "The translation %s have been sent"
     379msgstr "%sの翻訳文が送られました。"
     380
     381msgid "Send translation"
     382msgstr "翻訳文を送る"
     383
     384msgid "%s file cannot be created for %s as there is no translated sentence. Please, translate at least one sentence to create a file"
     385msgstr "%sとして文章が翻訳されていないので%sファイルは作成できませんでした。どうぞ、最低一つ以上の文章を翻訳してください。"
     386
     387msgid "%s file has been updated for %s"
     388msgstr "%sファイルは%sとしてアップデートされました。"
     389
     390msgid "%s file has been updated from this file"
     391msgstr "%sファイルはこのファイルにより更新されました。"
     392
     393msgid "%s file has been created with a new translation for %s"
     394msgstr "%sファイルは%sの新しい翻訳で作成されました。"
     395
     396msgid "%s file has been created from this file"
     397msgstr "このファイルから%sファイルが作成されました。"
     398
     399msgid "If you do not want to loose your translations on the next upgrading of this plugin, it is recommended to send the translation files to the author by clicking %s here %s !"
     400msgstr "もし、このプラグインをアップグレードする時に翻訳を中途半端で終わらせたくないならば、%s ここで%sをクリックして作者に翻訳文を送ってください。"
     401
     402msgid "If you do not want to loose your translations on the next upgrading of this plugin, please save them on your hard disk before upgrading and then restore them after the upgrade !"
     403msgstr "もし、このプラグインをアップグレードする時に翻訳を中途半端で終わらせたくないならば、その翻訳文はアップグレード後まで自分のパソコンにしまっておいてください。"
     404
     405msgid "Confirmation"
     406msgstr "確認"
     407
     408msgid "Summary cached %s"
     409msgstr "一時保管された%sの要約"
     410
     411msgid "The sentences used in this plugin are in English. Help the others users using the same language as you by translating this plugin."
     412msgstr "このプラグインで使われている文章は英語です。このプラグインを翻訳することによって同じ言語の利用者を助けてあげてください。"
     413
     414msgid "This plugin is available in %s languages."
     415msgstr "このプラグインは%s言語で利用できます。"
     416
     417msgid "There are %s sentences to be translated in this plugin."
     418msgstr "このプラグインには翻訳された%s文章があります。"
     419
    383420msgid "Ratio %"
    384 msgstr ""
     421msgstr "比率%"
    385422
    386423msgid "Translators"
    387 msgstr ""
     424msgstr "翻訳者"
     425
     426msgid "This is the default language of the plugin. It cannot be modified."
     427msgstr "これは初期設定の言語です。変更できません。"
    388428
    389429msgid "Modify"
    390 msgstr ""
     430msgstr "変更"
     431
     432msgid "Send to the author of the plugin"
     433msgstr "プラグインの作者にメールを送る"
     434
     435msgid "You may add a new translation hereafter (Please note that it is recommended to send your translation to the author so that he would be able to add your translation to the future release of the plugin !)"
     436msgstr "あなたは今後新しい翻訳を追加してもよい(あなたの翻訳は、作者によって将来のプラグインのリリースで追加されることがあります。そのことにご注意ください!)"
     437
     438msgid "Add"
     439msgstr "追加"
     440
     441msgid "The 'SL framework' is a framework used for developping many plugins like this one. Thus, if you participate translating the framework, it will be very helpful for a bunch of plugins."
     442msgstr "SLフレームワークは、多くのこの類のプラグインの開発に使われているフレームワークです。だからあなたが翻訳に参加してくれると多くのプラグインにとって大変助かります。"
     443
     444msgid "There is %s languages supported for the 'SL framework'."
     445msgstr "SLフレームワークをサポートした%s言語があります。"
     446
     447msgid "There is %s sentence to be translated in the framework."
     448msgstr "フレームワークを翻訳した%s文章があります。"
    391449
    392450msgid "Send to the author of the framework"
    393 msgstr ""
    394 
    395 msgid "Send to the author of the plugin"
    396 msgstr ""
    397 
    398 msgid "Add a new translation"
    399 msgstr ""
    400 
    401 msgid "You may add a new translation hereafter (Please note that it is recommended to send your translation to the author so that he would be able to add your translation to the future release of the plugin !)"
    402 msgstr ""
    403 
    404 msgid "Add"
    405 msgstr ""
    406 
    407 msgid "Adding a new translation for this language: %s"
    408 msgstr ""
    409 
    410 msgid "Sentence to translate"
    411 msgstr ""
    412 
    413 msgid "Translation"
    414 msgstr ""
    415 
    416 msgid "(if your name/pseudo is already in the list, there is no need to fill this input)"
    417 msgstr ""
    418 
    419 msgid "Your email or your website:"
    420 msgstr ""
    421 
    422 msgid "Create the translation files"
    423 msgstr ""
    424 
    425 msgid "Modifying the translation for this language: %s"
    426 msgstr ""
    427 
    428 msgid "Modify the translation files"
    429 msgstr ""
    430 
    431 msgid "%s sentences have been translated (i.e. %s)."
    432 msgstr ""
    433 
    434 msgid "The translation %s have been sent"
    435 msgstr ""
    436 
    437 msgid "%s file has been updated for %s"
    438 msgstr ""
    439 
    440 msgid "%s file has been updated from this file"
    441 msgstr ""
    442 
    443 msgid "%s file has been created with a new translation for %s"
    444 msgstr ""
    445 
    446 msgid "%s file has been created from this file"
    447 msgstr ""
    448 
    449 msgid "Error: the submitted value is not an integer and thus, the parameter has not been updated!"
    450 msgstr ""
    451 
    452 msgid "Warning: some characters have been removed because they are not allowed here"
    453 msgstr ""
    454 
    455 msgid "Error: the submitted string does not match the constrains"
    456 msgstr ""
    457 
    458 msgid "Some parameters have not been updated due to errors (see below) !"
    459 msgstr ""
    460 
    461 msgid "Parameters have been updated (but with some warnings) !"
    462 msgstr ""
    463 
    464 msgid "Parameters have been updated successfully !"
    465 msgstr ""
    466 
    467 msgid "Close popup"
    468 msgstr ""
    469 
    470 msgid "Homepage:"
    471 msgstr ""
    472 
    473 msgid "The file %s cannot be created. Therefore, no svn script can be created. Please make the folder writable or visit %s to install a SubVersion package on your server."
    474 msgstr ""
    475 
    476 msgid "The folder %s does not exists and cannot be created. Therefore, no svn script can be created in that folder. Please create this folder (and make it writable) or visit %s to install a SubVersion package on your server."
    477 msgstr ""
    478 
    479 msgid "The operating system of your server is %s. No installation of SVN has been found. Please visit %s to install a SubVersion package on your server."
    480 msgstr ""
    481 
    482 msgid "The exec function is disabled on your installation. This function is mandatory to be able to use SVN."
    483 msgstr ""
    484 
    485 msgid "SVN command:"
    486 msgstr ""
    487 
    488 msgid "%s returns the following code: %s"
    489 msgstr ""
    490 
    491 msgid "Checkout has failed! Please retry ..."
    492 msgstr ""
    493 
    494 msgid "Indeed, it is known that the Checkout command have some difficulties to work. You may have to re-test several times (1-20 times) to finally succeed."
    495 msgstr ""
    496 
    497 msgid "Do not panic: once the checkout have worked one time, the update command will be used and it is far more robust!"
    498 msgstr ""
    499 
    500 msgid "NOTE: The command outputs the following information:"
    501 msgstr ""
    502 
    503 msgid "The checkout have begun but have been interrupted without any reason!"
    504 msgstr ""
    505 
    506 msgid "Update the local cache"
    507 msgstr ""
    508 
    509 msgid "Compare the local cache with the plugins files"
    510 msgstr ""
    511 
    512 msgid "Yes, the local version will be deleted and be replaced by the files stored on the SVN repository"
    513 msgstr ""
    514 
    515 msgid "Retry the SVN preparation!"
    516 msgstr ""
    517 
    518 msgid "Add a file: %s"
    519 msgstr ""
    520 
    521 msgid "Delete a file: %s"
    522 msgstr ""
    523 
    524 msgid "Final commit:"
    525 msgstr ""
    526 
    527 msgid "The commit has ended and you may restart a normal life by closing the window..."
    528 msgstr ""
    529 
    530 msgid "Thank you!"
    531 msgstr ""
    532 
    533 msgid "The overwrite has ended and you may restart a normal life by closing the window..."
    534 msgstr ""
    535 
    536 msgid "Your credentials do not seem to be correct. Please check them!"
    537 msgstr ""
    538 
    539 msgid "This file have not been written in the repository due to server problem. Nevertheless, you should retry as it often works better with a second try !"
    540 msgstr ""
    541 
     451msgstr "フレームワークの作者にメールを送る"
     452
     453msgid "KB"
     454msgstr "KB"
     455
     456msgid "MB"
     457msgstr "MB"
     458
     459msgid "GB"
     460msgstr "GB"
     461
  • links-synthesis/trunk/core/lang/SL_framework-nl_NL.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-06-12T14:26:27+00:00\n"
     7"PO-Revision-Date: 2016-02-23T08:28:05+00:00\n"
     8"Last-Translator: SedLex <http://www.sedlex.fr/>\n"
    89"Last-Translator: MarcelJansen <http://caddvision.org>\n"
    910"Last-Translator: Erik <www.digihulpdienst.nl>\n"
    1011"Last-Translator: Mark <http://www.pandoraz.com>\n"
    1112"Last-Translator: infotittenraus.com <http://tittenraus.com/http://AssTheBest.com/>\n"
     13"Last-Translator: Stefan <[email protected]>\n"
     14"Last-Translator: Tieneks <tieneks.us>\n"
    1215"Language-Team: \n"
    1316"MIME-Version: 1.0\n"
     
    3437
    3538msgid "Log options"
    36 msgstr "Log opties"
     39msgstr "Logopties"
    3740
    3841msgid "What is the debug level:"
    39 msgstr "Wat is het Debug niveau"
     42msgstr "Wat is het debugniveau"
    4043
    4144msgid "See the debug logs"
    42 msgstr "Kijk in de debug logs"
     45msgstr "Kijk in de debuglogs"
    4346
    4447msgid "1=log only the critical errors;"
     
    4649
    4750msgid "2=log only the critical errors and the standard errors;"
    48 msgstr "2=noteer alleen de kritische fouten en de standaard fouten;"
     51msgstr "2=noteer alleen de kritische fouten en de standaardfouten;"
    4952
    5053msgid "3=log only the critical errors, the standard errors and the warnings;"
    51 msgstr "3=noteer alleen de kritische fouten, standaard fouten en de waarschuwingen;"
     54msgstr "3=noteer alleen de kritische fouten, standaardfouten en de waarschuwingen;"
    5255
    5356msgid "4=log information;"
    54 msgstr "4=log informatie;"
     57msgstr "4=noteer informatie;"
    5558
    5659msgid "5=log verbose;"
    57 msgstr ""
     60msgstr "5=noteer uitgebreide informatie;"
    5861
    5962msgid "Multisite Management"
     
    6770
    6871msgid "Location of the SL plugins"
    69 msgstr "Lokatie van de SL Plugin"
     72msgstr "Lokatie van de SL-plugin"
    7073
    7174msgid "Where do you want to display the SL plugins:"
    72 msgstr "Waar moet de SL Plugin worden weergegeven:"
     75msgstr "Waar moet de SL-plugin worden weergegeven:"
    7376
    7477msgid "Summary page for the plugins developped with the SL framework"
     
    8285
    8386msgid "Plugin name"
    84 msgstr "Plugin naam"
     87msgstr "Pluginnaam"
    8588
    8689msgid "Description"
     
    8891
    8992msgid "There is a SQL database for this plugin"
    90 msgstr "Daar is de SQL database voor de plugin"
     93msgstr "Daar is de SQL-database voor de plugin"
    9194
    9295msgid "Version: %s by %s"
     
    9497
    9598msgid "List of SL plugins"
    96 msgstr "Lijst met de SL plugins"
     99msgstr "Lijst met de SL-plugins"
    97100
    98101msgid "Parameters of the framework"
     
    151154
    152155msgid "Feedback form"
    153 msgstr "Antwoord formulier"
     156msgstr "Antwoordformulier"
    154157
    155158msgid "This form is an easy way to contact the author and to discuss issues/incompatibilities/etc. with him"
     
    160163
    161164msgid "Your name:"
    162 msgstr "Jouw naam:"
     165msgstr "Je naam:"
    163166
    164167msgid "Your email:"
    165 msgstr "Jouw e-mail:"
     168msgstr "Je e-mail:"
    166169
    167170msgid "Useful... so that the author will be able to anwser you."
    168 msgstr "Handig zo dat de auteur jouw vragen kan beantwoorden."
     171msgstr "Handig zo dat de auteur je vragen kan beantwoorden."
    169172
    170173msgid "Your comments:"
    171 msgstr "Uw commentaar:"
     174msgstr "Je commentaar:"
    172175
    173176msgid "Please note that additional information on your wordpress installation will be sent to the author in order to help the debugging if needed (such as : the wordpress version, the installed plugins, etc.)"
    174 msgstr "Houdt u er rekening mee dat er bepaalde informatie van uw WordPress-installatie naar de auteur wordt gestuurd om het debuggen te helpen als dat nodig is (zoals: de wordpress versie, de geïnstalleerde plugins, etc.)"
     177msgstr "Houd er rekening mee dat er bepaalde informatie van je WordPress-installatie naar de maker wordt gestuurd om het debuggen te helpen als dat nodig is (zoals: de wordpress versie, de geïnstalleerde plugins, etc.)"
    175178
    176179msgid "Send feedback"
     
    178181
    179182msgid "No email have been provided for the author of this plugin. Therefore, the feedback is impossible"
    180 msgstr "U heeft geen e-mail ingevuld hierdoor kan de auteur geen contact met u opnemen."
     183msgstr "Je hebt geen e-mail ingevuld hierdoor kan de auteur geen contact met je opnemen."
    181184
    182185msgid "The feedback has been sent"
     
    184187
    185188msgid "An error occured sending the email."
    186 msgstr "Er heeft zich een probleem voor gedaan bij het versturen van u e-mail."
     189msgstr "Er heeft zich een probleem voor gedaan bij het versturen van je e-mail."
    187190
    188191msgid "Make sure that your wordpress is able to send email."
    189 msgstr "Zorg dat u Wordpress site geconfigureerd is om e-mails te verzenden."
     192msgstr "Zorg dat je Wordpress-site geconfigureerd is om e-mails te verzenden."
    190193
    191194msgid "Plugins that you may install"
    192 msgstr "Plugins die u kunt installeren."
     195msgstr "Plugins die je kan installeren."
    193196
    194197msgid "The following plugins have been developed by the author and are not yet been installed:"
    195 msgstr "De volgende plugin is ontwikkeld door de auteur maar is nog niet geinstalleerd:"
     198msgstr "De volgende plugin is ontwikkeld door de auteur maar is nog niet geïnstalleerd:"
    196199
    197200msgid "Plugin not yet installed"
     
    202205
    203206msgid "All author's plugins have been installed. Thank you!"
    204 msgstr "Alle plugins van de auteur zijn geinstalleerd. Dank u!"
     207msgstr "Alle plugins van de auteur zijn geïnstalleerd. Dank je!"
    205208
    206209msgid "Installed plugins"
     
    208211
    209212msgid "You have already installed the following author's plugins:"
    210 msgstr "U heeft de volgende plugins al geinstalleerd:"
     213msgstr "Je hebt de volgende plugins al geïnstalleerd:"
    211214
    212215msgid "Plugin already installed"
     
    214217
    215218msgid "The Wordpress page: %s"
    216 msgstr "De Wordpress pagina: %s"
     219msgstr "De Wordpress-pagina: %s"
    217220
    218221msgid "An Unexpected HTTP Error occurred during the API request."
    219 msgstr "Een nog onbekende HTTP fout geconstateerd tijdens de API aanvraag."
     222msgstr "Een nog onbekende HTTP-fout geconstateerd tijdens de API-aanvraag."
    220223
    221224msgid "Last update:"
     
    235238
    236239msgid "Error: the submitted value is not an integer and thus, the parameter has not been updated!"
    237 msgstr "Fout: de verzonden waarde is niet voledig daardoor is de parameter niet geupdate!"
     240msgstr "Fout: de verzonden waarde is niet volledig daardoor is de parameter niet geüpdatet!"
    238241
    239242msgid "Error: the submitted string does not match the constrains"
     
    241244
    242245msgid "Error: the submitted file can not be uploaded!"
    243 msgstr "Fout: Bestand kon niet worden geupload!"
     246msgstr "Fout: Bestand kon niet worden geüpload!"
    244247
    245248msgid "Error: security issue!"
    246 msgstr "Fout: veiligheids probleem!"
     249msgstr "Fout: veiligheidsprobleem!"
    247250
    248251msgid "Parameters"
     
    256259
    257260msgid "(Delete)"
    258 msgstr "(Gewist)"
     261msgstr "(Wissen)"
    259262
    260263msgid "Values"
     
    271274
    272275msgid "The URL is not a media file."
    273 msgstr "De URk is geen mediabestand."
     276msgstr "De URL is geen mediabestand."
    274277
    275278msgid "Choose a media"
    276 msgstr "Kies een Bestand"
     279msgstr "Kies een bestand"
    277280
    278281msgid "(If you want to delete this file, please check this box %s)"
    279 msgstr "(selecteer hier %s als je dit bestand wilt verwijderen)"
     282msgstr "(selecteer hier %s als je dit bestand wil verwijderen)"
    280283
    281284msgid "Update"
     
    283286
    284287msgid "Reset to default values"
    285 msgstr "Herstel naar standaard waardes"
     288msgstr "Herstel naar standaardwaardes"
    286289
    287290msgid "Some parameters have not been updated due to errors (see below)!"
     
    298301
    299302msgid "Close popup"
    300 msgstr "Sluit Popup"
     303msgstr "Sluit popup"
    301304
    302305msgid "Here, you may configure three levels of translations: at the plugin level, at the framework level, and at the dashboard level."
    303 msgstr "Hier, kunt u drie niveaus van de vertaling configureren: dashboard niveau,plugin niveau,kader niveau."
     306msgstr "Hier, kan je drie niveaus van de vertaling configureren: dashboardniveau, pluginniveau, kaderniveau."
    304307
    305308msgid "Please be informed that your current language is %s. Text will be translated if a translation is available."
    306 msgstr "Let op uw huidige taal is %s.Tekst wordt pas vertaald als een vertaling beschikbaar is."
     309msgstr "Let op je huidige taal is %s.Tekst wordt pas vertaald als een vertaling beschikbaar is."
    307310
    308311msgid "If you want to modify the language, please go in %s and find %s or %s. The second argument is your language and you may modify it as you want."
    309 msgstr "Als u de taal wilt wijzigen, ga dan naar %s  en vind %s  of %s . Het tweede argument is uw taal en u kunt het aanpassen als je wilt."
     312msgstr "Als je de taal wil wijzigen, ga dan naar %s  en vind %s  of %s . Het tweede argument is de taal en kan je het aanpassen als je wil."
    310313
    311314msgid "Translations available for this plugin (i.e. %s)"
     
    313316
    314317msgid "Translations available for the SL framework (stored in %s)"
    315 msgstr "Vertalingen beschikbaar voor de SL kader(opgeslagen in %s)"
     318msgstr "Vertalingen beschikbaar voor de SL-kader(opgeslagen in %s)"
    316319
    317320msgid "Adding a new translation for this language: %s"
     
    328331
    329332msgid "Your email or your website:"
    330 msgstr "Jouw email of jouw website"
     333msgstr "Je e-mail of je website"
    331334
    332335msgid "Create the translation files"
    333 msgstr "Creer de vertallings bestanden"
     336msgstr "Maak de vertalingsbestanden aan"
    334337
    335338msgid "Add a new translation"
     
    343346
    344347msgid "Modify the translation files"
    345 msgstr "De vertalings bestand aanpassen"
     348msgstr "De vertalingsbestand aanpassen"
    346349
    347350msgid "Modify translations"
     
    376379
    377380msgid "If you do not want to loose your translations on the next upgrading of this plugin, it is recommended to send the translation files to the author by clicking %s here %s !"
    378 msgstr "Als u niet wilt dat uw vertalingen verdwijnt met volgende opwaardering van deze plugin, is het raadzaam om het vertalings bestand naar de auteur te sturen door hier te klikken %s  of hier %s !"
     381msgstr "Als je niet wil dat je vertalingen verdwijnen met volgende update van deze plugin, is het raadzaam om het vertalingsbestand naar de maker te sturen door %s  hier te klikken %s !"
    379382
    380383msgid "If you do not want to loose your translations on the next upgrading of this plugin, please save them on your hard disk before upgrading and then restore them after the upgrade !"
    381 msgstr "Als u niet wilt dat uw vertalingen verdwijnt de volgende opwaardering van deze plugin, gelieve deze op te slaan op uw harde schijf voordat u een upgrade installeerd"
     384msgstr ""
    382385
    383386msgid "Confirmation"
    384 msgstr "Bevestigd"
     387msgstr "Bevestiging"
    385388
    386389msgid "Summary cached %s"
     
    388391
    389392msgid "The sentences used in this plugin are in English. Help the others users using the same language as you by translating this plugin."
    390 msgstr "De zinnen die in deze plugin zijn in het Engels. De anderen helpen gebruikers met behulp van dezelfde taal als u door het vertalen van deze plugin."
     393msgstr "De standaardtaal is Engels. Help andere gebruikers door deze plugin te vertalen naar je eigen taal."
    391394
    392395msgid "This plugin is available in %s languages."
     
    406409
    407410msgid "This is the default language of the plugin. It cannot be modified."
    408 msgstr "Dit is de standaard taalinstelling van de plugin. Deze kan niet worden veranderd."
     411msgstr "Dit is de standaardtaalinstelling van de plugin. Deze kan niet worden veranderd."
    409412
    410413msgid "Modify"
     
    412415
    413416msgid "Send to the author of the plugin"
    414 msgstr "Stuur naar de auteur van de plugin"
     417msgstr "Stuur naar de maker van de plugin"
    415418
    416419msgid "You may add a new translation hereafter (Please note that it is recommended to send your translation to the author so that he would be able to add your translation to the future release of the plugin !)"
    417 msgstr "U kunt een nieuwe vertaling hiernamaals toe te voegen (Let op: het is aan te raden om uw vertaling te sturen aan de auteur, zodat hij in staat om uw vertaling toe te voegen aan de toekomstige versie van de plugin zou zijn!)"
     420msgstr "Je kan een nieuwe vertaling hiernamaals toe te voegen (Let op: het is aan te raden om je vertaling te sturen aan de maker, zodat hij in staat om je vertaling toe te voegen aan de toekomstige versie van de plugin zou zijn!)"
    418421
    419422msgid "Add"
     
    421424
    422425msgid "The 'SL framework' is a framework used for developping many plugins like this one. Thus, if you participate translating the framework, it will be very helpful for a bunch of plugins."
    423 msgstr "De &#039;SL framework&#039; is een raamwerk gebruikt voor het ontwikkelen van vele plugins zoals deze. Dus, als u zou willen deelnemen in het vertalen van het kader, zal het zeer nuttig zijn voor een heleboel plugins."
     426msgstr "Het &#039;SL-framework&#039; is een framework gebruikt voor het ontwikkelen van vele plugins zoals deze. Dus, als je zou willen deelnemen in het vertalen van het framework, zal het zeer nuttig zijn voor een heleboel plugins."
    424427
    425428msgid "There is %s languages supported for the 'SL framework'."
    426 msgstr "Er zijn %s talen ondersteund voor de &#039;SL kader&#039;."
     429msgstr "Er zijn %s talen ondersteund voor de &#039;SL-framework&#039;."
    427430
    428431msgid "There is %s sentence to be translated in the framework."
    429 msgstr "Er zijn %s zinnen te vertalen in het kader."
     432msgstr "Er zijn %s zinnen te vertalen in het framework."
    430433
    431434msgid "Send to the author of the framework"
    432 msgstr "Verzenden aan de auteur van het kader"
     435msgstr "Verzenden aan de maker van het framework"
    433436
    434437msgid "KB"
    435 msgstr "kB"
     438msgstr "KB"
    436439
    437440msgid "MB"
  • links-synthesis/trunk/core/lang/SL_framework-pt_BR.po

    r1057976 r1398088  
    55"Report-Msgid-Bugs-To: \n"
    66"POT-Creation-Date: \n"
    7 "PO-Revision-Date: 2014-06-17T07:09:16+00:00\n"
     7"PO-Revision-Date: 2015-12-22T21:28:27+00:00\n"
    88"Last-Translator: willianrodrigues <http://www.willianrodrigues.com.br>\n"
    99"Last-Translator: IuriJacob <http://www.bytecodex.com>\n"
     
    1111"Last-Translator: AlbertAbrantes <http://www.maxcreative.ca>\n"
    1212"Last-Translator: Vanderson <[email protected]>\n"
     13"Last-Translator: GustavoBretas <newts3.com>\n"
    1314"Language-Team: \n"
    1415"MIME-Version: 1.0\n"
     
    286287msgstr "Tradutore"
    287288
     289msgid "Where do you want to display the SL plugins:"
     290msgstr "Onde deseja ver o SL Plugin:"
     291
     292msgid "For now, you have installed %s plugins including %s plugins developped with the SedLex's framework"
     293msgstr "Para agora, você tem instalado %s plugins, incluindo %s desenvolvido com o SL"
     294
     295msgid "The core plugin is located at %s"
     296msgstr "O plugin está localizado em %s"
     297
     298msgid "Standard"
     299msgstr "Comun"
     300
     301msgid "under Plugins"
     302msgstr "Plugins Abaixo"
     303
  • links-synthesis/trunk/core/lang/SL_framework.pot

    r1057976 r1398088  
    11Content-Transfer-Encoding: 8bit
    22
    3 #: core.class.php:519
    4 #: core.class.php:519
    5 #: core.class.php:521
    6 #: core.class.php:521
    7 #: core.class.php:523
    8 #: core.class.php:523
     3#: core.class.php:571
     4#: core.class.php:571
     5#: core.class.php:573
     6#: core.class.php:573
     7#: core.class.php:575
     8#: core.class.php:575
    99#@ SL_framework
    1010msgid "About SL plugins..."
    1111msgstr ""
    1212
    13 #: core.class.php:527
    14 #: core.class.php:527
     13#: core.class.php:579
     14#: core.class.php:579
    1515#@ SL_framework
    1616msgid "About..."
    1717msgstr ""
    1818
    19 #: core.class.php:580
    20 #: core.class.php:602
    21 #: core.class.php:1347
     19#: core.class.php:644
     20#: core.class.php:666
     21#: core.class.php:1427
    2222#@ SL_framework
    2323msgid "Settings"
    2424msgstr ""
    2525
    26 #: core.class.php:1271
     26#: core.class.php:1351
    2727#@ SL_framework
    2828msgid "Log options"
    2929msgstr ""
    3030
    31 #: core.class.php:1272
     31#: core.class.php:1352
    3232#@ SL_framework
    3333msgid "What is the debug level:"
    3434msgstr ""
    3535
    36 #: core.class.php:1273
     36#: core.class.php:1353
    3737#@ SL_framework
    3838msgid "See the debug logs"
    3939msgstr ""
    4040
    41 #: core.class.php:1274
     41#: core.class.php:1354
    4242#@ SL_framework
    4343msgid "1=log only the critical errors;"
    4444msgstr ""
    4545
    46 #: core.class.php:1275
     46#: core.class.php:1355
    4747#@ SL_framework
    4848msgid "2=log only the critical errors and the standard errors;"
    4949msgstr ""
    5050
    51 #: core.class.php:1276
     51#: core.class.php:1356
    5252#@ SL_framework
    5353msgid "3=log only the critical errors, the standard errors and the warnings;"
    5454msgstr ""
    5555
    56 #: core.class.php:1277
     56#: core.class.php:1357
    5757#@ SL_framework
    5858msgid "4=log information;"
    5959msgstr ""
    6060
    61 #: core.class.php:1278
     61#: core.class.php:1358
    6262#@ SL_framework
    6363msgid "5=log verbose;"
    6464msgstr ""
    6565
    66 #: core.class.php:1281
     66#: core.class.php:1361
    6767#@ SL_framework
    6868msgid "Multisite Management"
    6969msgstr ""
    7070
    71 #: core.class.php:1282
     71#: core.class.php:1362
    7272#@ SL_framework
    7373msgid "Do you want to allow sub-blogs to modify the translations of the plugins:"
    7474msgstr ""
    7575
    76 #: core.class.php:1283
     76#: core.class.php:1363
    7777#@ SL_framework
    7878msgid "If this option is unchecked, the translation tab won't be displayed in the blog administration panel."
    7979msgstr ""
    8080
    81 #: core.class.php:1286
     81#: core.class.php:1366
    8282#@ SL_framework
    8383msgid "Location of the SL plugins"
    8484msgstr ""
    8585
    86 #: core.class.php:1287
     86#: core.class.php:1367
    8787#@ SL_framework
    8888msgid "Where do you want to display the SL plugins:"
    8989msgstr ""
    9090
    91 #: core.class.php:1299
     91#: core.class.php:1379
    9292#@ SL_framework
    9393msgid "Summary page for the plugins developped with the SL framework"
    9494msgstr ""
    9595
    96 #: core.class.php:1319
     96#: core.class.php:1399
    9797#@ SL_framework
    9898msgid "For now, you have installed %s plugins including %s plugins developped with the SedLex's framework"
    9999msgstr ""
    100100
    101 #: core.class.php:1320
     101#: core.class.php:1400
    102102#@ SL_framework
    103103msgid "The core plugin is located at %s"
    104104msgstr ""
    105105
    106 #: core.class.php:1331
     106#: core.class.php:1411
    107107#@ SL_framework
    108108msgid "Plugin name"
    109109msgstr ""
    110110
    111 #: core.class.php:1331
     111#: core.class.php:1411
    112112#@ SL_framework
    113113msgid "Description"
    114114msgstr ""
    115115
    116 #: core.class.php:1355
     116#: core.class.php:1435
    117117#@ SL_framework
    118118msgid "There is a SQL database for this plugin"
    119119msgstr ""
    120120
    121 #: core.class.php:1359
     121#: core.class.php:1439
    122122#@ SL_framework
    123123msgid "Version: %s by %s"
    124124msgstr ""
    125125
    126 #: core.class.php:1367
     126#: core.class.php:1447
    127127#@ SL_framework
    128128msgid "List of SL plugins"
    129129msgstr ""
    130130
    131 #: core.class.php:1376
     131#: core.class.php:1456
    132132#@ SL_framework
    133133msgid "Parameters of the framework"
    134134msgstr ""
    135135
    136 #: core.class.php:1390
     136#: core.class.php:1470
    137137#@ SL_framework
    138138msgid "Manage translation of the framework"
    139139msgstr ""
    140140
    141 #: core.class.php:1527
     141#: core.class.php:1607
    142142#@ SL_framework
    143143msgid "The folder %s is not %s !"
    144144msgstr ""
    145145
    146 #: core.class.php:1529
     146#: core.class.php:1609
    147147#@ SL_framework
    148148msgid "The file %s is not %s !"
    149149msgstr ""
    150150
    151 #: core.class.php:1536
    152 #: core.class.php:1543
     151#: core.class.php:1616
     152#: core.class.php:1623
    153153#@ SL_framework
    154154msgid "The folder %s does not exists and cannot be created !"
    155155msgstr ""
    156156
    157 #: core.class.php:1548
     157#: core.class.php:1628
    158158#@ SL_framework
    159159msgid "The file %s does not exists and cannot be created !"
    160160msgstr ""
    161161
    162 #: core.class.php:1555
     162#: core.class.php:1635
    163163#@ SL_framework
    164164msgid "There are some issues with folders rights. Please corret them as soon as possible as they could induce bugs and instabilities."
    165165msgstr ""
    166166
    167 #: core.class.php:1555
     167#: core.class.php:1635
    168168#@ SL_framework
    169169msgid "Please see below:"
    170170msgstr ""
    171171
    172 #: core.class.php:1648
     172#: core.class.php:1728
    173173#@ SL_framework
    174174msgid "Standard"
    175175msgstr ""
    176176
    177 #: core.class.php:1649
     177#: core.class.php:1729
    178178#@ SL_framework
    179179msgid "under Plugins"
    180180msgstr ""
    181181
    182 #: core.class.php:1650
     182#: core.class.php:1730
    183183#@ SL_framework
    184184msgid "under Tools"
    185185msgstr ""
    186186
    187 #: core.class.php:1651
     187#: core.class.php:1731
    188188#@ SL_framework
    189189msgid "under Settings"
  • links-synthesis/trunk/core/parameters.class.php

    r1057976 r1398088  
    832832                   
    833833                    if ($type=="page") {
    834                         $cl = "<p class='paramLine'><label for='".$param."'>".$name."</label></p>".$ew ;
     834                        $cl = "<p class='paramLine'><label for='".$param."'>".$name."</label></p>";
    835835                        // We check if there is a comment just after it
    836836                        while (isset($this->buffer[$iii+1])) {
  • links-synthesis/trunk/core/templates/my-plugin.php

    r1072901 r1398088  
    3636        $this->pluginName = 'My Plugin' ;
    3737       
     38        // Name of the upper level of menu (Please modify, ex. "Your upper menu")
     39        $this->upper_level_menu = '' ;
     40
    3841        // The structure of the SQL table if needed (for instance, 'id_post mediumint(9) NOT NULL, short_url TEXT DEFAULT '', UNIQUE KEY id_post (id_post)')
    3942        $this->tableSQL = "" ;
     43        // If you want a plurality of table
     44        //$this->tableSQL = array() ;
     45        //$this->tableSQL[] = "" ;
     46        //$this->tableSQL[] = "" ;
     47       
    4048        // The name of the SQL table (Do no modify except if you know what you do)
    4149        $this->table_name = $wpdb->prefix . "pluginSL_" . get_class() ;
     50        // If you want a plurality of table
     51        //$this->table_name = array() ;
     52        //$this->table_name[] = $wpdb->prefix . "pluginSL_" . "table1" ;
     53        //$this->table_name[] = $wpdb->prefix . "pluginSL_" . "table2" ;
    4254
    4355        //Initilisation of plugin variables if needed (Please modify)
     
    243255    *   - string beggining with a '*', the input form will be a textarea
    244256    *   - boolean, the input form will be a checkbox
     257    *   - array, the input form will be a list, the entry beginning with a * will be the default one
     258    *   - "[file]", an upload of file may be possible (prefer the media tag)
     259    *   - "[password]" the entry will be a password field
     260    *   - "[media]" you can select a media in the media library
     261    *   - "[page]" you may selected a page
    245262    *
    246263    * @param string $option the name of the option
  • links-synthesis/trunk/lang/links_synthesis.pot

    r1084989 r1398088  
    11Content-Transfer-Encoding: 8bit
    22
    3 #: links-synthesis.php:794
     3#: links-synthesis.php:796
    44#@ links_synthesis
    55msgid "title"
    66msgstr ""
    77
    8 #: links-synthesis.php:955
     8#: links-synthesis.php:957
    99#@ links_synthesis
    1010msgid "Force analysis"
    1111msgstr ""
    1212
    13 #: links-synthesis.php:957
     13#: links-synthesis.php:959
    1414#@ links_synthesis
    1515msgid "Stop analysis"
    1616msgstr ""
    1717
    18 #: links-synthesis.php:961
     18#: links-synthesis.php:963
    1919#@ links_synthesis
    2020msgid "Links with Errors"
    2121msgstr ""
    2222
    23 #: links-synthesis.php:970
     23#: links-synthesis.php:972
    2424#@ links_synthesis
    2525msgid "Filter links based on Custom rule"
    2626msgstr ""
    2727
    28 #: links-synthesis.php:987
     28#: links-synthesis.php:989
    2929#@ links_synthesis
    3030msgid "Links which match regex %s"
    3131msgstr ""
    3232
    33 #: links-synthesis.php:989
     33#: links-synthesis.php:991
    3434#@ links_synthesis
    3535msgid "Filter results based on regexp"
    3636msgstr ""
    3737
    38 #: links-synthesis.php:994
    39 #: links-synthesis.php:1162
    40 #: links-synthesis.php:1557
     38#: links-synthesis.php:996
     39#: links-synthesis.php:1164
     40#: links-synthesis.php:1559
    4141#@ links_synthesis
    4242msgid "URL"
    4343msgstr ""
    4444
    45 #: links-synthesis.php:994
    46 #: links-synthesis.php:1162
    47 #: links-synthesis.php:1557
     45#: links-synthesis.php:996
     46#: links-synthesis.php:1164
     47#: links-synthesis.php:1559
    4848#@ links_synthesis
    4949msgid "Posts/Articles"
    5050msgstr ""
    5151
    52 #: links-synthesis.php:994
    53 #: links-synthesis.php:1557
     52#: links-synthesis.php:996
     53#: links-synthesis.php:1559
    5454#@ links_synthesis
    5555msgid "Status"
    5656msgstr ""
    5757
    58 #: links-synthesis.php:994
    59 #: links-synthesis.php:1162
     58#: links-synthesis.php:996
     59#: links-synthesis.php:1164
    6060#@ links_synthesis
    6161msgid "Keywords"
    62 msgstr ""
    63 
    64 #: links-synthesis.php:1057
    65 #: links-synthesis.php:1213
    66 #: links-synthesis.php:1589
    67 #@ links_synthesis
    68 msgid "(Missing page)"
    6962msgstr ""
    7063
     
    7366#: links-synthesis.php:1591
    7467#@ links_synthesis
     68msgid "(Missing page)"
     69msgstr ""
     70
     71#: links-synthesis.php:1061
     72#: links-synthesis.php:1217
     73#: links-synthesis.php:1593
     74#@ links_synthesis
    7575msgid "%s in page %s (%s occurrences)"
    7676msgstr ""
    7777
    78 #: links-synthesis.php:1059
    79 #: links-synthesis.php:1215
    80 #: links-synthesis.php:1591
     78#: links-synthesis.php:1061
     79#: links-synthesis.php:1217
     80#: links-synthesis.php:1593
    8181#@ links_synthesis
    8282msgid "Edit"
    8383msgstr ""
    8484
    85 #: links-synthesis.php:1091
    86 #: links-synthesis.php:1100
    87 #: links-synthesis.php:1246
    88 #: links-synthesis.php:1255
    89 #: links-synthesis.php:1621
    90 #: links-synthesis.php:1630
     85#: links-synthesis.php:1093
     86#: links-synthesis.php:1102
     87#: links-synthesis.php:1248
     88#: links-synthesis.php:1257
     89#: links-synthesis.php:1623
     90#: links-synthesis.php:1632
    9191#@ links_synthesis
    9292msgid "Thumbnail generated by %s"
    9393msgstr ""
    9494
    95 #: links-synthesis.php:1094
     95#: links-synthesis.php:1096
     96#: links-synthesis.php:1108
     97#: links-synthesis.php:1251
     98#: links-synthesis.php:1263
     99#: links-synthesis.php:1626
     100#: links-synthesis.php:1638
     101#@ links_synthesis
     102msgid "Thumbnail not yet generated by %s"
     103msgstr ""
     104
    96105#: links-synthesis.php:1106
    97 #: links-synthesis.php:1249
    98106#: links-synthesis.php:1261
    99 #: links-synthesis.php:1624
    100107#: links-synthesis.php:1636
    101108#@ links_synthesis
    102 msgid "Thumbnail not yet generated by %s"
    103 msgstr ""
    104 
    105 #: links-synthesis.php:1104
    106 #: links-synthesis.php:1259
    107 #: links-synthesis.php:1634
    108 #@ links_synthesis
    109109msgid "%s have generated an error while trying to generate the thumbnail: %s"
    110110msgstr ""
    111111
    112 #: links-synthesis.php:1112
    113 #: links-synthesis.php:1642
     112#: links-synthesis.php:1114
     113#: links-synthesis.php:1644
    114114#@ links_synthesis
    115115msgid "Recheck"
    116 msgstr ""
    117 
    118 #: links-synthesis.php:1120
    119 #: links-synthesis.php:1653
    120 #@ links_synthesis
    121 msgid "Last check: less than one day ago."
    122116msgstr ""
    123117
     
    125119#: links-synthesis.php:1655
    126120#@ links_synthesis
    127 msgid "Last check: one day ago."
     121msgid "Last check: less than one day ago."
    128122msgstr ""
    129123
     
    131125#: links-synthesis.php:1657
    132126#@ links_synthesis
     127msgid "Last check: one day ago."
     128msgstr ""
     129
     130#: links-synthesis.php:1126
     131#: links-synthesis.php:1659
     132#@ links_synthesis
    133133msgid "Last check: %s days ago."
    134134msgstr ""
    135135
    136 #: links-synthesis.php:1131
    137 #: links-synthesis.php:1664
     136#: links-synthesis.php:1133
     137#: links-synthesis.php:1666
    138138#@ links_synthesis
    139139msgid "Redirection URL: %s."
    140 msgstr ""
    141 
    142 #: links-synthesis.php:1139
    143 #: links-synthesis.php:1672
    144 #@ links_synthesis
    145 msgid "First failure: less than one day ago."
    146140msgstr ""
    147141
     
    149143#: links-synthesis.php:1674
    150144#@ links_synthesis
    151 msgid "First failure: one day ago."
     145msgid "First failure: less than one day ago."
    152146msgstr ""
    153147
     
    155149#: links-synthesis.php:1676
    156150#@ links_synthesis
     151msgid "First failure: one day ago."
     152msgstr ""
     153
     154#: links-synthesis.php:1145
     155#: links-synthesis.php:1678
     156#@ links_synthesis
    157157msgid "First failure: %s days ago."
    158158msgstr ""
    159159
    160 #: links-synthesis.php:1148
    161 #: links-synthesis.php:1681
     160#: links-synthesis.php:1150
     161#: links-synthesis.php:1683
    162162#@ links_synthesis
    163163msgid "Change to the redirected URL"
    164164msgstr ""
    165165
    166 #: links-synthesis.php:1150
    167 #: links-synthesis.php:1270
     166#: links-synthesis.php:1152
     167#: links-synthesis.php:1272
    168168#@ links_synthesis
    169169msgid "See more keywords..."
    170170msgstr ""
    171171
    172 #: links-synthesis.php:1150
    173 #: links-synthesis.php:1270
     172#: links-synthesis.php:1152
     173#: links-synthesis.php:1272
    174174#@ links_synthesis
    175175msgid "Hide keywords..."
    176176msgstr ""
    177177
    178 #: links-synthesis.php:1156
     178#: links-synthesis.php:1158
    179179#@ links_synthesis
    180180msgid "All links"
    181181msgstr ""
    182182
    183 #: links-synthesis.php:1267
     183#: links-synthesis.php:1269
    184184#@ links_synthesis
    185185msgid "Do not Ignore"
    186186msgstr ""
    187187
    188 #: links-synthesis.php:1275
     188#: links-synthesis.php:1277
    189189#@ links_synthesis
    190190msgid "Ignored Links"
    191191msgstr ""
    192192
    193 #: links-synthesis.php:1280
     193#: links-synthesis.php:1282
    194194#@ links_synthesis
    195195msgid "This plugin allows the supervision of all external links."
    196196msgstr ""
    197197
    198 #: links-synthesis.php:1281
     198#: links-synthesis.php:1283
    199199#@ links_synthesis
    200200msgid "It checks that no dead links exists and no redirection have been set up externally."
    201201msgstr ""
    202202
    203 #: links-synthesis.php:1282
     203#: links-synthesis.php:1284
    204204#@ links_synthesis
    205205msgid "Purpose of that plugin"
    206206msgstr ""
    207207
    208 #: links-synthesis.php:1284
     208#: links-synthesis.php:1286
    209209#@ links_synthesis
    210210msgid "An index of all links in the page/post may be created at the end of the page/post if you want."
    211211msgstr ""
    212212
    213 #: links-synthesis.php:1285
     213#: links-synthesis.php:1287
    214214#@ links_synthesis
    215215msgid "Summary of external links"
    216216msgstr ""
    217217
    218 #: links-synthesis.php:1287
     218#: links-synthesis.php:1289
    219219#@ links_synthesis
    220220msgid "You may also create a thumbnail of the URL to be displayed when the mouse if over the link."
    221221msgstr ""
    222222
    223 #: links-synthesis.php:1288
     223#: links-synthesis.php:1290
    224224#@ links_synthesis
    225225msgid "To create thumbnail, you may use:"
    226226msgstr ""
    227227
    228 #: links-synthesis.php:1290
     228#: links-synthesis.php:1292
    229229#@ links_synthesis
    230230msgid "%s service:"
    231231msgstr ""
    232232
    233 #: links-synthesis.php:1292
     233#: links-synthesis.php:1294
    234234#@ links_synthesis
    235235msgid "You have to create an account on the %s website;"
    236236msgstr ""
    237237
    238 #: links-synthesis.php:1293
     238#: links-synthesis.php:1295
    239239#@ links_synthesis
    240240msgid "Please be aware that the number of thumbnails created may be restricted. The size of the thumbnail cannot be adapted"
    241241msgstr ""
    242242
    243 #: links-synthesis.php:1295
     243#: links-synthesis.php:1297
    244244#@ links_synthesis
    245245msgid "%s local service:"
    246246msgstr ""
    247247
    248 #: links-synthesis.php:1297
     248#: links-synthesis.php:1299
    249249#@ links_synthesis
    250250msgid "You have to download the %s binary at %s;"
    251251msgstr ""
    252252
    253 #: links-synthesis.php:1298
     253#: links-synthesis.php:1300
    254254#@ links_synthesis
    255255msgid "This option is only available on Linux server (Windows server are not supported yet)."
    256256msgstr ""
    257257
    258 #: links-synthesis.php:1301
     258#: links-synthesis.php:1303
    259259#@ links_synthesis
    260260msgid "Thumbnails"
    261261msgstr ""
    262262
    263 #: links-synthesis.php:1306
     263#: links-synthesis.php:1308
    264264#@ links_synthesis
    265265msgid "How To"
    266266msgstr ""
    267267
    268 #: links-synthesis.php:1311
     268#: links-synthesis.php:1313
    269269#@ links_synthesis
    270270msgid "Create an index of all links"
    271271msgstr ""
    272272
    273 #: links-synthesis.php:1312
     273#: links-synthesis.php:1314
    274274#@ links_synthesis
    275275msgid "Display the index at the bottom of the page/post:"
    276276msgstr ""
    277277
    278 #: links-synthesis.php:1313
     278#: links-synthesis.php:1315
    279279#@ links_synthesis
    280280msgid "Deactivating this option may be useful for a fresh install of the plugin. Thus, information on links may be retrieved and the display will be cleaner."
    281281msgstr ""
    282282
    283 #: links-synthesis.php:1314
     283#: links-synthesis.php:1316
    284284#@ links_synthesis
    285285msgid "Display the index when the user is authenticated:"
    286286msgstr ""
    287287
    288 #: links-synthesis.php:1315
     288#: links-synthesis.php:1317
    289289#@ links_synthesis
    290290msgid "This option is useful when you want to see and prepare the display of the plugin, without showing it to the public."
    291291msgstr ""
    292292
    293 #: links-synthesis.php:1316
     293#: links-synthesis.php:1318
    294294#@ links_synthesis
    295295msgid "Display only external links (i.e. to external websites):"
    296296msgstr ""
    297297
    298 #: links-synthesis.php:1317
     298#: links-synthesis.php:1319
    299299#@ links_synthesis
    300300msgid "Display this synthesis in excerpt:"
    301301msgstr ""
    302302
    303 #: links-synthesis.php:1318
     303#: links-synthesis.php:1320
    304304#@ links_synthesis
    305305msgid "HTML:"
    306306msgstr ""
    307307
    308 #: links-synthesis.php:1319
     308#: links-synthesis.php:1321
     309#: links-synthesis.php:1325
     310#: links-synthesis.php:1338
     311#@ links_synthesis
     312msgid "The default value is:"
     313msgstr ""
     314
    309315#: links-synthesis.php:1323
    310 #: links-synthesis.php:1336
    311 #@ links_synthesis
    312 msgid "The default value is:"
    313 msgstr ""
    314 
    315 #: links-synthesis.php:1321
    316316#@ links_synthesis
    317317msgid "HTML for each entry of the synthesis (see below for custom HTML):"
    318 msgstr ""
    319 
    320 #: links-synthesis.php:1325
    321 #: links-synthesis.php:1387
    322 #@ links_synthesis
    323 msgid "- %s for the title of the page"
    324 msgstr ""
    325 
    326 #: links-synthesis.php:1326
    327 #: links-synthesis.php:1388
    328 #@ links_synthesis
    329 msgid "- %s for the num of the link in the page"
    330318msgstr ""
    331319
     
    333321#: links-synthesis.php:1389
    334322#@ links_synthesis
    335 msgid "- %s for the HTML anchor used to attach the link in the article to the synthesis (mandatory)"
     323msgid "- %s for the title of the page"
    336324msgstr ""
    337325
     
    339327#: links-synthesis.php:1390
    340328#@ links_synthesis
    341 msgid "- %s for the URL of the link"
     329msgid "- %s for the num of the link in the page"
    342330msgstr ""
    343331
     
    345333#: links-synthesis.php:1391
    346334#@ links_synthesis
    347 msgid "- %s for the status of the link check (displayed only when a user is logged)"
     335msgid "- %s for the HTML anchor used to attach the link in the article to the synthesis (mandatory)"
    348336msgstr ""
    349337
     
    351339#: links-synthesis.php:1392
    352340#@ links_synthesis
    353 msgid "- and all the keywords indicated in the previous tab"
     341msgid "- %s for the URL of the link"
     342msgstr ""
     343
     344#: links-synthesis.php:1331
     345#: links-synthesis.php:1393
     346#@ links_synthesis
     347msgid "- %s for the status of the link check (displayed only when a user is logged)"
    354348msgstr ""
    355349
     
    357351#: links-synthesis.php:1394
    358352#@ links_synthesis
    359 msgid "You may also used this : %s to replace an expression."
    360 msgstr ""
    361 
    362 #: links-synthesis.php:1333
    363 #: links-synthesis.php:1395
    364 #@ links_synthesis
    365 msgid "You may also used this : %s to explode an expression according to a given delimiter and to keep the occurrence %s."
     353msgid "- and all the keywords indicated in the previous tab"
    366354msgstr ""
    367355
     
    369357#: links-synthesis.php:1396
    370358#@ links_synthesis
     359msgid "You may also used this : %s to replace an expression."
     360msgstr ""
     361
     362#: links-synthesis.php:1335
     363#: links-synthesis.php:1397
     364#@ links_synthesis
     365msgid "You may also used this : %s to explode an expression according to a given delimiter and to keep the occurrence %s."
     366msgstr ""
     367
     368#: links-synthesis.php:1336
     369#: links-synthesis.php:1398
     370#@ links_synthesis
    371371msgid "In this HTML you may use: %s"
    372372msgstr ""
    373373
    374 #: links-synthesis.php:1335
     374#: links-synthesis.php:1337
    375375#@ links_synthesis
    376376msgid "CSS:"
    377377msgstr ""
    378378
    379 #: links-synthesis.php:1339
     379#: links-synthesis.php:1341
    380380#@ links_synthesis
    381381msgid "Retrieve the links information"
    382382msgstr ""
    383383
    384 #: links-synthesis.php:1340
     384#: links-synthesis.php:1342
    385385#@ links_synthesis
    386386msgid "Display the status of links (only for authenticated users):"
    387387msgstr ""
    388388
    389 #: links-synthesis.php:1341
     389#: links-synthesis.php:1343
    390390#@ links_synthesis
    391391msgid "Check normal links every (days):"
    392392msgstr ""
    393393
    394 #: links-synthesis.php:1342
     394#: links-synthesis.php:1344
    395395#@ links_synthesis
    396396msgid "Check links with errors every (days):"
    397397msgstr ""
    398398
    399 #: links-synthesis.php:1343
     399#: links-synthesis.php:1345
    400400#@ links_synthesis
    401401msgid "Number of links to be check by iteration:"
    402402msgstr ""
    403403
    404 #: links-synthesis.php:1344
     404#: links-synthesis.php:1346
    405405#@ links_synthesis
    406406msgid "Number of minutes between two background processing:"
    407407msgstr ""
    408408
    409 #: links-synthesis.php:1346
     409#: links-synthesis.php:1348
    410410#@ links_synthesis
    411411msgid "Advanced options"
    412412msgstr ""
    413413
    414 #: links-synthesis.php:1347
     414#: links-synthesis.php:1349
    415415#@ links_synthesis
    416416msgid "Pages that should be excluded from any actions of this plugin:"
    417417msgstr ""
    418418
    419 #: links-synthesis.php:1348
     419#: links-synthesis.php:1350
    420420#@ links_synthesis
    421421msgid "Show the number of errors in the admin menu:"
    422422msgstr ""
    423423
    424 #: links-synthesis.php:1349
     424#: links-synthesis.php:1351
    425425#@ links_synthesis
    426426msgid "Consider links which differ by the anchor as identical (frontend only):"
    427427msgstr ""
    428428
    429 #: links-synthesis.php:1350
     429#: links-synthesis.php:1352
    430430#@ links_synthesis
    431431msgid "Thus, %s and %s will be consider as identical (only for the display in the frontend)"
    432432msgstr ""
    433433
    434 #: links-synthesis.php:1351
     434#: links-synthesis.php:1353
    435435#@ links_synthesis
    436436msgid "When checking the link, check that the page contains an appropriate anchor:"
    437437msgstr ""
    438438
    439 #: links-synthesis.php:1353
     439#: links-synthesis.php:1355
    440440#@ links_synthesis
    441441msgid "Create Thumbnail of external Websites"
    442442msgstr ""
    443443
    444 #: links-synthesis.php:1354
     444#: links-synthesis.php:1356
    445445#@ links_synthesis
    446446msgid "Show the thumbnail if exists, when the mouse is over the link:"
    447447msgstr ""
    448448
    449 #: links-synthesis.php:1355
     449#: links-synthesis.php:1357
    450450#@ links_synthesis
    451451msgid "You may use one of the following API or binary (please selected only one)."
    452452msgstr ""
    453453
    454 #: links-synthesis.php:1356
     454#: links-synthesis.php:1358
    455455#@ links_synthesis
    456456msgid "Use %s API:"
    457457msgstr ""
    458458
    459 #: links-synthesis.php:1357
     459#: links-synthesis.php:1359
    460460#@ links_synthesis
    461461msgid "Grabz.it Application Key:"
    462462msgstr ""
    463463
    464 #: links-synthesis.php:1358
     464#: links-synthesis.php:1360
    465465#@ links_synthesis
    466466msgid "Grabz.it Application Secret:"
    467467msgstr ""
    468468
    469 #: links-synthesis.php:1363
     469#: links-synthesis.php:1365
    470470#@ links_synthesis
    471471msgid "Use the executable %s:"
    472472msgstr ""
    473473
    474 #: links-synthesis.php:1364
     474#: links-synthesis.php:1366
    475475#@ links_synthesis
    476476msgid "To use this option, you should download the binary of %s compatible with your system and install it in %s"
    477477msgstr ""
    478478
    479 #: links-synthesis.php:1368
     479#: links-synthesis.php:1370
    480480#@ links_synthesis
    481481msgid "If you see an image here, it mean it works %s"
    482482msgstr ""
    483483
    484 #: links-synthesis.php:1370
     484#: links-synthesis.php:1372
    485485#@ links_synthesis
    486486msgid "There is a problem with the installation: %s"
    487487msgstr ""
    488488
    489 #: links-synthesis.php:1373
     489#: links-synthesis.php:1375
    490490#@ links_synthesis
    491491msgid "For now, it appears that the file %s does not exist. This option cannot work if activated."
    492492msgstr ""
    493493
    494 #: links-synthesis.php:1375
     494#: links-synthesis.php:1377
    495495#@ links_synthesis
    496496msgid "Width of the window for the screenshot:"
    497497msgstr ""
    498498
    499 #: links-synthesis.php:1376
     499#: links-synthesis.php:1378
    500500#@ links_synthesis
    501501msgid "Width of the thumbnail:"
    502502msgstr ""
    503503
    504 #: links-synthesis.php:1377
     504#: links-synthesis.php:1379
    505505#@ links_synthesis
    506506msgid "Height of the thumbnail:"
    507507msgstr ""
    508508
    509 #: links-synthesis.php:1379
     509#: links-synthesis.php:1381
    510510#@ links_synthesis
    511511msgid "Advanced options for the forced analysis"
    512512msgstr ""
    513513
    514 #: links-synthesis.php:1380
     514#: links-synthesis.php:1382
    515515#@ links_synthesis
    516516msgid "Type of page to be analysed:"
    517517msgstr ""
    518518
    519 #: links-synthesis.php:1381
     519#: links-synthesis.php:1383
    520520#@ links_synthesis
    521521msgid "Max number of post to be checked when an analysis is forced:"
    522522msgstr ""
    523523
    524 #: links-synthesis.php:1383
     524#: links-synthesis.php:1385
    525525#@ links_synthesis
    526526msgid "Custom rule %s"
    527527msgstr ""
    528528
    529 #: links-synthesis.php:1383
     529#: links-synthesis.php:1385
    530530#@ links_synthesis
    531531msgid "Add a new custom rule"
    532532msgstr ""
    533533
    534 #: links-synthesis.php:1384
     534#: links-synthesis.php:1386
    535535#@ links_synthesis
    536536msgid "Regexp for this rule:"
    537537msgstr ""
    538538
    539 #: links-synthesis.php:1385
     539#: links-synthesis.php:1387
    540540#@ links_synthesis
    541541msgid "Custom HTML for each entry of the synthesis:"
    542542msgstr ""
    543543
    544 #: links-synthesis.php:1402
     544#: links-synthesis.php:1404
    545545#@ links_synthesis
    546546msgid "Parameters"
    547547msgstr ""
    548548
    549 #: links-synthesis.php:1410
     549#: links-synthesis.php:1412
    550550#@ links_synthesis
    551551msgid "Manage translations"
    552552msgstr ""
    553553
    554 #: links-synthesis.php:1417
     554#: links-synthesis.php:1419
    555555#@ links_synthesis
    556556msgid "Give feedback"
    557557msgstr ""
    558558
    559 #: links-synthesis.php:1425
     559#: links-synthesis.php:1427
    560560#@ links_synthesis
    561561msgid "Other plugins"
    562562msgstr ""
    563563
    564 #: links-synthesis.php:1516
    565 #: links-synthesis.php:1517
     564#: links-synthesis.php:1518
     565#: links-synthesis.php:1519
    566566#@ links_synthesis
    567567msgid "%s has failed."
    568568msgstr ""
    569569
    570 #: links-synthesis.php:1521
    571 #: links-synthesis.php:1522
     570#: links-synthesis.php:1523
     571#: links-synthesis.php:1524
    572572#@ links_synthesis
    573573msgid "%s has failed: %s."
    574574msgstr ""
    575575
    576 #: links-synthesis.php:1525
    577 #: links-synthesis.php:1526
     576#: links-synthesis.php:1527
     577#: links-synthesis.php:1528
    578578#@ links_synthesis
    579579msgid "%s does not exist."
    580580msgstr ""
    581581
    582 #: links-synthesis.php:1547
     582#: links-synthesis.php:1549
    583583#@ links_synthesis
    584584msgid "All the links are showed here."
    585585msgstr ""
    586586
    587 #: links-synthesis.php:1552
     587#: links-synthesis.php:1554
    588588#@ links_synthesis
    589589msgid "For now, there are %s links (%s ok, %s with errors and %s not yet checked)."
    590590msgstr ""
    591591
    592 #: links-synthesis.php:1553
     592#: links-synthesis.php:1555
    593593#@ links_synthesis
    594594msgid "You have just to wait until the background process analysis each links or you may also force the analysis (see below)."
    595595msgstr ""
    596596
    597 #: links-synthesis.php:1641
    598597#: links-synthesis.php:1643
     598#: links-synthesis.php:1645
    599599#@ links_synthesis
    600600msgid "Modify"
    601601msgstr ""
    602602
    603 #: links-synthesis.php:1641
     603#: links-synthesis.php:1643
    604604#@ links_synthesis
    605605msgid "Cancel"
    606606msgstr ""
    607607
    608 #: links-synthesis.php:1644
     608#: links-synthesis.php:1646
    609609#@ links_synthesis
    610610msgid "Ignore"
    611611msgstr ""
    612612
    613 #: links-synthesis.php:1780
     613#: links-synthesis.php:1782
    614614#@ links_synthesis
    615615msgid "Wait..."
    616616msgstr ""
    617617
    618 #: links-synthesis.php:1820
     618#: links-synthesis.php:1822
    619619#@ links_synthesis
    620620msgid "Only %s seconds since the last computation: please wait!"
    621621msgstr ""
    622622
    623 #: links-synthesis.php:2048
     623#: links-synthesis.php:2054
    624624#@ links_synthesis
    625625msgid "(Asked to be ignored)"
    626626msgstr ""
    627627
    628 #: links-synthesis.php:2049
     628#: links-synthesis.php:2055
    629629#@ links_synthesis
    630630msgid "(Not yet checked)"
    631631msgstr ""
    632632
    633 #: links-synthesis.php:2214
     633#: links-synthesis.php:2220
    634634#@ links_synthesis
    635635msgid "Cannot found '%s' in '%s'. There is probably an issue with special characters. Thus edit the article manually to modify this link."
  • links-synthesis/trunk/links-synthesis.php

    r1072901 r1398088  
    44Plugin Tag: links, analysis, check, validity, dead, status
    55Description: <p>This plugin enables a synthesis of all links and the creation of thumbnail for links in an article and retrieves data from them. </p><p>In this plugin, an index of all links in the page/post is created at the end of the page/post. </p><p>In addition, each link is periodically check to see if the link is still valid. </p>p>In addition, each link is periodically check to see if the link is still valid. </p><p>You may display a thumbnail of the URL when the user move its mouse over the link.</p><p>This plugin is under GPL licence. </p>
    6 Version: 1.3.2
     6Version: 1.3.3
    77Framework: SL_Framework
    88Author: sedLex
     
    266266       
    267267        $postpost = get_post() ;
    268         $this->content_for_callback = $postpost->post_content ; // on ne met pas content car il y a beaucoup de lien ajoutŽ par d'autres plugins
     268        $this->content_for_callback = $postpost->post_content ; // on ne met pas content car il y a beaucoup de lien ajout par d'autres plugins
    269269       
    270270        $this->whenPostIsSaved($postpost->ID, true, true) ;
     
    335335                    // Header
    336336                    if ($tl['http_code']!=0) {
    337                         $head = unserialize(str_replace("##&#39;##", "'", $tl['header'])) ;
    338                         if (is_array($head)) {
    339                             foreach ($head as $mtk=>$mt) {
    340                                 if (is_string($mt) && is_string($mtk)) {
    341                                     $truc = str_replace("%head_".$mtk."%", $mt, $truc) ;
     337                        if (is_serialized( str_replace("##&#39;##", "'", $tl['header']) )) {
     338                            $head = unserialize(str_replace("##&#39;##", "'", $tl['header'])) ;
     339                            if (is_array($head)) {
     340                                foreach ($head as $mtk=>$mt) {
     341                                    if (is_string($mt) && is_string($mtk)) {
     342                                        $truc = str_replace("%head_".$mtk."%", $mt, $truc) ;
     343                                    }
    342344                                }
    343345                            }
     
    439441                        if ($current_occurrence[$i]["id"] == "selectPostWithID".$pid) {
    440442                           
    441                             // On regarde si les textes des liens trouvŽs dans le post existe
     443                            // On regarde si les textes des liens trouvs dans le post existe
    442444                            if (isset($tl["occ"][$current_occurrence[$i]["text"]])) {
    443445                                if ($current_occurrence[$i]["nb"]!=$tl["occ"][$current_occurrence[$i]["text"]]) {
    444                                     // On met ˆ jour le nombre d'occurrence
     446                                    // On met jour le nombre d'occurrence
    445447                                    $current_occurrence[$i]["nb"] = $tl["occ"][$current_occurrence[$i]["text"]] ;
    446448                                    $nblinks_occ_maj ++ ;
     
    462464                    }
    463465                   
    464                     // On parcours $tl["occ"] pour ajouter les entrŽes qui ne s'y trouvent pas
     466                    // On parcours $tl["occ"] pour ajouter les entres qui ne s'y trouvent pas
    465467                    foreach ($tl["occ"] as $k => $v) {
    466468                        $found_occ = false ;
     
    690692                if ($result[0]->http_code==200) {
    691693                    $status = "" ;
    692                 } else if ($result[0]->http_code==210) { // Mme si l'ancre est manquante on dit que ok car c'est pour la key_url i.e. sans l'ancre
     694                } else if ($result[0]->http_code==210) { // Mme si l'ancre est manquante on dit que ok car c'est pour la key_url i.e. sans l'ancre
    693695                    $status = "" ;
    694696                } else if ($result[0]->http_code==0) {
     
    11621164                $table->title(array(__('URL', $this->pluginID), __('Posts/Articles', $this->pluginID), __('Keywords', $this->pluginID))) ;
    11631165               
    1164                 // Tous les resultats qui ont ŽtŽ ignorŽs
     1166                // Tous les resultats qui ont �t� ignor�s
    11651167                $results = $wpdb->get_results("SELECT * FROM ".$this->table_name." WHERE http_code='-2' ") ;
    11661168               
     
    17311733            $this->set_param('list_post_id_to_check', $post_temp) ;
    17321734       
    1733             // On fait semblant que la page est affichŽe pour rŽcupŽrer les liens des pages
     1735            // On fait semblant que la page est affich�e pour r�cup�rer les liens des pages
    17341736            $postpost = get_post($pid) ;
    17351737            $this->whenPostIsSaved($pid, true) ;
     
    19551957                }
    19561958            }   
     1959           
     1960            // Remove the pages that does not exists anymore in occurrence
     1961            $update = "DELETE FROM ".$this->table_name." WHERE ISNULL(occurrence)" ;
     1962            $wpdb->query($update) ;
    19571963           
    19581964            // Screenshot of the external website
  • links-synthesis/trunk/readme.txt

    r1084989 r1398088  
    77Tags: links, analysis, check, validity, dead, status
    88Requires at least: 3.0
    9 Tested up to: 4.2
     9Tested up to: 4.5
    1010Stable tag: trunk
    1111License: GPLv3
     
    6060== Changelog ==
    6161
     62= 1.3.3 =
     63* NEW: Update of the core
     64
    6265= 1.3.2 =
    6366* NEW: delete temp file upon desinstall
     
    110113
    111114 
    112 InfoVersion:c292a49bf1a1dbd5e6a97432fb8f61008f131b73
     115InfoVersion:b82f888dfb47970cce3a4d21e51022ba5a3a333d
Note: See TracChangeset for help on using the changeset viewer.