Plugin Directory

Changeset 624206


Ignore:
Timestamp:
11/12/2012 09:03:30 PM (13 years ago)
Author:
iluminatus
Message:

Fixing translation problems and adding Norwegian translation thanks to kkalvaa

Location:
network-latest-posts/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • network-latest-posts/trunk/network-latest-posts.php

    r624205 r624206  
    44Plugin URI: http://en.8elite.com/network-latest-posts
    55Description: Display the latest posts from the blogs in your network using it as a function, shortcode or widget.
    6 Version: 3.4.3
     6Version: 3.4.4
    77Author: L'Elite
    88Author URI: http://laelite.info/
     
    118118 * -- Julien Dizdar
    119119 * --- Spotted a bug in sorting parameters
     120 *
     121 * -- kkalvaa
     122 * --- Spotted ignored strings by translation files, this problem was due to
     123 * --- a loading hierarchy problem
    120124 *
    121125 * That's it, let the fun begin!
     
    11731177    // Load plugins
    11741178    wp_enqueue_script('jquery');
     1179}
     1180/*
     1181 * Load Languages
     1182 */
     1183function nlp_load_languages() {
    11751184    // Set the textdomain for translation purposes
    11761185    load_plugin_textdomain('trans-nlp', false, basename( dirname( __FILE__ ) ) . '/languages');
    11771186}
    1178 
    11791187// Load CSS Styles
    11801188function nlp_load_styles($css_style) {
     
    12631271// Run this stuff
    12641272add_action("admin_enqueue_scripts","network_latest_posts_init");
     1273// Languages
     1274add_action('plugins_loaded', 'nlp_load_languages');
    12651275?>
  • network-latest-posts/trunk/readme.txt

    r624205 r624206  
    55Requires at least: 3.0
    66Tested up to: 3.4.1
    7 Stable tag: 3.4.3
     7Stable tag: 3.4.4
    88
    99This plugin allows you to pull all the recent posts from the blogs in your WordPress network and display them in your main site (or internal sites)
     
    140140== Changelog ==
    141141
     142= 3.4.4 =
     143* Replacing language loadtext order to avoid some strings being ignored by translation files, thanks to kkalvaa for spotting this and contributing with the Norwegian Bokmål translation!
     144
    142145= 3.4.3 =
    143146* Fixed bug while using sort_by_date and sort_by_blog, sorting capabilities were not working properly. Thanks to Julien Dizdar for reporting this bug.
Note: See TracChangeset for help on using the changeset viewer.