Plugin Directory

Changeset 199488


Ignore:
Timestamp:
01/29/2010 02:34:53 PM (16 years ago)
Author:
Txanny
Message:

Released SidePosts 3.0

Location:
sideposts/trunk
Files:
39 added
52 edited

Legend:

Unmodified
Added
Removed
  • sideposts/trunk/framework/classes/abstract/module.php

    r196960 r199488  
    3131 * Abtract class to be used as a theme template.
    3232 * Must be implemented before using this class.
    33  * There are some special functions that can declared (as protected) in implementations to perform main actions:
    34  *      - install: (Protected) Additional actions to run when activating the theme (Settings are already created).
    35  *      - update: (Protected) Actions to update the theme to a new version. (Updating version on DB is done after this).
    36  *              Takes old theme version as a parameter. Settings are already updated from defaults.
    37  *      - defaults: (Protected) Returns the default module settings. Used to install, update and fill.
    38  *      - registerSidebars: The place where to register all theme sidebars by using register_sidebar() function.
    39  *      - init: (Protected) Actions to run when plugins initialization is performed (on init hook).
    40  *      - widgetsInit: (Protected) Actions to init theme widgets (In widgets_init).
    41  *      - startUp: (Protected) Actions to run at system startup (before plugins are loaded).
    42  *      - _adminMenus: (Hook, must be public) Set the menus in WordPress Dashboard.
     33 * There are some special functions that have to be declared in implementations to perform main actions:
     34 *      - moduleLoad (Protected) Additional actions to be run at module load time.
     35 *      - defaultOptions (Protected) Returns the module default options.
     36 *      - widgetsInit (Public) Runs at 'widgets_init' action.
     37 *      - wpInit (Public) Runs at 'init' action.
     38 *      - adminMenus (Public) Runs at 'admin_menus' option, used to set admin menus and page options.
    4339 *
    4440 * @author      Jordi Canals
    4541 * @package     Alkivia
    4642 * @subpackage  Framework
    47  * @link        http://alkivia.org
     43 * @link        http://wiki.alkivia.org/framework/classes/module
    4844 *
    4945 * @uses        akSettings
     
    5551     * Module ID. Is the module internal short name.
    5652     * Filled in constructor (as a constructor param). Used for translations textdomain.
     53     *
    5754     * @var string
    5855     */
     
    6259     * Module Type using a class constant: self::PLUGIN, self::COMPONENT, seelf::THEME, self::CHILD_THEME
    6360     * By default is set to 0 (unknown).
     61     *
    6462     * @var int
    6563     */
     
    6967     * Full path to module main file.
    7068     * Main file is 'style.css' for themes and the php file with data header for plugins and components.
     69     *
    7170     * @var string
    7271     */
     
    7574    /**
    7675     * URL to the plugin folder.
     76     *
    7777     * @var string
    7878     */
     
    126126     *
    127127     * @see akModuleAbstract::mod_data
     128     *
    128129     * @var array
    129130     */
     
    134135     *      - 'post' - Saves the current post.
    135136     *      - 'more' - Saves the read more status.
     137     *
    136138     * @var array
    137139     */
     
    141143     * Holds a reference to the global 'settings' object.
    142144     * This object has been created on the framework loader.
     145     *
    143146     * @var akSettings
    144147     */
     
    147150    /**
    148151     * Flag to see if we are installing (activating for first time) or reactivating the module.
     152     *
    149153     * @var boolean
    150154     */
     
    153157    /**
    154158     * Flag to see if module needs to be updated.
     159     *
    155160     * @var boolean
    156161     */
     
    210215            add_action('init', array($this, 'systemInit'));
    211216            add_action('widgets_init', array($this, 'widgetsInit'));
    212             add_action('admin_menu', array($this, 'adminMenus'));
     217
     218            if ( ! apply_filters('ak_' . $this->ID . '_disable_admin', $this->getOption('disable-admin-page')) ) {
     219                add_action('admin_menu', array($this, 'adminMenus'));
     220            }
    213221
    214222            // Load styles
     
    225233    /**
    226234     * Executes as soon as module class is loaded.
     235     *
    227236     * @return void
    228237     */
     
    231240    /**
    232241     * Prepares and returns default module options.
     242     *
    233243     * @return array Options array
    234244     */
     
    237247    /**
    238248     * Fires at 'widgets_init' action hook
     249     *.
    239250     * @return void
    240251     */
     
    243254    /**
    244255     * Fires at 'init' action hook.
     256     *
    245257     * @return void
    246258     */
     
    248260
    249261    /**
    250      * Fires at 'admin_menus' action hook-
     262     * Fires at 'admin_menus' action hook.
     263     *
    251264     * @return void
    252265     */
     
    269282     * @hook action 'init'
    270283     * @access private
     284     *
    271285     * @return void
    272286     */
     
    304318    /**
    305319     * Enqueues additional administration styles.
     320     * Send the framework admin.css file and additionally any other admin.css file
     321     * found on the module direcotry.
    306322     *
    307323     * @hook action 'admin_print_styles'
     324     * @uses apply_filters() Calls the 'ak_framework_style_admin' filter on the framework style url.
    308325     * @uses apply_filters() Calls the 'ak_<Mod_ID>_style_admin' filter on the style url.
    309326     * @access private
     327     *
    310328     * @return void
    311329     */
    312330    final function adminStyles()
    313331    {
    314         $url = '';
    315 
    316         if ( $this->isChildTheme() && file_exists(STYLESHEETPATH . '/admin.css') ) {
     332        // FRAMEWORK admin styles.
     333        $url = apply_filters('ak_framework_style_admin', AK_STYLES_URL . '/admin.css');
     334        if ( ! empty($url) ) {
     335            wp_register_style('ak_framework_admin', $url, false, get_option('ak_framework_version'));
     336            wp_enqueue_style('ak_framework_admin');
     337        }
     338
     339        // MODULE admin styles.
     340        if ( $this->isChildTheme() && file_exists(STYLESHEETPATH . '/admin.css') ) {
    317341            $url = get_stylesheet_directory_uri() . '/admin.css';
    318342        } elseif ( $this->isTheme() && file_exists(TEMPLATEPATH . '/admin.css') ) {
     
    320344        } elseif ( file_exists(dirname($this->mod_file) . '/admin.css') ) {
    321345            $url = $this->mod_url . '/admin.css';
     346        } else {
     347            $url = '';
    322348        }
    323349
    324350        $url = apply_filters('ak_' . $this->ID . '_style_admin', $url);
    325 
    326351        if ( ! empty($url) ) {
    327             wp_register_style($this->ID, $url, false, $this->mod_data['Version']);
    328             wp_enqueue_style($this->ID);
     352            wp_register_style('ak_' . $this->ID . '_admin', $url, array('ak_framework_admin'), $this->mod_data['Version']);
     353            wp_enqueue_style('ak_' . $this->ID . '_admin');
    329354        }
    330355    }
     
    332357    /**
    333358     * Enqueues additional styles for plugins and components.
     359     * For themes no styles are enqueued as them are already sent by WP.
    334360     *
    335361     * @hook action 'wp_print_styles'
    336362     * @uses apply_filters() Calls the 'ak_<Mod_ID>_style_url' filter on the style url.
    337363     * @access private
     364     *
    338365     * @return void
    339366     */
    340367    final function enqueueStyles()
    341368    {
    342         $url = '';
    343 
    344369        if ( $this->isTheme() || $this->getOption('disable-module-styles') ) {
    345370            return;
     
    348373        if ( file_exists(dirname($this->mod_file) . '/style.css') ) {
    349374            $url = $this->mod_url . '/style.css';
     375        } else {
     376            $url = '';
    350377        }
    351378
    352379        $url = apply_filters('ak_' . $this->ID . '_style_url', $url);
    353380        if ( ! empty($url) ) {
    354             wp_register_style($this->ID, $url, false, $this->mod_data['Version']);
    355             wp_enqueue_style($this->ID);
     381            wp_register_style('ak_' . $this->ID, $url, false, $this->mod_data['Version']);
     382            wp_enqueue_style('ak_' . $this->ID);
    356383        }
    357384    }
     
    478505        if ( $this->cfg->isForced($this->ID, $option) ) {
    479506            if ( $show_notice ) {
    480                 echo '<em>' . __('Option blocked by administrator.', 'aktheme') . '</em>';
     507                echo '<em>' . __('Option blocked by administrator.', 'akfw') . '</em>';
    481508            }
    482509            return false;
     
    515542    /**
    516543     * Loads plugins data.
     544     *
    517545     * @return void
    518546     */
     
    525553
    526554            $plugin_data = get_plugin_data($this->mod_file);
    527             $readme_data = ak_plugin_readme_data($this->mod_file);
     555            $readme_data = ak_module_readme_data($this->mod_file);
    528556            $this->mod_data = array_merge($readme_data, $plugin_data);
    529557        }
     
    532560    /**
    533561     * Loads theme (and child) data.
     562     *
    534563     * @return void
    535564     */
    536565    final private function loadThemeData()
    537566    {
    538         if ( empty($this->mod_data) ) {
    539             $this->mod_data = get_theme_data(TEMPLATEPATH . '/style.css');
     567        $readme_data = ak_module_readme_data(TEMPLATEPATH . '/readme.txt');
     568        if ( empty($this->mod_data) ) {
     569            $theme_data = get_theme_data(TEMPLATEPATH . '/style.css');
     570            $this->mod_data = array_merge($readme_data, $theme_data);
    540571        }
    541572
    542573        if ( TEMPLATEPATH !== STYLESHEETPATH && empty($this->child_data) ) {
    543574            $this->mod_type = self::CHILD_THEME;
    544             $this->child_data = get_theme_data(STYLESHEETPATH . '/style.css');
     575            $child_data = get_theme_data(STYLESHEETPATH . '/style.css');
     576            $child_readme_data = ak_module_readme_data(STYLESHEETPATH . '/readme.txt');
     577            $this->child_data = array_merge($readme_data, $child_readme_data, $child_data);
    545578        }
    546579    }
     
    549582     * Loads component data.
    550583     * TODO: This method needs some revision as it does not work.
     584     * TODO: Load data from component readme.txt
     585     *
    551586     * @return void
    552587     */
     
    609644    /**
    610645     * Returns the URL to the module folder.
     646     *
    611647     * @return string Absolute URL to the module folder.
    612648     */
  • sideposts/trunk/framework/classes/abstract/plugin.php

    r196960 r199488  
    2727 */
    2828
    29 require_once ( AK_LIB . '/plugins.php' );
    3029require_once ( AK_CLASSES . '/abstract/module.php' );
    3130
     
    3332 * Abtract class to be used as a plugin template.
    3433 * Must be implemented before using this class and it's recommended to prefix the class to prevent collissions.
    35  * There are some special functions thay can declared (as protected) in implementations to perform main actions:
    36  *      - activate: (Protected) Actions to run when activating the plugin.
    37  *      - _deactivate: (Hook, must be public) Actions to run when deactivating the plugin.
    38  *      - update: (Protected) Actions to update the plugin to a new version. (Updating version on DB is done after this).
     34 * There are some special functions that have to be declared in implementations to perform main actions:
     35 *      - pluginActivate (Protected) Actions to run when activating the plugin.
     36 *      - pluginDeactivate (Protected) Actions to run when deactivating the plugin.
     37 *      - pluginUpdate (Protected) Actions to update the plugin to a new version. (Updating version on DB is done after this).
    3938 *                      Takes plugin running version as a parameter.
    40  *      - setDefaults: (Protected) Fills the $defaults class var with the default settings.
    41  *      - init: (Protected) Actions to run when plugins initialization is performed (In plugins loaded).
    42  *      - widgetsInit: (Protected) Actions to init plugin widgets (In widgets_init).
    43  *      - startUp: (Protected) Actions to run at system startup (before plugins are loaded).
    44  *      - _adminMenus: (Hook, must be public) Set the menus in WordPress Dashboard.
     39 *      - pluginsLoaded (Protected) Runs at 'plugins_loaded' action hook.
     40 *      - registerWidgets (Protected) Runs at 'widgets_init' action hook.
    4541 *
    4642 * @author      Jordi Canals
    4743 * @package     Alkivia
    4844 * @subpackage  Framework
    49  * @link        http://alkivia.org
     45 * @link        http://wiki.alkivia.org/framework/classes/plugin
    5046 *
    5147 * @uses        plugins.php
     
    212208        $this->loadTranslations(); // We have not loaded translations yet.
    213209
    214         echo '<div class="error"><p><strong>' . __('Warning:', $this->ID) . '</strong> '
    215             . sprintf(__('The active plugin %s is not compatible with your WordPress version.', $this->ID),
     210        echo '<div class="error"><p><strong>' . __('Warning:', 'akfw') . '</strong> '
     211            . sprintf(__('The active plugin %s is not compatible with your WordPress version.', 'akfw'),
    216212                '&laquo;' . $this->mod_data['Name'] . ' ' . $this->mod_data['Version'] . '&raquo;')
    217             . '</p><p>' . sprintf(__('WordPress %s is required to run this plugin.', $this->ID), $this->mod_data['Requires'])
     213            . '</p><p>' . sprintf(__('WordPress %s is required to run this plugin.', 'akfw'), $this->mod_data['Requires'])
    218214            . '</p></div>';
    219215    }
  • sideposts/trunk/framework/classes/abstract/theme.php

    r196960 r199488  
    3232 * Abtract class to be used as a theme template.
    3333 * Must be implemented before using this class.
     34 * There are some special functions that have to be declared in implementations to perform main actions:
     35 *      - themeInit (Protected) Runs as soon as theme has been loaded.
     36 *      - themeInstall (Protected) Runs at theme install time and fires on the 'init' action hook.
     37 *      - themeUpdate (Proetected) Runs at theme update and fires on the 'init' action hook.
     38 *      - themeSideBars (Protected) Runs at theme load time and used to register the theme sidebars.
    3439 *
    3540 * @author      Jordi Canals
    3641 * @package     Alkivia
    3742 * @subpackage  Framework
    38  * @link        http://alkivia.org
     43 * @link        http://wiki.alkivia.org/framework/classes/theme
    3944 *
    4045 * @uses        akSettings
     
    127132    final private function install ()
    128133    {
    129 
    130134        // If there is an additional function to perform on installation.
    131135        $this->themeInstall();
     
    139143
    140144    /**
    141      * Init the theme (In action 'plugins_loaded')
    142      * Here whe call the 'update' and 'init' functions. This is done after the plugins are loaded.
     145     * Init the theme (In action 'init')
     146     * Here whe call the 'themeUpdate' and 'themeInit' methods. This is done after the plugins are loaded.
    143147     * Also the theme version and settings are updated here.
    144      *
    145      * TODO: plugins_loaded has already been done, so must throw action in other place.
    146148     *
    147149     * @uses do_action() Calls the 'ak_theme_updated' action hook.
  • sideposts/trunk/framework/classes/admin-notices.php

    r196960 r199488  
    2929/**
    3030 * Class to show admin warnings (or notices)
    31  * Trhrows the hook 'admin_notices' to show the warning only on allowed places.
    32  * To use the class, just have to instantiate it as new aocAdminNotice('message').
     31 * Throws the hook 'admin_notices' to show the warning only on allowed places.
     32 * To use the class, just have to instantiate it as new akcAdminNotice('message').
    3333 *
    3434 * @author      Jordi Canals
    3535 * @package     Alkivia
    3636 * @subpackage  Framework
    37  * @link        http://alkivia.org
     37 *
     38 * @link        http://wiki.alkivia.org/framework/classes/admin-notice
    3839 */
    3940class akAdminNotice
  • sideposts/trunk/framework/classes/settings.php

    r196960 r199488  
    3434 * @package     Alkivia
    3535 * @subpackage  Framework
    36  * @link        http://alkivia.org
     36 * @link        http://wiki.alkivia.org/framework/classes/settings
    3737 */
    3838final class akSettings
  • sideposts/trunk/framework/init.php

    r196960 r199488  
    2727    along with this program. If not, see <http://www.gnu.org/licenses/>.
    2828 */
     29
     30/**
     31 * Creates and returns the framework URL.
     32 *
     33 * @return string Framework URL
     34 */
     35function ak_styles_url ()
     36{
     37   $dir = str_replace('\\', '/', WP_CONTENT_DIR);
     38   $fmw = str_replace('\\', '/', AK_FRAMEWORK);
     39
     40   return str_replace($dir, WP_CONTENT_URL, $fmw) . '/styles';
     41}
     42
     43// ================================================= SET GLOBAL CONSTANTS =====
     44
     45if ( ! defined('AK_STYLES_URL') ) {
     46    /** Define the framework URL */
     47    define ( 'AK_STYLES_URL', ak_styles_url() );
     48}
    2949
    3050if ( ! defined('AK_INI_FILE') ) {
     
    5878}
    5979
     80// ============================================== SET GLOBAL ACTION HOOKS =====
     81
    6082/**
    6183 * Adds meta name for Alkivia Framework to head.
     
    6587 * @return void
    6688 */
    67 function _ak_framework_meta_tags(){
     89function _ak_framework_meta_tags() {
    6890    echo '<meta name="framework" content="Alkivia Framework ' . get_option('ak_framework_version') . '" />' . PHP_EOL;
    6991}
    7092add_action('wp_head', '_ak_framework_meta_tags');
    7193
    72 /************************************************** INIT main objects ********/
     94/**
     95 * Loads the framework translations.
     96 * Sets the translation text domain to 'akvf'.
     97 *
     98 * @return bool true on success, false on failure
     99 */
     100function _ak_framework_translation()
     101{
     102    $locale = get_locale();
     103    $mofile = AK_FRAMEWORK . "/lang/$locale.mo";
     104
     105    return load_textdomain('akfw', $mofile);
     106}
     107add_action('init', '_ak_framework_translation');
     108
     109// ================================================ INCLUDE ALL LIBRARIES =====
    73110
    74111// Create the upload folder if does not exist.
     
    77114}
    78115
    79 // Create and store the 'settings' global object.
     116// Prepare the settings and objects libraries.
    80117require_once ( AK_CLASSES . '/settings.php');
     118
     119require_once ( AK_LIB . '/filesystem.php' );
     120require_once ( AK_LIB . '/formating.php' );
     121require_once ( AK_LIB . '/modules.php' );
    81122require_once ( AK_LIB . '/objects.php' );
    82 if ( ! ak_object_exists('settings') ) {
    83     ak_create_object( 'settings', new akSettings() );
    84 }
     123require_once ( AK_LIB . '/system.php' );
     124require_once ( AK_LIB . '/themes.php' );
     125require_once ( AK_LIB . '/users.php' );
    85126
    86127do_action('ak_framework_loaded');
  • sideposts/trunk/framework/lib/filesystem.php

    r196960 r199488  
    126126function ak_dir_content($directory, $args='')
    127127{
     128
    128129    $directory = realpath($directory); // Be sure the directory path is well formed.
    129130    if ( ! is_dir($directory) ) {      // Check if it is a directory.
     
    164165    }
    165166    $d->close();
    166     sort($dir_tree);
     167    asort($dir_tree);
    167168
    168169    return $dir_tree;
    169170}
     171
     172/**
     173 * Returns a list of templates found in an array of directories
     174 *
     175 * @param array|string $folders Array of folders to search in.
     176 * @return array Found templates (all found php files).
     177 */
     178function ak_get_templates( $folders )
     179{
     180    $paths = array();
     181    foreach ( (array) $folders as $folder ) {
     182        $templates = ak_dir_content($folder, 'tree=0&extensions=php&with_ext=0');
     183        $paths = array_merge($templates, $paths);
     184    }
     185
     186    return $paths;
     187}
  • sideposts/trunk/framework/lib/formating.php

    r196960 r199488  
    5050    if ( is_admin() ) {
    5151        if ( empty($message) ) {
    52             $message = __('Settings saved.');
     52            $message = __('Settings saved.', 'akfw');
    5353        }
    5454        echo '<div id="message" class="updated fade"><p><strong>' . $message . '</strong></p></div>';
     
    132132 *
    133133 * @param $datetime Date Time in mySql Format.
    134  * @param $text_domain Translations textDomain.
    135134 * @return string The time from the date to now, just looks to yesterday.
    136135 */
    137 function ak_time_ago( $datetime, $text_domain= '' )
     136function ak_time_ago( $datetime )
    138137{
    139138    $before = strtotime($datetime);
     
    159158    switch ( $unit ) {
    160159        case 's':
    161             $ago = __('Just Now', $text_domain);
     160            $ago = __('Just Now', 'akfw');
    162161            break;
    163162        case 'm':
    164             $ago = sprintf(_n('1 minute ago', '%d minutes ago', $value, $text_domain), $value);
     163            $ago = sprintf(_n('1 minute ago', '%d minutes ago', $value, 'akfw'), $value);
    165164            break;
    166165        case 'h' :
    167             $ago = sprintf(_n('1 hour ago', '%d hours ago', $value, $text_domain), $value);
     166            $ago = sprintf(_n('1 hour ago', '%d hours ago', $value, 'akfw'), $value);
    168167            break;
    169168        case 'd' :
    170169            if ( 1 == $value ) {
    171                 $literal = ( $is_today ) ? __('Today at %s', $text_domain) : __('Yesterday at %s', $text_domain);
     170                $literal = ( $is_today ) ? __('Today at %s', 'akfw') : __('Yesterday at %s', 'akfw');
    172171                $ago = sprintf($literal, date('H:i', $before));
    173172            } else {
  • sideposts/trunk/framework/lib/objects.php

    r196960 r199488  
    3434
    3535/**
     36 * Creates and stores an object in the $_akv global.
     37 * Can be called at the same time we create the object: ak_store_object( 'obj_name', new objectName() );
     38 *
     39 * @param string $name  Internal object name.
     40 * @param object $object The object reference to store in the global.
     41 * @return object The newly stored object reference.
     42 */
     43function & ak_create_object ( $name, $object )
     44{
     45    $GLOBALS['_akv'][$name] =& $object;
     46    return $object;
     47}
     48
     49/**
    3650 * Gets an object stored in the $_akv global.
    3751 *
     
    4660        return false;
    4761    }
    48 }
    49 
    50 /**
    51  * Creates and stores an object in the $_akv global.
    52  * Can be called at the same time we create the object: ak_store_object( 'obj_name', new objectName() );
    53  *
    54  * @param string $name  Internal object name.
    55  * @param object $object The object reference to store in the global.
    56  * @return object The newly stored object reference.
    57  */
    58 function & ak_create_object ( $name, $object )
    59 {
    60     $GLOBALS['_akv'][$name] =& $object;
    61     return $object;
    6262}
    6363
     
    8686function & ak_settings_object ()
    8787{
    88     return ak_get_object('settings');
     88    if ( ak_object_exists('settings') ) {
     89        return ak_get_object('settings');
     90    } else {
     91        return ak_create_object('settings', new akSettings());
     92    }
    8993}
    9094
  • sideposts/trunk/framework/lib/plugins.php

    r196960 r199488  
    22/**
    33 * Plugins related functions.
     4 * This file is deprecated and has been replaced by modules.php.
    45 *
    56 * @version     $Rev$
     
    1011 * @package     Alkivia
    1112 * @subpackage  Framework
     13 *
     14 * @deprecated since 0.5
     15 * @see modules.php
    1216 *
    1317
     
    2731 */
    2832
    29 /**
    30  * Parse the plugin readme.txt file to retrieve plugin's metadata.
    31  *
    32  * The metadata of the plugin's readme searches for the following in the readme.txt
    33  * header. All metadata must be on its own line. The below is formatted for printing.
    34  *
    35  * <code>
    36  * Contributors: contributors nicknames, comma delimited
    37  * Donate link: Link to plugin donate page
    38  * Tags: Plugin tags, comma delimited
    39  * Requires at least: Minimum WordPress version required
    40  * Tested up to: Higher WordPress version the plugin has been tested.
    41  * Stable tag: Latest stable tag in repository.
    42  * </code>
    43  *
    44  * Readme data returned array cointains the following:
    45  *      - 'Contributors' - An array with all contributors nicknames.
    46  *      - 'Tags' - An array with all plugin tags.
    47  *      - 'DonateURI' - The donations page address.
    48  *      - 'Required' - Minimum required WordPress version.
    49  *      - 'Tested' - Higher WordPress version this plugin has been tested.
    50  *      - 'Stable' - Last stable tag when this was released.
    51  *
    52  * The first 8kiB of the file will be pulled in and if the readme data is not
    53  * within that first 8kiB, then the plugin author should correct their plugin
    54  * and move the plugin data headers to the top.
    55  *
    56  * The readme file is assumed to have permissions to allow for scripts to read
    57  * the file. This is not checked however and the file is only opened for
    58  * reading.
    59  *
    60  * @param string $pluginFile Path to the plugin file (not the readme file)
    61  * @return array See above for description.
    62  */
    63 function ak_plugin_readme_data( $pluginFile )
    64 {
    65     $file = dirname($pluginFile) . '/readme.txt';
    66 
    67     $fp = fopen($file, 'r');    // Open just for reading.
    68     $data = fread( $fp, 8192 ); // Pull the first 8kiB of the file in.
    69     fclose($fp);                // Close the file.
    70 
    71     preg_match( '|Contributors:(.*)$|mi', $data, $contributors );
    72     preg_match( '|Donate link:(.*)$|mi', $data, $uri );
    73     preg_match( '|Tags:(.*)|i', $data, $tags );
    74     preg_match( '|Requires at least:(.*)$|mi', $data, $required );
    75     preg_match( '|Tested up to:(.*)$|mi', $data, $tested );
    76     preg_match( '|Stable tag:(.*)$|mi', $data, $stable );
    77 
    78     foreach ( array( 'contributors', 'uri', 'tags', 'required', 'tested', 'stable' ) as $field ) {
    79         if ( !empty( ${$field} ) ) {
    80             ${$field} = trim(${$field}[1]);
    81         } else {
    82             ${$field} = '';
    83         }
    84     }
    85 
    86     $readme_data = array(
    87         'Contributors' => array_map('trim', explode(',', $contributors)),
    88         'Tags' => array_map('trim', explode(',', $tags)),
    89         'DonateURI' => trim($uri),
    90         'Requires' => trim($required),
    91         'Tested' => trim($tested),
    92         'Stable' => trim($stable) );
    93 
    94     return $readme_data;
    95 }
     33require_once ( 'AK_LIB' . '/modules.php' );
  • sideposts/trunk/framework/lib/themes.php

    r196960 r199488  
    132132    }
    133133}
     134
     135/**
     136 * Authoring widget for admin pages.
     137 * You can add a readme.txt file for themes to add aditional links not found on style.css
     138 * Additional strings searched at readme.txt are: 'Help link:' and 'Docs link'.
     139 * All others follow plugins readme.txt guidelines.
     140 *
     141 * @since 0.5
     142 *
     143 * @param string $mod_id Module ID
     144 * @return void
     145 */
     146function ak_admin_authoring ( $mod_id )
     147{
     148    $mod = ak_get_object($mod_id);
     149    if ( ! $mod ) {
     150        return;
     151    }
     152    $data = $mod->getModData();
     153?>
     154
     155    <dl>
     156        <dt><?php echo $data['Name']; ?></dt>
     157        <dd>
     158            <ul>
     159                <?php if ( ! empty($data['PluginURI']) ) : ?>
     160                    <li><a href="<?php echo $data['PluginURI']; ?>" class="<?php echo $mod_id; ?>" target="_blank"><?php _e('Plugin Homepage', 'akfw'); ?></a></li>
     161                <?php endif; ?>
     162
     163                <?php if ( ! empty($data['URI']) ) : ?>
     164                    <li><a href="<?php echo $data['URI']; ?>" class="theme" target="_blank"><?php _e('Theme Homepage', 'akfw'); ?></a></li>
     165                <?php endif; ?>
     166
     167                <?php if ( ! empty($data['DocsURI']) ) : ?>
     168                    <li><a href="<?php echo $data['DocsURI']; ?>" class="docs" target="_blank"><?php _e('Documentation', 'akfw'); ?></a></li>
     169                <?php endif; ?>
     170
     171                <?php if ( ! empty($data['HelpURI']) ) : ?>
     172                    <li><a href="<?php echo $data['HelpURI']; ?>" class="help" target="_blank"><?php _e('Support Forum', 'akfw'); ?></a></li>
     173                <?php endif; ?>
     174
     175                <?php if ( ! empty($data['AuthorURI']) ) : ?>
     176                    <li><a href="<?php echo $data['AuthorURI']; ?>" class="home" target="_blank"><?php _e('Author Homepage', 'akfw')?></a></li>
     177                <?php endif; ?>
     178
     179                <?php if ( ! empty($data['DonateURI']) ) : ?>
     180                    <li><a href="<?php echo $data['DonateURI']; ?>" class="donate" target="_blank"><?php _e('Donate to project', 'akfw')?></a></li>
     181                <?php endif; ?>
     182            </ul>
     183        </dd>
     184    </dl>
     185<?php
     186}
     187
     188/**
     189 * Copyright, authoring and versions for admin pages footer.
     190 *
     191 * @since 0.5
     192 *
     193 * @param string $mod_id Module ID
     194 * @param int $year First copyrigh year.
     195 * @return void
     196 */
     197function ak_admin_footer ( $mod_id, $year = 2009 )
     198{
     199    $mod = ak_get_object($mod_id);
     200    if ( ! $mod ) {
     201        return;
     202    }
     203    $data = $mod->getModData();
     204
     205    if ( $mod->isPlugin() ) {
     206        echo '<p class="footer"><a href="' . $mod->getModData('PluginURI') . '">' . $mod->getModData('Name') . ' ' . $mod->getModData('Version') .
     207             '</a> &nbsp; &copy; Copyright ';
     208        if ( 2010 != $year ) {
     209            echo $year . '-';
     210        }
     211        echo date('Y') . ' ' . $mod->getModData('Author');
     212    } elseif ( $mod->isTheme() ) {
     213        echo '<p class="footer"><a href="' . $mod->getModData('URI') . '">' . $mod->getModData('Name') . ' ' . $mod->getModData('Version') .
     214             '</a> &nbsp; &copy; Copyright ';
     215        if ( 2010 != $year ) {
     216            echo $year . '-';
     217        }
     218        echo date('Y') . ' ';
     219        echo $mod->getModData('Author');
     220    }
     221
     222    echo '<br />Framework Version: ' . get_option('ak_framework_version');
     223    if ( $mod->isChildTheme() ) {
     224        echo ' - Child theme: ' . $mod->getChildData('Name') . ' ' . $mod->getChildData('Version');
     225    }
     226    echo '</p>';
     227}
  • sideposts/trunk/framework/license.txt

    r196960 r199488  
    279279
    280280             END OF TERMS AND CONDITIONS
    281 
    282         How to Apply These Terms to Your New Programs
    283 
    284   If you develop a new program, and you want it to be of the greatest
    285 possible use to the public, the best way to achieve this is to make it
    286 free software which everyone can redistribute and change under these terms.
    287 
    288   To do so, attach the following notices to the program.  It is safest
    289 to attach them to the start of each source file to most effectively
    290 convey the exclusion of warranty; and each file should have at least
    291 the "copyright" line and a pointer to where the full notice is found.
    292 
    293     <one line to give the program's name and a brief idea of what it does.>
    294     Copyright (C) <year>  <name of author>
    295 
    296     This program is free software; you can redistribute it and/or modify
    297     it under the terms of the GNU General Public License as published by
    298     the Free Software Foundation; either version 2 of the License, or
    299     (at your option) any later version.
    300 
    301     This program is distributed in the hope that it will be useful,
    302     but WITHOUT ANY WARRANTY; without even the implied warranty of
    303     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    304     GNU General Public License for more details.
    305 
    306     You should have received a copy of the GNU General Public License along
    307     with this program; if not, write to the Free Software Foundation, Inc.,
    308     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    309 
    310 Also add information on how to contact you by electronic and paper mail.
    311 
    312 If the program is interactive, make it output a short notice like this
    313 when it starts in an interactive mode:
    314 
    315     Gnomovision version 69, Copyright (C) year name of author
    316     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    317     This is free software, and you are welcome to redistribute it
    318     under certain conditions; type `show c' for details.
    319 
    320 The hypothetical commands `show w' and `show c' should show the appropriate
    321 parts of the General Public License.  Of course, the commands you use may
    322 be called something other than `show w' and `show c'; they could even be
    323 mouse-clicks or menu items--whatever suits your program.
    324 
    325 You should also get your employer (if you work as a programmer) or your
    326 school, if any, to sign a "copyright disclaimer" for the program, if
    327 necessary.  Here is a sample; alter the names:
    328 
    329   Yoyodyne, Inc., hereby disclaims all copyright interest in the program
    330   `Gnomovision' (which makes passes at compilers) written by James Hacker.
    331 
    332   <signature of Ty Coon>, 1 April 1989
    333   Ty Coon, President of Vice
    334 
    335 This General Public License does not permit incorporating your program into
    336 proprietary programs.  If your program is a subroutine library, you may
    337 consider it more useful to permit linking proprietary applications with the
    338 library.  If this is what you want to do, use the GNU Lesser General
    339 Public License instead of this License.
  • sideposts/trunk/framework/loader.php

    r196960 r199488  
    2828 */
    2929
    30 $akf_version = '0.4.2';
     30// TODO: Bybapass framework loading if already loaded.
     31// TODO: Load Framework at plugins_loaded or init to allow filters on plugins?
     32//       If loaded on plufins_loaded will not load for themes.
     33
     34$akf_version = '0.6';
    3135
    3236if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) {
  • sideposts/trunk/framework/vendor/upload/class.upload.php

    r196960 r199488  
    21272127     * @param  array  $file $_FILES['form_field']
    21282128     *    or   string $file Local filename
    2129      * @param  string $textDomain Optional translation textdomain
    2130      */
    2131     function akUpload( $file, $textDomain = '' ) {
     2129     */
     2130    function akUpload( $file ) {
    21322131
    21332132        $this->version            = '0.28';
     
    21702169
    21712170        $this->translation = array();
    2172         $this->translation['file_error']                  = __('File error. Please try again.', $textDomain);
    2173         $this->translation['local_file_missing']          = __('Local file doesn\'t exist.', $textDomain);
    2174         $this->translation['local_file_not_readable']     = __('Local file is not readable.', $textDomain);
    2175         $this->translation['uploaded_too_big_ini']        = __('File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini).', $textDomain);
    2176         $this->translation['uploaded_too_big_html']       = __('File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form).', $textDomain);
    2177         $this->translation['uploaded_partial']            = __('File upload error (the uploaded file was only partially uploaded).', $textDomain);
    2178         $this->translation['uploaded_missing']            = __('File upload error (no file was uploaded).', $textDomain);
    2179         $this->translation['uploaded_no_tmp_dir']         = __('File upload error (missing a temporary folder).', $textDomain);
    2180         $this->translation['uploaded_cant_write']         = __('File upload error (failed to write file to disk).', $textDomain);
    2181         $this->translation['uploaded_err_extension']      = __('File upload error (file upload stopped by extension).', $textDomain);
    2182         $this->translation['uploaded_unknown']            = __('File upload error (unknown error code).', $textDomain);
    2183         $this->translation['try_again']                   = __('File upload error. Please try again.', $textDomain);
    2184         $this->translation['file_too_big']                = __('File too big.', $textDomain);
    2185         $this->translation['no_mime']                     = __('MIME type can\'t be detected.', $textDomain);
    2186         $this->translation['incorrect_file']              = __('Incorrect type of file.', $textDomain);
    2187         $this->translation['image_too_wide']              = __('Image too wide.', $textDomain);
    2188         $this->translation['image_too_narrow']            = __('Image too narrow.', $textDomain);
    2189         $this->translation['image_too_high']              = __('Image too high.', $textDomain);
    2190         $this->translation['image_too_short']             = __('Image too short.', $textDomain);
    2191         $this->translation['ratio_too_high']              = __('Image ratio too high (image too wide).', $textDomain);
    2192         $this->translation['ratio_too_low']               = __('Image ratio too low (image too high).', $textDomain);
    2193         $this->translation['too_many_pixels']             = __('Image has too many pixels.', $textDomain);
    2194         $this->translation['not_enough_pixels']           = __('Image has not enough pixels.', $textDomain);
    2195         $this->translation['file_not_uploaded']           = __('File not uploaded. Can\'t carry on a process.', $textDomain);
    2196         $this->translation['already_exists']              = __('%s already exists. Please change the file name.', $textDomain);
    2197         $this->translation['temp_file_missing']           = __('No correct temp source file. Can\'t carry on a process.', $textDomain);
    2198         $this->translation['source_missing']              = __('No correct uploaded source file. Can\'t carry on a process.', $textDomain);
    2199         $this->translation['destination_dir']             = __('Destination directory can\'t be created. Can\'t carry on a process.', $textDomain);
    2200         $this->translation['destination_dir_missing']     = __('Destination directory doesn\'t exist. Can\'t carry on a process.', $textDomain);
    2201         $this->translation['destination_path_not_dir']    = __('Destination path is not a directory. Can\'t carry on a process.', $textDomain);
    2202         $this->translation['destination_dir_write']       = __('Destination directory can\'t be made writeable. Can\'t carry on a process.', $textDomain);
    2203         $this->translation['destination_path_write']      = __('Destination path is not a writeable. Can\'t carry on a process.', $textDomain);
    2204         $this->translation['temp_file']                   = __('Can\'t create the temporary file. Can\'t carry on a process.', $textDomain);
    2205         $this->translation['source_not_readable']         = __('Source file is not readable. Can\'t carry on a process.', $textDomain);
    2206         $this->translation['no_create_support']           = __('No create from %s support.', $textDomain);
    2207         $this->translation['create_error']                = __('Error in creating %s image from source.', $textDomain);
    2208         $this->translation['source_invalid']              = __('Can\'t read image source. Not an image?.', $textDomain);
    2209         $this->translation['gd_missing']                  = __('GD doesn\'t seem to be present.', $textDomain);
    2210         $this->translation['watermark_no_create_support'] = __('No create from %s support, can\'t read watermark.', $textDomain);
    2211         $this->translation['watermark_create_error']      = __('No %s read support, can\'t create watermark.', $textDomain);
    2212         $this->translation['watermark_invalid']           = __('Unknown image format, can\'t read watermark.', $textDomain);
    2213         $this->translation['file_create']                 = __('No %s create support.', $textDomain);
    2214         $this->translation['no_conversion_type']          = __('No conversion type defined.', $textDomain);
    2215         $this->translation['copy_failed']                 = __('Error copying file on the server. copy() failed.', $textDomain);
    2216         $this->translation['reading_failed']              = __('Error reading the file.', $textDomain);
     2171        $this->translation['file_error']                  = __('File error. Please try again.', 'akfw');
     2172        $this->translation['local_file_missing']          = __('Local file doesn\'t exist.', 'akfw');
     2173        $this->translation['local_file_not_readable']     = __('Local file is not readable.', 'akfw');
     2174        $this->translation['uploaded_too_big_ini']        = __('File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini).', 'akfw');
     2175        $this->translation['uploaded_too_big_html']       = __('File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form).', 'akfw');
     2176        $this->translation['uploaded_partial']            = __('File upload error (the uploaded file was only partially uploaded).', 'akfw');
     2177        $this->translation['uploaded_missing']            = __('File upload error (no file was uploaded).', 'akfw');
     2178        $this->translation['uploaded_no_tmp_dir']         = __('File upload error (missing a temporary folder).', 'akfw');
     2179        $this->translation['uploaded_cant_write']         = __('File upload error (failed to write file to disk).', 'akfw');
     2180        $this->translation['uploaded_err_extension']      = __('File upload error (file upload stopped by extension).', 'akfw');
     2181        $this->translation['uploaded_unknown']            = __('File upload error (unknown error code).', 'akfw');
     2182        $this->translation['try_again']                   = __('File upload error. Please try again.', 'akfw');
     2183        $this->translation['file_too_big']                = __('File too big.', 'akfw');
     2184        $this->translation['no_mime']                     = __('MIME type can\'t be detected.', 'akfw');
     2185        $this->translation['incorrect_file']              = __('Incorrect type of file.', 'akfw');
     2186        $this->translation['image_too_wide']              = __('Image too wide.', 'akfw');
     2187        $this->translation['image_too_narrow']            = __('Image too narrow.', 'akfw');
     2188        $this->translation['image_too_high']              = __('Image too high.', 'akfw');
     2189        $this->translation['image_too_short']             = __('Image too short.', 'akfw');
     2190        $this->translation['ratio_too_high']              = __('Image ratio too high (image too wide).', 'akfw');
     2191        $this->translation['ratio_too_low']               = __('Image ratio too low (image too high).', 'akfw');
     2192        $this->translation['too_many_pixels']             = __('Image has too many pixels.', 'akfw');
     2193        $this->translation['not_enough_pixels']           = __('Image has not enough pixels.', 'akfw');
     2194        $this->translation['file_not_uploaded']           = __('File not uploaded. Can\'t carry on a process.', 'akfw');
     2195        $this->translation['already_exists']              = __('%s already exists. Please change the file name.', 'akfw');
     2196        $this->translation['temp_file_missing']           = __('No correct temp source file. Can\'t carry on a process.', 'akfw');
     2197        $this->translation['source_missing']              = __('No correct uploaded source file. Can\'t carry on a process.', 'akfw');
     2198        $this->translation['destination_dir']             = __('Destination directory can\'t be created. Can\'t carry on a process.', 'akfw');
     2199        $this->translation['destination_dir_missing']     = __('Destination directory doesn\'t exist. Can\'t carry on a process.', 'akfw');
     2200        $this->translation['destination_path_not_dir']    = __('Destination path is not a directory. Can\'t carry on a process.', 'akfw');
     2201        $this->translation['destination_dir_write']       = __('Destination directory can\'t be made writeable. Can\'t carry on a process.', 'akfw');
     2202        $this->translation['destination_path_write']      = __('Destination path is not a writeable. Can\'t carry on a process.', 'akfw');
     2203        $this->translation['temp_file']                   = __('Can\'t create the temporary file. Can\'t carry on a process.', 'akfw');
     2204        $this->translation['source_not_readable']         = __('Source file is not readable. Can\'t carry on a process.', 'akfw');
     2205        $this->translation['no_create_support']           = __('No create from %s support.', 'akfw');
     2206        $this->translation['create_error']                = __('Error in creating %s image from source.', 'akfw');
     2207        $this->translation['source_invalid']              = __('Can\'t read image source. Not an image?.', 'akfw');
     2208        $this->translation['gd_missing']                  = __('GD doesn\'t seem to be present.', 'akfw');
     2209        $this->translation['watermark_no_create_support'] = __('No create from %s support, can\'t read watermark.', 'akfw');
     2210        $this->translation['watermark_create_error']      = __('No %s read support, can\'t create watermark.', 'akfw');
     2211        $this->translation['watermark_invalid']           = __('Unknown image format, can\'t read watermark.', 'akfw');
     2212        $this->translation['file_create']                 = __('No %s create support.', 'akfw');
     2213        $this->translation['no_conversion_type']          = __('No conversion type defined.', 'akfw');
     2214        $this->translation['copy_failed']                 = __('Error copying file on the server. copy() failed.', 'akfw');
     2215        $this->translation['reading_failed']              = __('Error reading the file.', 'akfw');
    22172216
    22182217        // determines the supported MIME types, and matching image format
  • sideposts/trunk/includes/deprecated.php

    r196960 r199488  
    55 * @version     $Rev$
    66 * @author      Jordi Canals
    7  * @copyright   Copyright (C) 2009, 2010 Jordi Canals
     7 * @copyright   Copyright (C) 2008, 2009, 2010 Jordi Canals
    88 * @license     GNU General Public License version 2
    99 * @link        http://alkivia.org
     
    1212 *
    1313
    14     Copyright 2009, 2010 Jordi Canals <devel@jcanals.cat>
     14    Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat>
    1515
    1616    This program is free software; you can redistribute it and/or
     
    3636}
    3737add_filter('sideposts_style_url', '_ak_df_sideposts_style');
     38
     39/**
     40 * 'ak_sideposts_style_admin' replaces 'sideposts_style_admin'
     41 * @deprecated since 2.5.1
     42 */
     43function _ak_df_sideposts_admin_css ( $data )
     44{
     45    return apply_filters('ak_sideposts_style_admin', $data);
     46}
     47add_filer('sideposts_style_admin', '_ak_df_sideposts_admin_css');
     48
     49/**
     50 * 'ak_sideposts_thumbnail' replaces 'sideposts_thumbnail'
     51 * @deprecated since 2.5.3
     52 */
     53function _ak_df_sideposts_thumbnail ( $data )
     54{
     55    return apply_filters('ak_sideposts_thumbnail', $data);
     56}
     57add_filter('sideposts_thumbnail', '_ak_df_sideposts_thumbnail');
     58
     59/**
     60 * 'ak_sideposts_picture' replaces 'sideposts_picture'
     61 * @deprecated since 2.5.3
     62 */
     63function _ak_df_sideposts_picture ( $data )
     64{
     65    return apply_filters('ak_sideposts_picture', $data);
     66}
     67add_filter('sideposts_picture', '_ak_df_sideposts_picture');
     68
     69/**
     70 * 'ak_sideposts_date' replaces 'sideposts_date'
     71 * @deprecated since 2.5.3
     72 */
     73function _ak_df_sideposts_date ( $data )
     74{
     75    return apply_filters('ak_sideposts_date', $data);
     76}
     77add_filter('sideposts_date', '_ak_df_sideposts_date');
  • sideposts/trunk/includes/plugin.php

    r196960 r199488  
    77 * @version     $Rev$
    88 * @author      Jordi Canals
    9  * @copyright   Copyright (C) 2009, 2010 Jordi Canals
     9 * @copyright   Copyright (C) 2008, 2009, 2010 Jordi Canals
    1010 * @license     GNU General Public License version 2
    1111 * @link        http://alkivia.org
     
    1414 *
    1515
    16     Copyright 2009, 2010 Jordi Canals <devel@jcanals.cat>
     16    Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat>
    1717
    1818    This program is free software; you can redistribute it and/or
     
    151151        }
    152152
    153         return apply_filters($this->ID . '_thumbnail', $thumbnail);
     153        return apply_filters('ak_' . $this->ID . '_thumbnail', $thumbnail);
    154154    }
    155155
     
    181181        }
    182182
    183         return apply_filters($this->ID . '_picture', $picture);
     183        return apply_filters('ak_' . $this->ID . '_picture', $picture);
    184184    }
    185185
  • sideposts/trunk/includes/widget.php

    r196960 r199488  
    55 * @version     $Rev$
    66 * @author      Jordi Canals
    7  * @copyright   Copyright (C) 2009, 2010 Jordi Canals
     7 * @copyright   Copyright (C) 2008, 2009, 2010 Jordi Canals
    88 * @license     GNU General Public License version 2
    99 * @link        http://alkivia.org
     
    1212 *
    1313
    14     Copyright 2009, 2010 Jordi Canals <devel@jcanals.cat>
     14    Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat>
    1515
    1616    This program is free software; you can redistribute it and/or
     
    5353
    5454    /**
     55     * Value for private posts category
     56     */
     57    const private_posts = -99;
     58
     59    /**
    5560     * Class constructor.
    5661     * @see WP_Widget::__construct()
     
    7277    {
    7378        $this->sideposts->savePost();
    74         extract( $args, EXTR_SKIP );
     79        extract( $args, EXTR_SKIP );
    7580
    7681        $category = (int) $instance['category'];
     
    8893        $numposts = (int) $instance['numposts'];
    8994        if ( 1 > $numposts ) {      // Defaults to 3 posts on sidebar
    90             $numposts = 3;
     95            $instance['numposts'] = 3;
    9196        } elseif ( 20 < $numposts ) {   // No more than 20 posts.
    92             $numposts = 20;
    93         }
    94 
    95         $qargs = array( 'showposts' => $numposts );
     97            $instance['numposts'] = 20;
     98        }
     99
     100        $qargs = array( 'showposts' => (int) $instance['numposts'] );
    96101        if ( -99 == (int) $category ) {
    97102            $qargs['post_status'] = 'private';
     
    104109        }
    105110
    106         $q = new WP_Query($qargs);
    107         $current_count = 0;
    108         if ( $q->have_posts() ) {
    109             $num_posts = $q->post_count;
    110 
    111             echo $before_widget;
    112             if ( !empty($instance['title']) ) {
    113                 echo $before_title. $instance['title'] . $after_title;
    114             }
    115             echo '<ul>' . PHP_EOL;
    116 
    117             while ( $q->have_posts() ) {
    118                 $q->the_post();
    119 
    120                 ++$current_count;
    121                 $li_class = ' class="spli"';
    122                 if ( 1 < $num_posts ) {    // Need to have more than one post.
    123                     if ( 1 == $current_count) {
    124                         $li_class = ' class="spli-first"';    // First item.
    125                     } elseif ( $current_count == $num_posts ) {
    126                         $li_class = ' class="spli-last"';    // Last item.
    127                     }
    128                 }
    129 
    130                 echo '<li' . $li_class . '>';
    131                 echo '<span class="sideposts-title"><a href="'. get_permalink() .'">'. get_the_title() .'</a></span>';
    132 
    133                 if ( 'title' != $instance['show']) {
    134                     global $post;
    135                     $date_string = '<span class="sideposts_date">'. mysql2date(get_option('date_format'), $post->post_date) . ' | ' . get_the_time() .'</span>';
    136                     echo '<br />' . apply_filters($this->pid . '_date',  $date_string);
    137 
    138                     switch ( $instance['show'] ) {
    139                         case 'posts' :
    140                             global $more;
    141                             $more = false;
    142                             the_content('<p>' . __('Read more &raquo;', $this->pid) . '</p>');
    143                             break;
    144                         case 'ex-thumb' :
    145                             echo '<p>'. $this->sideposts->excerptThumbnail($instance) . get_the_excerpt() . '</p>';
    146                             // echo '<p><a href="'. get_permalink() .'">'. __('Read full post &raquo;', $this->pid) .'</a></p>';
    147                             break;
    148                         case 'excerpt' :
    149                             the_excerpt();
    150                             // echo '<p><a href="'. get_permalink() .'">'. __('Read full post &raquo;', $this->pid) .'</a></p>';
    151                             break;
    152                         case 'photoblog' :
    153                             echo '<p>' . $this->sideposts->mediumImage($instance) . '</p>';
    154                             the_excerpt();
    155                             echo '<p>';
    156                             comments_popup_link( __('No Comments', $this->pid),
    157                                                  __('1 Comment', $this->pid),
    158                                                  __('% Comments', $this->pid),
    159                                                  'sideposts-comments',
    160                                                  __('Comments closed', $this->pid));
    161                             echo '</p>';
    162                             break;
    163                     }
    164                 }
    165 
    166                 echo '</li>' . PHP_EOL;
    167             }
    168 
    169             if ( -99 != (int) $category ) {
    170                 echo '<li class="spli-archive">' . PHP_EOL;
    171                 echo '<a href="'
    172                     . get_category_feed_link($category) .'"><img style="border:0;float:right;" src="'
    173                     . $this->sideposts->getURL() . 'rss.png" alt="RSS" /></a>';
    174 
    175                 echo '<a href="' . get_category_link($category) .'">';
    176                 _e('Archive for', $this->pid);
    177                 echo ' '. $instance['title'] .'</a> &raquo;</li>' . PHP_EOL; // get_the_category_by_ID($category)
    178             }
    179 
    180             echo '</ul>' . PHP_EOL;
    181             echo $after_widget;
    182 
    183             $this->sideposts->restorePost(); // Revert to the previous post status.
    184         }
     111        $query = new WP_Query($qargs);
     112        if ( $query->have_posts() ) {
     113            echo $before_widget;
     114            if ( ! empty($instance['title']) ) {
     115                echo $before_title . $instance['title'] . $after_title;
     116            }
     117            echo '<ul>' . PHP_EOL;
     118
     119            require_once ( AK_CLASSES . '/template.php' );
     120
     121            $tpl = new akTemplate($this->templatesPath());
     122            $tpl->textDomain($this->pid);
     123
     124            $tpl->assign('widget', $instance);
     125            $tpl->assign('args', $args);
     126            $tpl->assignByRef('query', $query);
     127
     128            $tpl->display($instance['show']);
     129
     130            echo '</ul>' . PHP_EOL;
     131            echo $after_widget;
     132        }
     133
     134        $this->sideposts->restorePost(); // Revert to the previous post status.
    185135    }
    186136
     
    224174        <p>
    225175            <?php _e('Show:', $this->pid); ?><select name="<?php echo $this->get_field_name('show'); ?>" id="<?php echo $this->get_field_id('show'); ?>" class="widefat">
    226                 <option value="posts" <?php selected('posts', $instance['show']); ?>><?php _e('Full Post', $this->pid); ?></option>
    227                 <option value="excerpt" <?php selected('excerpt', $instance['show']); ?>><?php _e('Post Excerpt', $this->pid); ?></option>
    228                 <option value="ex-thumb" <?php selected('ex-thumb', $instance['show']); ?>><?php _e('Excerpts with thumbnails', $this->pid); ?></option>
    229                 <option value="photoblog" <?php selected('photoblog', $instance['show']); ?>><?php _e('Photo Blog', $this->pid); ?></option>
    230                 <option value="title"<?php selected('title', $instance['show']); ?>><?php _e('Only Post Title', $this->pid); ?></option>
     176            <?php
     177                $templates = ak_get_templates($this->templatesPath(), 'with_ext=0&tree=0');
     178                foreach ( $templates as $tpl ) :
     179                    switch ( $tpl ) {    // For compatibility with older versions settings
     180                        case 'posts' :
     181                            $tpl_title = __('Full Post', $this->pid);
     182                            break;
     183                        case 'excerpt' :
     184                            $tpl_title = __('Post Excerpt', $this->pid);
     185                            break;
     186                        case 'ex-thumb' :
     187                            $tpl_title = __('Excerpts with thumbnails', $this->pid);
     188                            break;
     189                        case 'photoblog' :
     190                            $tpl_title = __('Photo Blog', $this->pid);
     191                            break;
     192                        case 'title' :
     193                            $tpl_title = __('Only Post Title', $this->pid);
     194                            break;
     195                        default :
     196                            $tpl_title = ucfirst($tpl);
     197                    }
     198            ?>
     199                <option value="<?php echo $tpl; ?>" <?php selected($tpl, $instance['show']); ?>><?php echo $tpl_title; // _e('Full Post', $this->pid); ?></option>
     200            <?php endforeach; ?>
    231201            </select>
    232202        </p><p>
     
    262232        return $instance;
    263233    }
     234
     235    /**
     236     * Returns an array with all templates directories.
     237     *
     238     * @return array Locations for template files.
     239     */
     240    private function templatesPath()
     241    {
     242        $folders[] = SPOSTS_PATH . '/templates';
     243        if ( $path = $this->sideposts->getOption('templates-path') ) {
     244            $folders[] = SPOSTS_PATH . '/templates';
     245        }
     246
     247        return $folders;
     248    }
    264249}
  • sideposts/trunk/lang/sideposts-by_BY.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Marcis Gasuns <www.comfi.com>\n"
    99"MIME-Version: 1.0\n"
     
    1313"X-Poedit-Country: BELARUS\n"
    1414
    15 #: ../sideposts.php:55
    16 #: ../lib/class.plugin.php:485
    17 #: ../lib/class.plugin.php:522
     15#: ../sideposts.php:54
    1816msgid "Warning:"
    1917msgstr ""
    2018
    21 #: ../sideposts.php:56
     19#: ../sideposts.php:55
    2220#, php-format
    2321msgid "The active plugin %s is not compatible with your PHP version."
    2422msgstr ""
    2523
    26 #: ../sideposts.php:58
     24#: ../sideposts.php:57
    2725#, php-format
    2826msgid "%s is required for this plugin."
    2927msgstr ""
    3028
    31 #: ../lib/class.plugin.php:486
    32 #, fuzzy, php-format
    33 msgid "The active plugin %s is not compatible with your WordPress version."
    34 msgstr "Гэты плагін не сумяшчальны з вашай сістэмай. Памылка ў функцыях бакавой панэлі або няправільная версія WordPress"
     29#: ../includes/functions.php:49
     30#, fuzzy
     31msgid "Archive"
     32msgstr "Архіў для"
    3533
    36 #: ../lib/class.plugin.php:488
    37 #, php-format
    38 msgid "WordPress %s is required to run this plugin."
    39 msgstr ""
     34#: ../includes/functions.php:51
     35msgid "Archive for"
     36msgstr "Архіў для"
    4037
    41 #: ../lib/class.plugin.php:523
    42 msgid "Standard sidebar functions are not present."
    43 msgstr ""
    44 
    45 #: ../lib/class.plugin.php:524
    46 #, php-format
    47 msgid "It is required to use the standard sidebar to run %s"
    48 msgstr ""
    49 
    50 #: ../lib/class.sideposts-widget.php:53
     38#: ../includes/widget.php:68
    5139msgid "A widget to move posts to the sidebar."
    5240msgstr "Віджэт для перамяшчэння пастоў на бакавую панэль"
    5341
    54 #: ../lib/class.sideposts-widget.php:69
     42#: ../includes/widget.php:83
    5543msgid "Category not selected."
    5644msgstr "Катэгорыі не вылучаны"
    5745
    58 #: ../lib/class.sideposts-widget.php:133
    59 msgid "Read more &raquo;"
    60 msgstr "Чытаць далей &raquo;"
    61 
    62 #: ../lib/class.sideposts-widget.php:147
    63 msgid "No Comments"
    64 msgstr ""
    65 
    66 #: ../lib/class.sideposts-widget.php:148
    67 msgid "1 Comment"
    68 msgstr ""
    69 
    70 #: ../lib/class.sideposts-widget.php:149
    71 msgid "% Comments"
    72 msgstr ""
    73 
    74 #: ../lib/class.sideposts-widget.php:151
    75 msgid "Comments closed"
    76 msgstr ""
    77 
    78 #: ../lib/class.sideposts-widget.php:167
    79 msgid "Archive for"
    80 msgstr "Архіў для"
    81 
    82 #: ../lib/class.sideposts-widget.php:195
     46#: ../includes/widget.php:155
    8347msgid "Title:"
    8448msgstr "Назва:"
    8549
    86 #: ../lib/class.sideposts-widget.php:196
     50#: ../includes/widget.php:156
    8751msgid "Category:"
    8852msgstr "Катэгорыя:"
    8953
    90 #: ../lib/class.sideposts-widget.php:198
     54#: ../includes/widget.php:158
    9155msgid "-- PRIVATE POSTS --"
    9256msgstr ""
    9357
    94 #: ../lib/class.sideposts-widget.php:210
     58#: ../includes/widget.php:170
    9559msgid "Number of posts:"
    9660msgstr "Колькасць паведамленняў:"
    9761
    98 #: ../lib/class.sideposts-widget.php:212
     62#: ../includes/widget.php:172
    9963#, php-format
    10064msgid "(At most %d)"
    10165msgstr "(Максімальна %d)"
    10266
    103 #: ../lib/class.sideposts-widget.php:215
     67#: ../includes/widget.php:175
    10468msgid "Show:"
    10569msgstr "Паказваць:"
    10670
    107 #: ../lib/class.sideposts-widget.php:216
     71#: ../includes/widget.php:181
    10872msgid "Full Post"
    10973msgstr "Пост цалкам"
    11074
    111 #: ../lib/class.sideposts-widget.php:217
     75#: ../includes/widget.php:184
    11276msgid "Post Excerpt"
    11377msgstr "Вытрымка з паведамлення"
    11478
    115 #: ../lib/class.sideposts-widget.php:218
     79#: ../includes/widget.php:187
    11680msgid "Excerpts with thumbnails"
    11781msgstr "Вытрымка з эскізам:"
    11882
    119 #: ../lib/class.sideposts-widget.php:219
     83#: ../includes/widget.php:190
    12084msgid "Photo Blog"
    12185msgstr ""
    12286
    123 #: ../lib/class.sideposts-widget.php:220
     87#: ../includes/widget.php:193
    12488msgid "Only Post Title"
    12589msgstr ""
    12690
    127 #: ../lib/class.sideposts-widget.php:224
     91#: ../includes/widget.php:204
    12892msgid "Show category on all feeds"
    12993msgstr ""
    13094
    131 #: ../lib/class.sideposts-widget.php:226
     95#: ../includes/widget.php:206
    13296#, fuzzy
    13397msgid "Image width:"
    13498msgstr "Шырыня эскіза:"
    13599
    136 #: ../lib/class.sideposts-widget.php:228
     100#: ../includes/widget.php:208
    137101msgid "pixels"
    138102msgstr "пикселі"
    139103
    140 #: ../lib/class.sideposts-widget.php:231
     104#: ../includes/widget.php:211
    141105msgid "Align thumbnail to right"
    142106msgstr ""
    143107
     108#: ../templates/photoblog.php:48
     109msgid "No Comments"
     110msgstr ""
     111
     112#: ../templates/photoblog.php:49
     113msgid "1 Comment"
     114msgstr ""
     115
     116#: ../templates/photoblog.php:50
     117msgid "% Comments"
     118msgstr ""
     119
     120#: ../templates/photoblog.php:52
     121msgid "Comments closed"
     122msgstr ""
     123
     124#: ../templates/posts.php:46
     125msgid "Read more &raquo;"
     126msgstr "Чытаць далей &raquo;"
     127
     128#, fuzzy
     129#~ msgid "The active plugin %s is not compatible with your WordPress version."
     130#~ msgstr ""
     131#~ "Гэты плагін не сумяшчальны з вашай сістэмай. Памылка ў функцыях бакавой "
     132#~ "панэлі або няправільная версія WordPress"
    144133#~ msgid "Read full post &raquo;"
    145134#~ msgstr "Чытаць паведамленне цалкам &raquo;"
  • sideposts/trunk/lang/sideposts-ca.po

    r196960 r199488  
    33"Project-Id-Version: Alkivia SidePosts\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-18 20:47+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1515"X-Poedit-KeywordsList: \n"
    1616
    17 #: ../sideposts.php:53
    18 #: ../framework/classes/abstract/plugin.php:212
    19 #: ../framework/classes/abstract/plugin.php:231
     17#: ../sideposts.php:54
    2018msgid "Warning:"
    2119msgstr "Atenció:"
    2220
    23 #: ../sideposts.php:54
     21#: ../sideposts.php:55
    2422#, php-format
    2523msgid "The active plugin %s is not compatible with your PHP version."
    2624msgstr "L'extensió activa %s no és compatible amb la vostre versió de PHP."
    2725
    28 #: ../sideposts.php:56
     26#: ../sideposts.php:57
    2927#, php-format
    3028msgid "%s is required for this plugin."
    3129msgstr "Es requereix %s per executar aquesta extensió."
    3230
    33 #: ../framework/classes/abstract/module.php:470
    34 msgid "Option blocked by administrator."
    35 msgstr "Opció desactivada per l'administrador."
    36 
    37 #: ../framework/classes/abstract/plugin.php:213
    38 #, php-format
    39 msgid "The active plugin %s is not compatible with your WordPress version."
    40 msgstr "L'extensió activa %s no és compatible amb la vostre versió de WordPress."
    41 
    42 #: ../framework/classes/abstract/plugin.php:215
    43 #, php-format
    44 msgid "WordPress %s is required to run this plugin."
    45 msgstr "Es requereix WordPress %s per executar aquesta extensió."
    46 
    47 #: ../framework/classes/abstract/plugin.php:232
    48 msgid "Standard sidebar functions are not present."
    49 msgstr "Manquen algunes funcions de la barra lateral estàndar."
    50 
    51 #: ../framework/classes/abstract/plugin.php:233
    52 #, php-format
    53 msgid "It is required to use the standard sidebar to run %s"
    54 msgstr "És imprescindible utilitzar la barra lateral estàndar per executar %s"
    55 
    56 #: ../framework/lib/formating.php:51
    57 msgid "Settings saved."
    58 msgstr "Opcions desades."
    59 
    60 #: ../framework/lib/formating.php:160
    61 msgid "Just Now"
    62 msgstr "Ara mateix"
    63 
    64 #: ../framework/lib/formating.php:163
    65 #, php-format
    66 msgid "1 minute ago"
    67 msgid_plural "%d minutes ago"
    68 msgstr[0] "Fa 1 minut"
    69 msgstr[1] "Fa %d minuts"
    70 
    71 #: ../framework/lib/formating.php:166
    72 #, php-format
    73 msgid "1 hour ago"
    74 msgid_plural "%d hours ago"
    75 msgstr[0] "Fa 1 hora"
    76 msgstr[1] "Fa %d hores"
    77 
    78 #: ../framework/lib/formating.php:170
    79 #, php-format
    80 msgid "Today at %s"
    81 msgstr "Avui a les %s"
    82 
    83 #: ../framework/lib/formating.php:170
    84 #, php-format
    85 msgid "Yesterday at %s"
    86 msgstr "Ahir a les %s"
    87 
    88 #: ../framework/vendor/upload/class.upload.php:2172
    89 msgid "File error. Please try again."
    90 msgstr "Error de fitxer. Si us plau, torneu-ho a provar."
    91 
    92 #: ../framework/vendor/upload/class.upload.php:2173
    93 msgid "Local file doesn't exist."
    94 msgstr "El fitxer local no existeix."
    95 
    96 #: ../framework/vendor/upload/class.upload.php:2174
    97 msgid "Local file is not readable."
    98 msgstr "El fitxer local no es pot llegir."
    99 
    100 #: ../framework/vendor/upload/class.upload.php:2175
    101 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."
    102 msgstr "Error de pujada de fitxer (El fitxer pujat excedeix de la directiva upload_max_filesize de php.ini)."
    103 
    104 #: ../framework/vendor/upload/class.upload.php:2176
    105 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."
    106 msgstr "Error pujant el fitxer (el fitxer pujat excedeix la directiva MAX_FILE_SIZE que s'ha especificat al formulari HTML)."
    107 
    108 #: ../framework/vendor/upload/class.upload.php:2177
    109 msgid "File upload error (the uploaded file was only partially uploaded)."
    110 msgstr "Error pujant el fitxer (El fitxer només s'ha rebut parcialment)."
    111 
    112 #: ../framework/vendor/upload/class.upload.php:2178
    113 msgid "File upload error (no file was uploaded)."
    114 msgstr "Error pujant el fitxer (No s'ha rebut cap fitxer)."
    115 
    116 #: ../framework/vendor/upload/class.upload.php:2179
    117 msgid "File upload error (missing a temporary folder)."
    118 msgstr "Error pujant el fitxer (manca la carpeta temporal)."
    119 
    120 #: ../framework/vendor/upload/class.upload.php:2180
    121 msgid "File upload error (failed to write file to disk)."
    122 msgstr "Error pujant el fitxer (No s'ha pogut escriure al disc)."
    123 
    124 #: ../framework/vendor/upload/class.upload.php:2181
    125 msgid "File upload error (file upload stopped by extension)."
    126 msgstr "Error pujant el fitxer (El fitxer s'ha bloquejat per extensió)."
    127 
    128 #: ../framework/vendor/upload/class.upload.php:2182
    129 msgid "File upload error (unknown error code)."
    130 msgstr "Error pujant el fitxer (Codi d'error desconegut)."
    131 
    132 #: ../framework/vendor/upload/class.upload.php:2183
    133 msgid "File upload error. Please try again."
    134 msgstr "S'ha produït un error pujant el fitxer. Torneu-ho a provar d'aquí una estona."
    135 
    136 #: ../framework/vendor/upload/class.upload.php:2184
    137 msgid "File too big."
    138 msgstr "Fitxer massa gran."
    139 
    140 #: ../framework/vendor/upload/class.upload.php:2185
    141 msgid "MIME type can't be detected."
    142 msgstr "No es pot detectar el tipus MIME."
    143 
    144 #: ../framework/vendor/upload/class.upload.php:2186
    145 msgid "Incorrect type of file."
    146 msgstr "Tipus d'arxiu invàlid"
    147 
    148 #: ../framework/vendor/upload/class.upload.php:2187
    149 msgid "Image too wide."
    150 msgstr "Imatge massa ample."
    151 
    152 #: ../framework/vendor/upload/class.upload.php:2188
    153 msgid "Image too narrow."
    154 msgstr "Imatge massa estreta."
    155 
    156 #: ../framework/vendor/upload/class.upload.php:2189
    157 msgid "Image too high."
    158 msgstr "Imatge massa alta."
    159 
    160 #: ../framework/vendor/upload/class.upload.php:2190
    161 msgid "Image too short."
    162 msgstr "Imatge massa baixa."
    163 
    164 #: ../framework/vendor/upload/class.upload.php:2191
    165 msgid "Image ratio too high (image too wide)."
    166 msgstr "Ratio d'imatge massa gran (Imatge massa ample)."
    167 
    168 #: ../framework/vendor/upload/class.upload.php:2192
    169 msgid "Image ratio too low (image too high)."
    170 msgstr "Ratio d'imatge massa baix (Imatge massa alta)."
    171 
    172 #: ../framework/vendor/upload/class.upload.php:2193
    173 msgid "Image has too many pixels."
    174 msgstr "La imatge té massa píxels."
    175 
    176 #: ../framework/vendor/upload/class.upload.php:2194
    177 msgid "Image has not enough pixels."
    178 msgstr "La imatge no té prou píxels."
    179 
    180 #: ../framework/vendor/upload/class.upload.php:2195
    181 msgid "File not uploaded. Can't carry on a process."
    182 msgstr "No s'ha pujat el fitxer. No s'ha pogut executar el procés."
    183 
    184 #: ../framework/vendor/upload/class.upload.php:2196
    185 #, php-format
    186 msgid "%s already exists. Please change the file name."
    187 msgstr "El fitxer %s ja existeix. Si en plau canvieu-ne el nom."
    188 
    189 #: ../framework/vendor/upload/class.upload.php:2197
    190 msgid "No correct temp source file. Can't carry on a process."
    191 msgstr "El fitxer temporal no es correcte. No es pot executar el procés."
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2198
    194 msgid "No correct uploaded source file. Can't carry on a process."
    195 msgstr "El fitxer original no es correcte. No es pot executar el procés."
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2199
    198 msgid "Destination directory can't be created. Can't carry on a process."
    199 msgstr "No es pot crear el directori de destí. No es pot executar el procés."
    200 
    201 #: ../framework/vendor/upload/class.upload.php:2200
    202 msgid "Destination directory doesn't exist. Can't carry on a process."
    203 msgstr "El directori de destí no existeix. No es pot executar el procés."
    204 
    205 #: ../framework/vendor/upload/class.upload.php:2201
    206 msgid "Destination path is not a directory. Can't carry on a process."
    207 msgstr "La ruta de destí no és un directori. No es pot executar el procés."
    208 
    209 #: ../framework/vendor/upload/class.upload.php:2202
    210 msgid "Destination directory can't be made writeable. Can't carry on a process."
    211 msgstr "No es pot canviar a 'escriure' els drets del directori de destí. No es pot executar el procés."
    212 
    213 #: ../framework/vendor/upload/class.upload.php:2203
    214 msgid "Destination path is not a writeable. Can't carry on a process."
    215 msgstr "No es pot escriure en el directori de destí. No es pot executar el procés."
    216 
    217 #: ../framework/vendor/upload/class.upload.php:2204
    218 msgid "Can't create the temporary file. Can't carry on a process."
    219 msgstr "No es pot crear un fitxer temporal. No es pot executar el procés."
    220 
    221 #: ../framework/vendor/upload/class.upload.php:2205
    222 msgid "Source file is not readable. Can't carry on a process."
    223 msgstr "El fitxer d'origen no es pot llegir. No es pot executar el procés."
    224 
    225 #: ../framework/vendor/upload/class.upload.php:2206
    226 #, php-format
    227 msgid "No create from %s support."
    228 msgstr "No hi ha funcions per crear des de %s."
    229 
    230 #: ../framework/vendor/upload/class.upload.php:2207
    231 #, php-format
    232 msgid "Error in creating %s image from source."
    233 msgstr "Error creant la imatge %s des de l'original."
    234 
    235 #: ../framework/vendor/upload/class.upload.php:2208
    236 msgid "Can't read image source. Not an image?."
    237 msgstr "No es pot llegir la imatge original. És una imatge?"
    238 
    239 #: ../framework/vendor/upload/class.upload.php:2209
    240 msgid "GD doesn't seem to be present."
    241 msgstr "No sembla que la llibreria GD estigui present."
    242 
    243 #: ../framework/vendor/upload/class.upload.php:2210
    244 #, php-format
    245 msgid "No create from %s support, can't read watermark."
    246 msgstr "No hi ha funcions per crear des de %s, no es pot llegir la marca a l'aigua."
    247 
    248 #: ../framework/vendor/upload/class.upload.php:2211
    249 #, php-format
    250 msgid "No %s read support, can't create watermark."
    251 msgstr "No hi ha funcions per llegir %s, no es pot crear la marca a l'aigua."
    252 
    253 #: ../framework/vendor/upload/class.upload.php:2212
    254 msgid "Unknown image format, can't read watermark."
    255 msgstr "Format d'imatge desconegut, no es pot llegir la marca a l'aigua."
    256 
    257 #: ../framework/vendor/upload/class.upload.php:2213
    258 #, php-format
    259 msgid "No %s create support."
    260 msgstr "No hi ha funcions per crear %s."
    261 
    262 #: ../framework/vendor/upload/class.upload.php:2214
    263 msgid "No conversion type defined."
    264 msgstr "No s'ha definit cap tipus de conversió."
    265 
    266 #: ../framework/vendor/upload/class.upload.php:2215
    267 msgid "Error copying file on the server. copy() failed."
    268 msgstr "Error copiant el fitxer al serivor. copy() ha fallat."
    269 
    270 #: ../framework/vendor/upload/class.upload.php:2216
    271 msgid "Error reading the file."
    272 msgstr "Error llegint el fitxer."
    273 
    274 #: ../includes/widget.php:61
     31#: ../includes/functions.php:49
     32msgid "Archive"
     33msgstr "Arxiu"
     34
     35#: ../includes/functions.php:51
     36msgid "Archive for"
     37msgstr "Arxiu de"
     38
     39#: ../includes/widget.php:68
    27540msgid "A widget to move posts to the sidebar."
    27641msgstr "Un giny que desplaça apunts a la barra lateral."
    27742
    278 #: ../includes/widget.php:76
     43#: ../includes/widget.php:83
    27944msgid "Category not selected."
    28045msgstr "No s'ha indicat cap categoria."
    28146
    282 #: ../includes/widget.php:140
    283 msgid "Read more &raquo;"
    284 msgstr "Llegiu-ne més &raquo;"
    285 
    286 #: ../includes/widget.php:154
    287 msgid "No Comments"
    288 msgstr "Sense comentaris"
    289 
    29047#: ../includes/widget.php:155
    291 msgid "1 Comment"
    292 msgstr "1 comentari"
    293 
    294 #: ../includes/widget.php:156
    295 msgid "% Comments"
    296 msgstr "% comentaris"
    297 
    298 #: ../includes/widget.php:158
    299 msgid "Comments closed"
    300 msgstr "Comentaris tancats"
    301 
    302 #: ../includes/widget.php:174
    303 msgid "Archive for"
    304 msgstr "Arxiu de"
    305 
    306 #: ../includes/widget.php:203
    30748msgid "Title:"
    30849msgstr "Títol:"
    30950
    310 #: ../includes/widget.php:204
     51#: ../includes/widget.php:156
    31152msgid "Category:"
    31253msgstr "Categoria:"
    31354
    314 #: ../includes/widget.php:206
     55#: ../includes/widget.php:158
    31556msgid "-- PRIVATE POSTS --"
    31657msgstr "-- Apunts Privats --"
    31758
    318 #: ../includes/widget.php:218
     59#: ../includes/widget.php:170
    31960msgid "Number of posts:"
    32061msgstr "Nombre d'apunts:"
    32162
    322 #: ../includes/widget.php:220
     63#: ../includes/widget.php:172
    32364#, php-format
    32465msgid "(At most %d)"
    32566msgstr "(Màxim %d)"
    32667
    327 #: ../includes/widget.php:223
     68#: ../includes/widget.php:175
    32869msgid "Show:"
    32970msgstr "Mostrar:"
    33071
    331 #: ../includes/widget.php:224
     72#: ../includes/widget.php:181
    33273msgid "Full Post"
    33374msgstr "Apunt Complet"
    33475
    335 #: ../includes/widget.php:225
     76#: ../includes/widget.php:184
    33677msgid "Post Excerpt"
    33778msgstr "Només Estractes"
    33879
    339 #: ../includes/widget.php:226
     80#: ../includes/widget.php:187
    34081msgid "Excerpts with thumbnails"
    34182msgstr "Estractes amb miniatures"
    34283
    343 #: ../includes/widget.php:227
     84#: ../includes/widget.php:190
    34485msgid "Photo Blog"
    34586msgstr "Foto Bloc"
    34687
    347 #: ../includes/widget.php:228
     88#: ../includes/widget.php:193
    34889msgid "Only Post Title"
    34990msgstr "Només títol de l'apunt"
    35091
    351 #: ../includes/widget.php:232
     92#: ../includes/widget.php:204
    35293msgid "Show category on all feeds"
    35394msgstr "Mostrar en tots els fils RSS"
    35495
    355 #: ../includes/widget.php:234
     96#: ../includes/widget.php:206
    35697msgid "Image width:"
    35798msgstr "Amplada Imatge:"
    35899
    359 #: ../includes/widget.php:236
     100#: ../includes/widget.php:208
    360101msgid "pixels"
    361102msgstr "píxels"
    362103
    363 #: ../includes/widget.php:239
     104#: ../includes/widget.php:211
    364105msgid "Align thumbnail to right"
    365106msgstr "Alinear miniatura a la dreta"
    366107
     108#: ../templates/photoblog.php:48
     109msgid "No Comments"
     110msgstr "Sense comentaris"
     111
     112#: ../templates/photoblog.php:49
     113msgid "1 Comment"
     114msgstr "1 comentari"
     115
     116#: ../templates/photoblog.php:50
     117msgid "% Comments"
     118msgstr "% comentaris"
     119
     120#: ../templates/photoblog.php:52
     121msgid "Comments closed"
     122msgstr "Comentaris tancats"
     123
     124#: ../templates/posts.php:46
     125msgid "Read more &raquo;"
     126msgstr "Llegiu-ne més &raquo;"
     127
     128#~ msgid "Option blocked by administrator."
     129#~ msgstr "Opció desactivada per l'administrador."
     130#~ msgid "The active plugin %s is not compatible with your WordPress version."
     131#~ msgstr ""
     132#~ "L'extensió activa %s no és compatible amb la vostre versió de WordPress."
     133#~ msgid "WordPress %s is required to run this plugin."
     134#~ msgstr "Es requereix WordPress %s per executar aquesta extensió."
     135#~ msgid "Standard sidebar functions are not present."
     136#~ msgstr "Manquen algunes funcions de la barra lateral estàndar."
     137#~ msgid "It is required to use the standard sidebar to run %s"
     138#~ msgstr ""
     139#~ "És imprescindible utilitzar la barra lateral estàndar per executar %s"
     140#~ msgid "Settings saved."
     141#~ msgstr "Opcions desades."
     142#~ msgid "Just Now"
     143#~ msgstr "Ara mateix"
     144#~ msgid "1 minute ago"
     145#~ msgid_plural "%d minutes ago"
     146#~ msgstr[0] "Fa 1 minut"
     147#~ msgstr[1] "Fa %d minuts"
     148#~ msgid "1 hour ago"
     149#~ msgid_plural "%d hours ago"
     150#~ msgstr[0] "Fa 1 hora"
     151#~ msgstr[1] "Fa %d hores"
     152#~ msgid "Today at %s"
     153#~ msgstr "Avui a les %s"
     154#~ msgid "Yesterday at %s"
     155#~ msgstr "Ahir a les %s"
     156#~ msgid "File error. Please try again."
     157#~ msgstr "Error de fitxer. Si us plau, torneu-ho a provar."
     158#~ msgid "Local file doesn't exist."
     159#~ msgstr "El fitxer local no existeix."
     160#~ msgid "Local file is not readable."
     161#~ msgstr "El fitxer local no es pot llegir."
     162#~ msgid ""
     163#~ "File upload error (the uploaded file exceeds the upload_max_filesize "
     164#~ "directive in php.ini)."
     165#~ msgstr ""
     166#~ "Error de pujada de fitxer (El fitxer pujat excedeix de la directiva "
     167#~ "upload_max_filesize de php.ini)."
     168#~ msgid ""
     169#~ "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive "
     170#~ "that was specified in the html form)."
     171#~ msgstr ""
     172#~ "Error pujant el fitxer (el fitxer pujat excedeix la directiva "
     173#~ "MAX_FILE_SIZE que s'ha especificat al formulari HTML)."
     174#~ msgid "File upload error (the uploaded file was only partially uploaded)."
     175#~ msgstr "Error pujant el fitxer (El fitxer només s'ha rebut parcialment)."
     176#~ msgid "File upload error (no file was uploaded)."
     177#~ msgstr "Error pujant el fitxer (No s'ha rebut cap fitxer)."
     178#~ msgid "File upload error (missing a temporary folder)."
     179#~ msgstr "Error pujant el fitxer (manca la carpeta temporal)."
     180#~ msgid "File upload error (failed to write file to disk)."
     181#~ msgstr "Error pujant el fitxer (No s'ha pogut escriure al disc)."
     182#~ msgid "File upload error (file upload stopped by extension)."
     183#~ msgstr "Error pujant el fitxer (El fitxer s'ha bloquejat per extensió)."
     184#~ msgid "File upload error (unknown error code)."
     185#~ msgstr "Error pujant el fitxer (Codi d'error desconegut)."
     186#~ msgid "File upload error. Please try again."
     187#~ msgstr ""
     188#~ "S'ha produït un error pujant el fitxer. Torneu-ho a provar d'aquí una "
     189#~ "estona."
     190#~ msgid "File too big."
     191#~ msgstr "Fitxer massa gran."
     192#~ msgid "MIME type can't be detected."
     193#~ msgstr "No es pot detectar el tipus MIME."
     194#~ msgid "Incorrect type of file."
     195#~ msgstr "Tipus d'arxiu invàlid"
     196#~ msgid "Image too wide."
     197#~ msgstr "Imatge massa ample."
     198#~ msgid "Image too narrow."
     199#~ msgstr "Imatge massa estreta."
     200#~ msgid "Image too high."
     201#~ msgstr "Imatge massa alta."
     202#~ msgid "Image too short."
     203#~ msgstr "Imatge massa baixa."
     204#~ msgid "Image ratio too high (image too wide)."
     205#~ msgstr "Ratio d'imatge massa gran (Imatge massa ample)."
     206#~ msgid "Image ratio too low (image too high)."
     207#~ msgstr "Ratio d'imatge massa baix (Imatge massa alta)."
     208#~ msgid "Image has too many pixels."
     209#~ msgstr "La imatge té massa píxels."
     210#~ msgid "Image has not enough pixels."
     211#~ msgstr "La imatge no té prou píxels."
     212#~ msgid "File not uploaded. Can't carry on a process."
     213#~ msgstr "No s'ha pujat el fitxer. No s'ha pogut executar el procés."
     214#~ msgid "%s already exists. Please change the file name."
     215#~ msgstr "El fitxer %s ja existeix. Si en plau canvieu-ne el nom."
     216#~ msgid "No correct temp source file. Can't carry on a process."
     217#~ msgstr "El fitxer temporal no es correcte. No es pot executar el procés."
     218#~ msgid "No correct uploaded source file. Can't carry on a process."
     219#~ msgstr "El fitxer original no es correcte. No es pot executar el procés."
     220#~ msgid "Destination directory can't be created. Can't carry on a process."
     221#~ msgstr ""
     222#~ "No es pot crear el directori de destí. No es pot executar el procés."
     223#~ msgid "Destination directory doesn't exist. Can't carry on a process."
     224#~ msgstr "El directori de destí no existeix. No es pot executar el procés."
     225#~ msgid "Destination path is not a directory. Can't carry on a process."
     226#~ msgstr "La ruta de destí no és un directori. No es pot executar el procés."
     227#~ msgid ""
     228#~ "Destination directory can't be made writeable. Can't carry on a process."
     229#~ msgstr ""
     230#~ "No es pot canviar a 'escriure' els drets del directori de destí. No es "
     231#~ "pot executar el procés."
     232#~ msgid "Destination path is not a writeable. Can't carry on a process."
     233#~ msgstr ""
     234#~ "No es pot escriure en el directori de destí. No es pot executar el procés."
     235#~ msgid "Can't create the temporary file. Can't carry on a process."
     236#~ msgstr "No es pot crear un fitxer temporal. No es pot executar el procés."
     237#~ msgid "Source file is not readable. Can't carry on a process."
     238#~ msgstr "El fitxer d'origen no es pot llegir. No es pot executar el procés."
     239#~ msgid "No create from %s support."
     240#~ msgstr "No hi ha funcions per crear des de %s."
     241#~ msgid "Error in creating %s image from source."
     242#~ msgstr "Error creant la imatge %s des de l'original."
     243#~ msgid "Can't read image source. Not an image?."
     244#~ msgstr "No es pot llegir la imatge original. És una imatge?"
     245#~ msgid "GD doesn't seem to be present."
     246#~ msgstr "No sembla que la llibreria GD estigui present."
     247#~ msgid "No create from %s support, can't read watermark."
     248#~ msgstr ""
     249#~ "No hi ha funcions per crear des de %s, no es pot llegir la marca a "
     250#~ "l'aigua."
     251#~ msgid "No %s read support, can't create watermark."
     252#~ msgstr ""
     253#~ "No hi ha funcions per llegir %s, no es pot crear la marca a l'aigua."
     254#~ msgid "Unknown image format, can't read watermark."
     255#~ msgstr "Format d'imatge desconegut, no es pot llegir la marca a l'aigua."
     256#~ msgid "No %s create support."
     257#~ msgstr "No hi ha funcions per crear %s."
     258#~ msgid "No conversion type defined."
     259#~ msgstr "No s'ha definit cap tipus de conversió."
     260#~ msgid "Error copying file on the server. copy() failed."
     261#~ msgstr "Error copiant el fitxer al serivor. copy() ha fallat."
     262#~ msgid "Error reading the file."
     263#~ msgstr "Error llegint el fitxer."
    367264#~ msgid "Read full post &raquo;"
    368265#~ msgstr "Llegir article complet &raquo;"
  • sideposts/trunk/lang/sideposts-de_DE.po

    r189333 r199488  
    33"Project-Id-Version: Sidepost-tr\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: flashdevelop.de <kontakt@flashdevelop.de>\n"
    99"MIME-Version: 1.0\n"
     
    1515"X-Poedit-KeywordsList: __e\n"
    1616
    17 #: ../sideposts.php:55
    18 #: ../lib/class.plugin.php:485
    19 #: ../lib/class.plugin.php:522
     17#: ../sideposts.php:54
    2018msgid "Warning:"
    2119msgstr ""
    2220
    23 #: ../sideposts.php:56
     21#: ../sideposts.php:55
    2422#, php-format
    2523msgid "The active plugin %s is not compatible with your PHP version."
    2624msgstr ""
    2725
    28 #: ../sideposts.php:58
     26#: ../sideposts.php:57
    2927#, php-format
    3028msgid "%s is required for this plugin."
    3129msgstr ""
    3230
    33 #: ../lib/class.plugin.php:486
    34 #, fuzzy, php-format
    35 msgid "The active plugin %s is not compatible with your WordPress version."
    36 msgstr "Diese Erweiterung ist nicht kompatibel mit dem System. Es fehlt die Seitenleiste oder die WordPress version passt nicht."
     31#: ../includes/functions.php:49
     32#, fuzzy
     33msgid "Archive"
     34msgstr "Archiv von"
    3735
    38 #: ../lib/class.plugin.php:488
    39 #, php-format
    40 msgid "WordPress %s is required to run this plugin."
    41 msgstr ""
     36#: ../includes/functions.php:51
     37msgid "Archive for"
     38msgstr "Archiv von"
    4239
    43 #: ../lib/class.plugin.php:523
    44 msgid "Standard sidebar functions are not present."
    45 msgstr ""
    46 
    47 #: ../lib/class.plugin.php:524
    48 #, php-format
    49 msgid "It is required to use the standard sidebar to run %s"
    50 msgstr ""
    51 
    52 #: ../lib/class.sideposts-widget.php:53
     40#: ../includes/widget.php:68
    5341msgid "A widget to move posts to the sidebar."
    5442msgstr "Ein Widget um Artikel in der Seitenleiste anzuzeigen"
    5543
    56 #: ../lib/class.sideposts-widget.php:69
     44#: ../includes/widget.php:83
    5745msgid "Category not selected."
    5846msgstr "Keine Kategorie gew&auml;hlt"
    5947
    60 #: ../lib/class.sideposts-widget.php:133
    61 msgid "Read more &raquo;"
    62 msgstr "Mehr lesen &raquo;"
    63 
    64 #: ../lib/class.sideposts-widget.php:147
    65 msgid "No Comments"
    66 msgstr ""
    67 
    68 #: ../lib/class.sideposts-widget.php:148
    69 msgid "1 Comment"
    70 msgstr ""
    71 
    72 #: ../lib/class.sideposts-widget.php:149
    73 msgid "% Comments"
    74 msgstr ""
    75 
    76 #: ../lib/class.sideposts-widget.php:151
    77 msgid "Comments closed"
    78 msgstr ""
    79 
    80 #: ../lib/class.sideposts-widget.php:167
    81 msgid "Archive for"
    82 msgstr "Archiv von"
    83 
    84 #: ../lib/class.sideposts-widget.php:195
     48#: ../includes/widget.php:155
    8549msgid "Title:"
    8650msgstr "Titel:"
    8751
    88 #: ../lib/class.sideposts-widget.php:196
     52#: ../includes/widget.php:156
    8953msgid "Category:"
    9054msgstr "Kategorie"
    9155
    92 #: ../lib/class.sideposts-widget.php:198
     56#: ../includes/widget.php:158
    9357msgid "-- PRIVATE POSTS --"
    9458msgstr ""
    9559
    96 #: ../lib/class.sideposts-widget.php:210
     60#: ../includes/widget.php:170
    9761msgid "Number of posts:"
    9862msgstr "Anzahl der Artikel"
    9963
    100 #: ../lib/class.sideposts-widget.php:212
     64#: ../includes/widget.php:172
    10165#, php-format
    10266msgid "(At most %d)"
    10367msgstr "(maximal %d)"
    10468
    105 #: ../lib/class.sideposts-widget.php:215
     69#: ../includes/widget.php:175
    10670msgid "Show:"
    10771msgstr "Zeige:"
    10872
    109 #: ../lib/class.sideposts-widget.php:216
     73#: ../includes/widget.php:181
    11074msgid "Full Post"
    11175msgstr "Gesamter Artikel"
    11276
    113 #: ../lib/class.sideposts-widget.php:217
     77#: ../includes/widget.php:184
    11478msgid "Post Excerpt"
    11579msgstr "Artikelauszug"
    11680
    117 #: ../lib/class.sideposts-widget.php:218
     81#: ../includes/widget.php:187
    11882msgid "Excerpts with thumbnails"
    11983msgstr "Artikelauszug mit Miniaturbild"
    12084
    121 #: ../lib/class.sideposts-widget.php:219
     85#: ../includes/widget.php:190
    12286msgid "Photo Blog"
    12387msgstr ""
    12488
    125 #: ../lib/class.sideposts-widget.php:220
     89#: ../includes/widget.php:193
    12690msgid "Only Post Title"
    12791msgstr ""
    12892
    129 #: ../lib/class.sideposts-widget.php:224
     93#: ../includes/widget.php:204
    13094msgid "Show category on all feeds"
    13195msgstr ""
    13296
    133 #: ../lib/class.sideposts-widget.php:226
     97#: ../includes/widget.php:206
    13498#, fuzzy
    13599msgid "Image width:"
    136100msgstr "Breite des Miniaturbildes:"
    137101
    138 #: ../lib/class.sideposts-widget.php:228
     102#: ../includes/widget.php:208
    139103msgid "pixels"
    140104msgstr "Pixel"
    141105
    142 #: ../lib/class.sideposts-widget.php:231
     106#: ../includes/widget.php:211
    143107msgid "Align thumbnail to right"
    144108msgstr ""
    145109
     110#: ../templates/photoblog.php:48
     111msgid "No Comments"
     112msgstr ""
     113
     114#: ../templates/photoblog.php:49
     115msgid "1 Comment"
     116msgstr ""
     117
     118#: ../templates/photoblog.php:50
     119msgid "% Comments"
     120msgstr ""
     121
     122#: ../templates/photoblog.php:52
     123msgid "Comments closed"
     124msgstr ""
     125
     126#: ../templates/posts.php:46
     127msgid "Read more &raquo;"
     128msgstr "Mehr lesen &raquo;"
     129
     130#, fuzzy
     131#~ msgid "The active plugin %s is not compatible with your WordPress version."
     132#~ msgstr ""
     133#~ "Diese Erweiterung ist nicht kompatibel mit dem System. Es fehlt die "
     134#~ "Seitenleiste oder die WordPress version passt nicht."
    146135#~ msgid "Read full post &raquo;"
    147136#~ msgstr "Lies den ganzen Artikel &raquo;"
  • sideposts/trunk/lang/sideposts-es_ES.po

    r196960 r199488  
    33"Project-Id-Version: Alkivia SidePosts\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-18 20:47+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: \n"
    1919
    20 #: ../sideposts.php:53
    21 #: ../framework/classes/abstract/plugin.php:212
    22 #: ../framework/classes/abstract/plugin.php:231
     20#: ../sideposts.php:54
    2321msgid "Warning:"
    2422msgstr "Atención:"
    2523
    26 #: ../sideposts.php:54
     24#: ../sideposts.php:55
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr "El plugin activo %s no es compatible con tu versión de PHP."
    3028
    31 #: ../sideposts.php:56
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr "Se requiere %s para ejecutar este plugin."
    3533
    36 #: ../framework/classes/abstract/module.php:470
    37 msgid "Option blocked by administrator."
    38 msgstr ""
    39 
    40 #: ../framework/classes/abstract/plugin.php:213
    41 #, php-format
    42 msgid "The active plugin %s is not compatible with your WordPress version."
    43 msgstr "El plugin activo %s no es compatible con tu versión de WordPress."
    44 
    45 #: ../framework/classes/abstract/plugin.php:215
    46 #, php-format
    47 msgid "WordPress %s is required to run this plugin."
    48 msgstr "Se requiere WordPress %s para ejecutar este plugin."
    49 
    50 #: ../framework/classes/abstract/plugin.php:232
    51 msgid "Standard sidebar functions are not present."
    52 msgstr "Algunas funciones de la barra lateral estándar no están presentes."
    53 
    54 #: ../framework/classes/abstract/plugin.php:233
    55 #, php-format
    56 msgid "It is required to use the standard sidebar to run %s"
    57 msgstr "Se requiere el uso de la barra lateral estándard para ejecutar %s"
    58 
    59 #: ../framework/lib/formating.php:51
    60 msgid "Settings saved."
    61 msgstr ""
    62 
    63 #: ../framework/lib/formating.php:160
    64 msgid "Just Now"
    65 msgstr ""
    66 
    67 #: ../framework/lib/formating.php:163
    68 #, php-format
    69 msgid "1 minute ago"
    70 msgid_plural "%d minutes ago"
    71 msgstr[0] ""
    72 msgstr[1] ""
    73 
    74 #: ../framework/lib/formating.php:166
    75 #, php-format
    76 msgid "1 hour ago"
    77 msgid_plural "%d hours ago"
    78 msgstr[0] ""
    79 msgstr[1] ""
    80 
    81 #: ../framework/lib/formating.php:170
    82 #, php-format
    83 msgid "Today at %s"
    84 msgstr ""
    85 
    86 #: ../framework/lib/formating.php:170
    87 #, php-format
    88 msgid "Yesterday at %s"
    89 msgstr ""
    90 
    91 #: ../framework/vendor/upload/class.upload.php:2172
    92 msgid "File error. Please try again."
    93 msgstr ""
    94 
    95 #: ../framework/vendor/upload/class.upload.php:2173
    96 msgid "Local file doesn't exist."
    97 msgstr ""
    98 
    99 #: ../framework/vendor/upload/class.upload.php:2174
    100 msgid "Local file is not readable."
    101 msgstr ""
    102 
    103 #: ../framework/vendor/upload/class.upload.php:2175
    104 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."
    105 msgstr ""
    106 
    107 #: ../framework/vendor/upload/class.upload.php:2176
    108 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."
    109 msgstr ""
    110 
    111 #: ../framework/vendor/upload/class.upload.php:2177
    112 msgid "File upload error (the uploaded file was only partially uploaded)."
    113 msgstr ""
    114 
    115 #: ../framework/vendor/upload/class.upload.php:2178
    116 msgid "File upload error (no file was uploaded)."
    117 msgstr ""
    118 
    119 #: ../framework/vendor/upload/class.upload.php:2179
    120 msgid "File upload error (missing a temporary folder)."
    121 msgstr ""
    122 
    123 #: ../framework/vendor/upload/class.upload.php:2180
    124 msgid "File upload error (failed to write file to disk)."
    125 msgstr ""
    126 
    127 #: ../framework/vendor/upload/class.upload.php:2181
    128 msgid "File upload error (file upload stopped by extension)."
    129 msgstr ""
    130 
    131 #: ../framework/vendor/upload/class.upload.php:2182
    132 msgid "File upload error (unknown error code)."
    133 msgstr ""
    134 
    135 #: ../framework/vendor/upload/class.upload.php:2183
    136 msgid "File upload error. Please try again."
    137 msgstr ""
    138 
    139 #: ../framework/vendor/upload/class.upload.php:2184
    140 msgid "File too big."
    141 msgstr ""
    142 
    143 #: ../framework/vendor/upload/class.upload.php:2185
    144 msgid "MIME type can't be detected."
    145 msgstr ""
    146 
    147 #: ../framework/vendor/upload/class.upload.php:2186
    148 msgid "Incorrect type of file."
    149 msgstr ""
    150 
    151 #: ../framework/vendor/upload/class.upload.php:2187
    152 #, fuzzy
    153 msgid "Image too wide."
    154 msgstr "Anchura Imagen:"
    155 
    156 #: ../framework/vendor/upload/class.upload.php:2188
    157 msgid "Image too narrow."
    158 msgstr ""
    159 
    160 #: ../framework/vendor/upload/class.upload.php:2189
    161 msgid "Image too high."
    162 msgstr ""
    163 
    164 #: ../framework/vendor/upload/class.upload.php:2190
    165 msgid "Image too short."
    166 msgstr ""
    167 
    168 #: ../framework/vendor/upload/class.upload.php:2191
    169 msgid "Image ratio too high (image too wide)."
    170 msgstr ""
    171 
    172 #: ../framework/vendor/upload/class.upload.php:2192
    173 msgid "Image ratio too low (image too high)."
    174 msgstr ""
    175 
    176 #: ../framework/vendor/upload/class.upload.php:2193
    177 msgid "Image has too many pixels."
    178 msgstr ""
    179 
    180 #: ../framework/vendor/upload/class.upload.php:2194
    181 msgid "Image has not enough pixels."
    182 msgstr ""
    183 
    184 #: ../framework/vendor/upload/class.upload.php:2195
    185 msgid "File not uploaded. Can't carry on a process."
    186 msgstr ""
    187 
    188 #: ../framework/vendor/upload/class.upload.php:2196
    189 #, php-format
    190 msgid "%s already exists. Please change the file name."
    191 msgstr ""
    192 
    193 #: ../framework/vendor/upload/class.upload.php:2197
    194 msgid "No correct temp source file. Can't carry on a process."
    195 msgstr ""
    196 
    197 #: ../framework/vendor/upload/class.upload.php:2198
    198 msgid "No correct uploaded source file. Can't carry on a process."
    199 msgstr ""
    200 
    201 #: ../framework/vendor/upload/class.upload.php:2199
    202 msgid "Destination directory can't be created. Can't carry on a process."
    203 msgstr ""
    204 
    205 #: ../framework/vendor/upload/class.upload.php:2200
    206 msgid "Destination directory doesn't exist. Can't carry on a process."
    207 msgstr ""
    208 
    209 #: ../framework/vendor/upload/class.upload.php:2201
    210 msgid "Destination path is not a directory. Can't carry on a process."
    211 msgstr ""
    212 
    213 #: ../framework/vendor/upload/class.upload.php:2202
    214 msgid "Destination directory can't be made writeable. Can't carry on a process."
    215 msgstr ""
    216 
    217 #: ../framework/vendor/upload/class.upload.php:2203
    218 msgid "Destination path is not a writeable. Can't carry on a process."
    219 msgstr ""
    220 
    221 #: ../framework/vendor/upload/class.upload.php:2204
    222 msgid "Can't create the temporary file. Can't carry on a process."
    223 msgstr ""
    224 
    225 #: ../framework/vendor/upload/class.upload.php:2205
    226 msgid "Source file is not readable. Can't carry on a process."
    227 msgstr ""
    228 
    229 #: ../framework/vendor/upload/class.upload.php:2206
    230 #, php-format
    231 msgid "No create from %s support."
    232 msgstr ""
    233 
    234 #: ../framework/vendor/upload/class.upload.php:2207
    235 #, php-format
    236 msgid "Error in creating %s image from source."
    237 msgstr ""
    238 
    239 #: ../framework/vendor/upload/class.upload.php:2208
    240 msgid "Can't read image source. Not an image?."
    241 msgstr ""
    242 
    243 #: ../framework/vendor/upload/class.upload.php:2209
    244 msgid "GD doesn't seem to be present."
    245 msgstr ""
    246 
    247 #: ../framework/vendor/upload/class.upload.php:2210
    248 #, php-format
    249 msgid "No create from %s support, can't read watermark."
    250 msgstr ""
    251 
    252 #: ../framework/vendor/upload/class.upload.php:2211
    253 #, php-format
    254 msgid "No %s read support, can't create watermark."
    255 msgstr ""
    256 
    257 #: ../framework/vendor/upload/class.upload.php:2212
    258 msgid "Unknown image format, can't read watermark."
    259 msgstr ""
    260 
    261 #: ../framework/vendor/upload/class.upload.php:2213
    262 #, php-format
    263 msgid "No %s create support."
    264 msgstr ""
    265 
    266 #: ../framework/vendor/upload/class.upload.php:2214
    267 msgid "No conversion type defined."
    268 msgstr ""
    269 
    270 #: ../framework/vendor/upload/class.upload.php:2215
    271 msgid "Error copying file on the server. copy() failed."
    272 msgstr ""
    273 
    274 #: ../framework/vendor/upload/class.upload.php:2216
    275 msgid "Error reading the file."
    276 msgstr ""
    277 
    278 #: ../includes/widget.php:61
     34#: ../includes/functions.php:49
     35msgid "Archive"
     36msgstr "Archivo"
     37
     38#: ../includes/functions.php:51
     39msgid "Archive for"
     40msgstr "Archivo de"
     41
     42#: ../includes/widget.php:68
    27943msgid "A widget to move posts to the sidebar."
    28044msgstr "Un widget que desplaza posts a la barra lateral."
    28145
    282 #: ../includes/widget.php:76
     46#: ../includes/widget.php:83
    28347msgid "Category not selected."
    28448msgstr "No se ha seleccionado una categoría."
    28549
    286 #: ../includes/widget.php:140
    287 msgid "Read more &raquo;"
    288 msgstr "Seguir leyendo &raquo;"
    289 
    290 #: ../includes/widget.php:154
    291 msgid "No Comments"
    292 msgstr "No hay comentarios"
    293 
    29450#: ../includes/widget.php:155
    295 msgid "1 Comment"
    296 msgstr "1 comentario"
    297 
    298 #: ../includes/widget.php:156
    299 msgid "% Comments"
    300 msgstr "% comentarios"
    301 
    302 #: ../includes/widget.php:158
    303 msgid "Comments closed"
    304 msgstr "Comentarios cerrados"
    305 
    306 #: ../includes/widget.php:174
    307 msgid "Archive for"
    308 msgstr "Archivo de"
    309 
    310 #: ../includes/widget.php:203
    31151msgid "Title:"
    31252msgstr "Título:"
    31353
    314 #: ../includes/widget.php:204
     54#: ../includes/widget.php:156
    31555msgid "Category:"
    31656msgstr "Categoría:"
    31757
    318 #: ../includes/widget.php:206
     58#: ../includes/widget.php:158
    31959msgid "-- PRIVATE POSTS --"
    32060msgstr "-- ENTRADAS PRIVADAS --"
    32161
    322 #: ../includes/widget.php:218
     62#: ../includes/widget.php:170
    32363msgid "Number of posts:"
    32464msgstr "Número de entradas:"
    32565
    326 #: ../includes/widget.php:220
     66#: ../includes/widget.php:172
    32767#, php-format
    32868msgid "(At most %d)"
    32969msgstr "(Máximo %d)"
    33070
    331 #: ../includes/widget.php:223
     71#: ../includes/widget.php:175
    33272msgid "Show:"
    33373msgstr "Mostrar:"
    33474
    335 #: ../includes/widget.php:224
     75#: ../includes/widget.php:181
    33676msgid "Full Post"
    33777msgstr "Entrada completa"
    33878
    339 #: ../includes/widget.php:225
     79#: ../includes/widget.php:184
    34080msgid "Post Excerpt"
    34181msgstr "Solo estractos"
    34282
    343 #: ../includes/widget.php:226
     83#: ../includes/widget.php:187
    34484msgid "Excerpts with thumbnails"
    34585msgstr "Estractos con miniaturas"
    34686
    347 #: ../includes/widget.php:227
     87#: ../includes/widget.php:190
    34888msgid "Photo Blog"
    34989msgstr "Nombre del blog"
    35090
    351 #: ../includes/widget.php:228
     91#: ../includes/widget.php:193
    35292msgid "Only Post Title"
    35393msgstr "Solo título de la entrada"
    35494
    355 #: ../includes/widget.php:232
     95#: ../includes/widget.php:204
    35696msgid "Show category on all feeds"
    35797msgstr "Mostrar en todos los hilos RSS"
    35898
    359 #: ../includes/widget.php:234
     99#: ../includes/widget.php:206
    360100msgid "Image width:"
    361101msgstr "Anchura Imagen:"
    362102
    363 #: ../includes/widget.php:236
     103#: ../includes/widget.php:208
    364104msgid "pixels"
    365105msgstr "píxeles"
    366106
    367 #: ../includes/widget.php:239
     107#: ../includes/widget.php:211
    368108msgid "Align thumbnail to right"
    369109msgstr "Alinear miniatura a la derecha"
    370110
     111#: ../templates/photoblog.php:48
     112msgid "No Comments"
     113msgstr "No hay comentarios"
     114
     115#: ../templates/photoblog.php:49
     116msgid "1 Comment"
     117msgstr "1 comentario"
     118
     119#: ../templates/photoblog.php:50
     120msgid "% Comments"
     121msgstr "% comentarios"
     122
     123#: ../templates/photoblog.php:52
     124msgid "Comments closed"
     125msgstr "Comentarios cerrados"
     126
     127#: ../templates/posts.php:46
     128msgid "Read more &raquo;"
     129msgstr "Seguir leyendo &raquo;"
     130
     131#~ msgid "The active plugin %s is not compatible with your WordPress version."
     132#~ msgstr "El plugin activo %s no es compatible con tu versión de WordPress."
     133#~ msgid "WordPress %s is required to run this plugin."
     134#~ msgstr "Se requiere WordPress %s para ejecutar este plugin."
     135#~ msgid "Standard sidebar functions are not present."
     136#~ msgstr "Algunas funciones de la barra lateral estándar no están presentes."
     137#~ msgid "It is required to use the standard sidebar to run %s"
     138#~ msgstr "Se requiere el uso de la barra lateral estándard para ejecutar %s"
     139
     140#, fuzzy
     141#~ msgid "Image too wide."
     142#~ msgstr "Anchura Imagen:"
    371143#~ msgid "Read full post &raquo;"
    372144#~ msgstr "Leer el artículo completo &raquo;"
  • sideposts/trunk/lang/sideposts-fa_IR.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget v1.4.2\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
    6 "PO-Revision-Date: 2009-12-04 19:23+0100\n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
     6"PO-Revision-Date: 2010-01-28 23:13+0100\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: \n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: .\n"
    1919
    20 #: ../sideposts.php:55
    21 #: ../lib/class.plugin.php:485
    22 #: ../lib/class.plugin.php:522
     20#: ../sideposts.php:54
    2321msgid "Warning:"
    2422msgstr "اخطار:"
    2523
    26 #: ../sideposts.php:56
     24#: ../sideposts.php:55
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr "افزونه ی فعال  %s  با این PHP همخوانی ندارد."
    3028
    31 #: ../sideposts.php:58
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr "برای استفاده از این افزونه %s لازم است."
    3533
    36 #: ../lib/class.plugin.php:486
    37 #, php-format
    38 msgid "The active plugin %s is not compatible with your WordPress version."
    39 msgstr "افزونه ی فعال  %s  با این وردپرس همخوانی ندارد."
     34#: ../includes/functions.php:49
     35#, fuzzy
     36msgid "Archive"
     37msgstr "بایگانی"
    4038
    41 #: ../lib/class.plugin.php:488
    42 #, php-format
    43 msgid "WordPress %s is required to run this plugin."
    44 msgstr "وردپرس  %s  لازم است تا این افزونه کار کند."
     39#: ../includes/functions.php:51
     40msgid "Archive for"
     41msgstr "بایگانی"
    4542
    46 #: ../lib/class.plugin.php:523
    47 msgid "Standard sidebar functions are not present."
    48 msgstr "فانکشن (functions) های استاندارد ستون کناری در دسترس نیستند."
    49 
    50 #: ../lib/class.plugin.php:524
    51 #, php-format
    52 msgid "It is required to use the standard sidebar to run %s"
    53 msgstr "لازم است که ستون کناری از  %s استفاده کند"
    54 
    55 #: ../lib/class.sideposts-widget.php:53
     43#: ../includes/widget.php:68
    5644msgid "A widget to move posts to the sidebar."
    5745msgstr "ابزارکی برای منتقل سازی بعضی از نوشته ها به ستون کناری."
    5846
    59 #: ../lib/class.sideposts-widget.php:69
     47#: ../includes/widget.php:83
    6048msgid "Category not selected."
    6149msgstr "دسته بندی انتخاب نشده است."
    6250
    63 #: ../lib/class.sideposts-widget.php:133
    64 msgid "Read more &raquo;"
    65 msgstr "بیشتر بخوانید &raquo;"
    66 
    67 #: ../lib/class.sideposts-widget.php:147
    68 msgid "No Comments"
    69 msgstr ""
    70 
    71 #: ../lib/class.sideposts-widget.php:148
    72 msgid "1 Comment"
    73 msgstr ""
    74 
    75 #: ../lib/class.sideposts-widget.php:149
    76 msgid "% Comments"
    77 msgstr ""
    78 
    79 #: ../lib/class.sideposts-widget.php:151
    80 msgid "Comments closed"
    81 msgstr ""
    82 
    83 #: ../lib/class.sideposts-widget.php:167
    84 msgid "Archive for"
    85 msgstr "بایگانی"
    86 
    87 #: ../lib/class.sideposts-widget.php:195
     51#: ../includes/widget.php:155
    8852msgid "Title:"
    8953msgstr "عنوان:"
    9054
    91 #: ../lib/class.sideposts-widget.php:196
     55#: ../includes/widget.php:156
    9256msgid "Category:"
    9357msgstr "دسته:"
    9458
    95 #: ../lib/class.sideposts-widget.php:198
     59#: ../includes/widget.php:158
    9660msgid "-- PRIVATE POSTS --"
    9761msgstr "-- نوشته های خصوصی --"
    9862
    99 #: ../lib/class.sideposts-widget.php:210
     63#: ../includes/widget.php:170
    10064msgid "Number of posts:"
    10165msgstr "تعداد نوشته ها:"
    10266
    103 #: ../lib/class.sideposts-widget.php:212
     67#: ../includes/widget.php:172
    10468#, php-format
    10569msgid "(At most %d)"
    10670msgstr "(حد اکثر %d تا)"
    10771
    108 #: ../lib/class.sideposts-widget.php:215
     72#: ../includes/widget.php:175
    10973msgid "Show:"
    11074msgstr "نشان دادن:"
    11175
    112 #: ../lib/class.sideposts-widget.php:216
     76#: ../includes/widget.php:181
    11377msgid "Full Post"
    11478msgstr "تمام نوشته"
    11579
    116 #: ../lib/class.sideposts-widget.php:217
     80#: ../includes/widget.php:184
    11781msgid "Post Excerpt"
    11882msgstr "خلاصه ی مطلب"
    11983
    120 #: ../lib/class.sideposts-widget.php:218
     84#: ../includes/widget.php:187
    12185msgid "Excerpts with thumbnails"
    12286msgstr "خلاصه ی مطلب همراه با تصویر بندانگشتی "
    12387
    124 #: ../lib/class.sideposts-widget.php:219
     88#: ../includes/widget.php:190
    12589msgid "Photo Blog"
    12690msgstr ""
    12791
    128 #: ../lib/class.sideposts-widget.php:220
     92#: ../includes/widget.php:193
    12993msgid "Only Post Title"
    13094msgstr ""
    13195
    132 #: ../lib/class.sideposts-widget.php:224
     96#: ../includes/widget.php:204
    13397msgid "Show category on all feeds"
    13498msgstr ""
    13599
    136 #: ../lib/class.sideposts-widget.php:226
     100#: ../includes/widget.php:206
    137101#, fuzzy
    138102msgid "Image width:"
    139103msgstr "عرض تصاویر بندانگشتی"
    140104
    141 #: ../lib/class.sideposts-widget.php:228
     105#: ../includes/widget.php:208
    142106msgid "pixels"
    143107msgstr "پیکسل"
    144108
    145 #: ../lib/class.sideposts-widget.php:231
     109#: ../includes/widget.php:211
    146110msgid "Align thumbnail to right"
    147111msgstr ""
    148112
     113#: ../templates/photoblog.php:48
     114msgid "No Comments"
     115msgstr ""
     116
     117#: ../templates/photoblog.php:49
     118msgid "1 Comment"
     119msgstr ""
     120
     121#: ../templates/photoblog.php:50
     122msgid "% Comments"
     123msgstr ""
     124
     125#: ../templates/photoblog.php:52
     126msgid "Comments closed"
     127msgstr ""
     128
     129#: ../templates/posts.php:46
     130msgid "Read more &raquo;"
     131msgstr "بیشتر بخوانید &raquo;"
     132
     133#~ msgid "The active plugin %s is not compatible with your WordPress version."
     134#~ msgstr "افزونه ی فعال  %s  با این وردپرس همخوانی ندارد."
     135#~ msgid "WordPress %s is required to run this plugin."
     136#~ msgstr "وردپرس  %s  لازم است تا این افزونه کار کند."
     137#~ msgid "Standard sidebar functions are not present."
     138#~ msgstr "فانکشن (functions) های استاندارد ستون کناری در دسترس نیستند."
     139#~ msgid "It is required to use the standard sidebar to run %s"
     140#~ msgstr "لازم است که ستون کناری از  %s استفاده کند"
    149141#~ msgid "Read full post &raquo;"
    150142#~ msgstr "نوشته ی کامل &raquo;"
  • sideposts/trunk/lang/sideposts-fi_FI.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget 1.4\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n"
    99"MIME-Version: 1.0\n"
     
    1616"X-Poedit-SearchPath-0: ..\n"
    1717
    18 #: ../sideposts.php:55
    19 #: ../lib/class.plugin.php:485
    20 #: ../lib/class.plugin.php:522
     18#: ../sideposts.php:54
    2119msgid "Warning:"
    2220msgstr "Varoitus:"
    2321
    24 #: ../sideposts.php:56
     22#: ../sideposts.php:55
    2523#, php-format
    2624msgid "The active plugin %s is not compatible with your PHP version."
    2725msgstr "Aktiivinen plugin %s ei ole yhteensopiva PHP-versiosi kanssa."
    2826
    29 #: ../sideposts.php:58
     27#: ../sideposts.php:57
    3028#, php-format
    3129msgid "%s is required for this plugin."
    3230msgstr "%s vaaditaan tähän pluginiin."
    3331
    34 #: ../lib/class.plugin.php:486
    35 #, php-format
    36 msgid "The active plugin %s is not compatible with your WordPress version."
    37 msgstr "Aktiivinen plugin %s ei ole yhteensopiva WordPress-versioosi."
     32#: ../includes/functions.php:49
     33#, fuzzy
     34msgid "Archive"
     35msgstr "Arkisto aiheelle"
    3836
    39 #: ../lib/class.plugin.php:488
    40 #, php-format
    41 msgid "WordPress %s is required to run this plugin."
    42 msgstr "Täm plugin vaatii WordPress %s :n."
     37#: ../includes/functions.php:51
     38msgid "Archive for"
     39msgstr "Arkisto aiheelle"
    4340
    44 #: ../lib/class.plugin.php:523
    45 msgid "Standard sidebar functions are not present."
    46 msgstr "Sivupalkin vakiotoimintoja ei löydy."
    47 
    48 #: ../lib/class.plugin.php:524
    49 #, php-format
    50 msgid "It is required to use the standard sidebar to run %s"
    51 msgstr "Vaaditaan käyttöön vakiosivupalkki käyttäksesi %s"
    52 
    53 #: ../lib/class.sideposts-widget.php:53
     41#: ../includes/widget.php:68
    5442msgid "A widget to move posts to the sidebar."
    5543msgstr "Vimpain (widget) jolla voit julkaista artikkelit sivupalkissa."
    5644
    57 #: ../lib/class.sideposts-widget.php:69
     45#: ../includes/widget.php:83
    5846msgid "Category not selected."
    5947msgstr "Aihe (category) ei ole valittuna."
    6048
    61 #: ../lib/class.sideposts-widget.php:133
    62 msgid "Read more &raquo;"
    63 msgstr "Lue lisää &raquo;"
    64 
    65 #: ../lib/class.sideposts-widget.php:147
    66 msgid "No Comments"
    67 msgstr ""
    68 
    69 #: ../lib/class.sideposts-widget.php:148
    70 msgid "1 Comment"
    71 msgstr ""
    72 
    73 #: ../lib/class.sideposts-widget.php:149
    74 msgid "% Comments"
    75 msgstr ""
    76 
    77 #: ../lib/class.sideposts-widget.php:151
    78 msgid "Comments closed"
    79 msgstr ""
    80 
    81 #: ../lib/class.sideposts-widget.php:167
    82 msgid "Archive for"
    83 msgstr "Arkisto aiheelle"
    84 
    85 #: ../lib/class.sideposts-widget.php:195
     49#: ../includes/widget.php:155
    8650msgid "Title:"
    8751msgstr "Otsikko:"
    8852
    89 #: ../lib/class.sideposts-widget.php:196
     53#: ../includes/widget.php:156
    9054msgid "Category:"
    9155msgstr "Aihe:"
    9256
    93 #: ../lib/class.sideposts-widget.php:198
     57#: ../includes/widget.php:158
    9458msgid "-- PRIVATE POSTS --"
    9559msgstr "-- YKSITYISET ARTIKKELIT --"
    9660
    97 #: ../lib/class.sideposts-widget.php:210
     61#: ../includes/widget.php:170
    9862msgid "Number of posts:"
    9963msgstr "Artikkelien lkm:"
    10064
    101 #: ../lib/class.sideposts-widget.php:212
     65#: ../includes/widget.php:172
    10266#, php-format
    10367msgid "(At most %d)"
    10468msgstr "(Enimmillään %d)"
    10569
    106 #: ../lib/class.sideposts-widget.php:215
     70#: ../includes/widget.php:175
    10771msgid "Show:"
    10872msgstr "Näytä:"
    10973
    110 #: ../lib/class.sideposts-widget.php:216
     74#: ../includes/widget.php:181
    11175msgid "Full Post"
    11276msgstr "Koko artikkeli"
    11377
    114 #: ../lib/class.sideposts-widget.php:217
     78#: ../includes/widget.php:184
    11579msgid "Post Excerpt"
    11680msgstr "Lyhennelmä"
    11781
    118 #: ../lib/class.sideposts-widget.php:218
     82#: ../includes/widget.php:187
    11983msgid "Excerpts with thumbnails"
    12084msgstr "Lyhennelmä ja minikuva"
    12185
    122 #: ../lib/class.sideposts-widget.php:219
     86#: ../includes/widget.php:190
    12387msgid "Photo Blog"
    12488msgstr ""
    12589
    126 #: ../lib/class.sideposts-widget.php:220
     90#: ../includes/widget.php:193
    12791msgid "Only Post Title"
    12892msgstr "Vain artikkelin otsikko"
    12993
    130 #: ../lib/class.sideposts-widget.php:224
     94#: ../includes/widget.php:204
    13195msgid "Show category on all feeds"
    13296msgstr ""
    13397
    134 #: ../lib/class.sideposts-widget.php:226
     98#: ../includes/widget.php:206
    13599#, fuzzy
    136100msgid "Image width:"
    137101msgstr "Minikuvan leveys:"
    138102
    139 #: ../lib/class.sideposts-widget.php:228
     103#: ../includes/widget.php:208
    140104msgid "pixels"
    141105msgstr "pikseliä"
    142106
    143 #: ../lib/class.sideposts-widget.php:231
     107#: ../includes/widget.php:211
    144108msgid "Align thumbnail to right"
    145109msgstr ""
    146110
     111#: ../templates/photoblog.php:48
     112msgid "No Comments"
     113msgstr ""
     114
     115#: ../templates/photoblog.php:49
     116msgid "1 Comment"
     117msgstr ""
     118
     119#: ../templates/photoblog.php:50
     120msgid "% Comments"
     121msgstr ""
     122
     123#: ../templates/photoblog.php:52
     124msgid "Comments closed"
     125msgstr ""
     126
     127#: ../templates/posts.php:46
     128msgid "Read more &raquo;"
     129msgstr "Lue lisää &raquo;"
     130
     131#~ msgid "The active plugin %s is not compatible with your WordPress version."
     132#~ msgstr "Aktiivinen plugin %s ei ole yhteensopiva WordPress-versioosi."
     133#~ msgid "WordPress %s is required to run this plugin."
     134#~ msgstr "Täm plugin vaatii WordPress %s :n."
     135#~ msgid "Standard sidebar functions are not present."
     136#~ msgstr "Sivupalkin vakiotoimintoja ei löydy."
     137#~ msgid "It is required to use the standard sidebar to run %s"
     138#~ msgstr "Vaaditaan käyttöön vakiosivupalkki käyttäksesi %s"
    147139#~ msgid "Read full post &raquo;"
    148140#~ msgstr "Lue koko artikkeli &raquo;"
  • sideposts/trunk/lang/sideposts-fr_FR.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts WordPress Widget\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: \n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: \n"
    1919
     20#: ../sideposts.php:54
     21msgid "Warning:"
     22msgstr ""
     23
    2024#: ../sideposts.php:55
    21 #: ../lib/class.plugin.php:485
    22 #: ../lib/class.plugin.php:522
    23 msgid "Warning:"
    24 msgstr ""
    25 
    26 #: ../sideposts.php:56
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr ""
    3028
    31 #: ../sideposts.php:58
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr ""
    3533
    36 #: ../lib/class.plugin.php:486
    37 #, fuzzy, php-format
    38 msgid "The active plugin %s is not compatible with your WordPress version."
    39 msgstr "Ce Plugin n'est pas compatible avec votre system. Fonctionnalités de la sidebar manquantes ou version incorrecte de Wordpress."
    40 
    41 #: ../lib/class.plugin.php:488
    42 #, php-format
    43 msgid "WordPress %s is required to run this plugin."
    44 msgstr ""
    45 
    46 #: ../lib/class.plugin.php:523
    47 msgid "Standard sidebar functions are not present."
    48 msgstr ""
    49 
    50 #: ../lib/class.plugin.php:524
    51 #, php-format
    52 msgid "It is required to use the standard sidebar to run %s"
    53 msgstr ""
    54 
    55 #: ../lib/class.sideposts-widget.php:53
     34#: ../includes/functions.php:49
     35#, fuzzy
     36msgid "Archive"
     37msgstr "Archive de"
     38
     39#: ../includes/functions.php:51
     40msgid "Archive for"
     41msgstr "Archive de"
     42
     43#: ../includes/widget.php:68
    5644msgid "A widget to move posts to the sidebar."
    5745msgstr "Un widget pour afficher les commentaires dans la sidebar."
    5846
    59 #: ../lib/class.sideposts-widget.php:69
     47#: ../includes/widget.php:83
    6048msgid "Category not selected."
    6149msgstr "Catégorie non sélectionnée."
    6250
    63 #: ../lib/class.sideposts-widget.php:133
    64 msgid "Read more &raquo;"
    65 msgstr "Lire la suite &raquo;"
    66 
    67 #: ../lib/class.sideposts-widget.php:147
    68 msgid "No Comments"
    69 msgstr ""
    70 
    71 #: ../lib/class.sideposts-widget.php:148
    72 msgid "1 Comment"
    73 msgstr ""
    74 
    75 #: ../lib/class.sideposts-widget.php:149
    76 msgid "% Comments"
    77 msgstr ""
    78 
    79 #: ../lib/class.sideposts-widget.php:151
    80 msgid "Comments closed"
    81 msgstr ""
    82 
    83 #: ../lib/class.sideposts-widget.php:167
    84 msgid "Archive for"
    85 msgstr "Archive de"
    86 
    87 #: ../lib/class.sideposts-widget.php:195
     51#: ../includes/widget.php:155
    8852msgid "Title:"
    8953msgstr "Titre :"
    9054
    91 #: ../lib/class.sideposts-widget.php:196
     55#: ../includes/widget.php:156
    9256msgid "Category:"
    9357msgstr "Categorie :"
    9458
    95 #: ../lib/class.sideposts-widget.php:198
     59#: ../includes/widget.php:158
    9660msgid "-- PRIVATE POSTS --"
    9761msgstr ""
    9862
    99 #: ../lib/class.sideposts-widget.php:210
     63#: ../includes/widget.php:170
    10064msgid "Number of posts:"
    10165msgstr "Nombre de commentaires:"
    10266
    103 #: ../lib/class.sideposts-widget.php:212
     67#: ../includes/widget.php:172
    10468#, php-format
    10569msgid "(At most %d)"
    10670msgstr "(Maximum %d)"
    10771
    108 #: ../lib/class.sideposts-widget.php:215
     72#: ../includes/widget.php:175
    10973msgid "Show:"
    11074msgstr "Montrer:"
    11175
    112 #: ../lib/class.sideposts-widget.php:216
     76#: ../includes/widget.php:181
    11377msgid "Full Post"
    11478msgstr "Commentaire Complet"
    11579
    116 #: ../lib/class.sideposts-widget.php:217
     80#: ../includes/widget.php:184
    11781msgid "Post Excerpt"
    11882msgstr "Début du commentaire"
    11983
    120 #: ../lib/class.sideposts-widget.php:218
     84#: ../includes/widget.php:187
    12185msgid "Excerpts with thumbnails"
    12286msgstr ""
    12387
    124 #: ../lib/class.sideposts-widget.php:219
     88#: ../includes/widget.php:190
    12589msgid "Photo Blog"
    12690msgstr ""
    12791
    128 #: ../lib/class.sideposts-widget.php:220
     92#: ../includes/widget.php:193
    12993msgid "Only Post Title"
    13094msgstr ""
    13195
    132 #: ../lib/class.sideposts-widget.php:224
     96#: ../includes/widget.php:204
    13397msgid "Show category on all feeds"
    13498msgstr ""
    13599
    136 #: ../lib/class.sideposts-widget.php:226
     100#: ../includes/widget.php:206
    137101msgid "Image width:"
    138102msgstr ""
    139103
    140 #: ../lib/class.sideposts-widget.php:228
     104#: ../includes/widget.php:208
    141105msgid "pixels"
    142106msgstr ""
    143107
    144 #: ../lib/class.sideposts-widget.php:231
     108#: ../includes/widget.php:211
    145109msgid "Align thumbnail to right"
    146110msgstr ""
    147111
     112#: ../templates/photoblog.php:48
     113msgid "No Comments"
     114msgstr ""
     115
     116#: ../templates/photoblog.php:49
     117msgid "1 Comment"
     118msgstr ""
     119
     120#: ../templates/photoblog.php:50
     121msgid "% Comments"
     122msgstr ""
     123
     124#: ../templates/photoblog.php:52
     125msgid "Comments closed"
     126msgstr ""
     127
     128#: ../templates/posts.php:46
     129msgid "Read more &raquo;"
     130msgstr "Lire la suite &raquo;"
     131
     132#, fuzzy
     133#~ msgid "The active plugin %s is not compatible with your WordPress version."
     134#~ msgstr ""
     135#~ "Ce Plugin n'est pas compatible avec votre system. Fonctionnalités de la "
     136#~ "sidebar manquantes ou version incorrecte de Wordpress."
    148137#~ msgid "Read full post &raquo;"
    149138#~ msgstr "Lire l'article complet &raquo;"
  • sideposts/trunk/lang/sideposts-it_IT.po

    r196960 r199488  
    33"Project-Id-Version: SidePosts WordPress Widget in italiano\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-18 20:47+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: \n"
    1919
    20 #: ../sideposts.php:53
    21 #: ../framework/classes/abstract/plugin.php:212
    22 #: ../framework/classes/abstract/plugin.php:231
     20#: ../sideposts.php:54
    2321msgid "Warning:"
    2422msgstr "Avvertimento:"
    2523
    26 #: ../sideposts.php:54
     24#: ../sideposts.php:55
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr "Il plugin attivo %s non é compatibile con la tua versione PHP."
    3028
    31 #: ../sideposts.php:56
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr "%s necessario per questo plugin."
    3533
    36 #: ../framework/classes/abstract/module.php:470
    37 msgid "Option blocked by administrator."
    38 msgstr "Opzione bloccata dall'amministratore"
    39 
    40 #: ../framework/classes/abstract/plugin.php:213
    41 #, php-format
    42 msgid "The active plugin %s is not compatible with your WordPress version."
    43 msgstr "Il plugin attivo %s non é compatibile con la tua versione WordPress."
    44 
    45 #: ../framework/classes/abstract/plugin.php:215
    46 #, php-format
    47 msgid "WordPress %s is required to run this plugin."
    48 msgstr "E' necessario WordPress %s affinché questo plugin possa funzionare."
    49 
    50 #: ../framework/classes/abstract/plugin.php:232
    51 msgid "Standard sidebar functions are not present."
    52 msgstr "Non sono presenti le funzioni standard della sidebar."
    53 
    54 #: ../framework/classes/abstract/plugin.php:233
    55 #, php-format
    56 msgid "It is required to use the standard sidebar to run %s"
    57 msgstr "E' necessario l'utilizzo della sidebar standard affinché funzioni %s"
    58 
    59 #: ../framework/lib/formating.php:51
    60 msgid "Settings saved."
    61 msgstr "Le impostazioni sono state salvate"
    62 
    63 #: ../framework/lib/formating.php:160
    64 msgid "Just Now"
    65 msgstr "In questo momento"
    66 
    67 #: ../framework/lib/formating.php:163
    68 #, php-format
    69 msgid "1 minute ago"
    70 msgid_plural "%d minutes ago"
    71 msgstr[0] "1 minuto fa"
    72 msgstr[1] "%d minuti fa"
    73 
    74 #: ../framework/lib/formating.php:166
    75 #, php-format
    76 msgid "1 hour ago"
    77 msgid_plural "%d hours ago"
    78 msgstr[0] "1 ora fa"
    79 msgstr[1] "%d ore fa"
    80 
    81 #: ../framework/lib/formating.php:170
    82 #, php-format
    83 msgid "Today at %s"
    84 msgstr "Oggi alle %s"
    85 
    86 #: ../framework/lib/formating.php:170
    87 #, php-format
    88 msgid "Yesterday at %s"
    89 msgstr "Ieri alle %s"
    90 
    91 #: ../framework/vendor/upload/class.upload.php:2172
    92 msgid "File error. Please try again."
    93 msgstr "Errore file. Riprova."
    94 
    95 #: ../framework/vendor/upload/class.upload.php:2173
    96 msgid "Local file doesn't exist."
    97 msgstr "Il file locale non esiste."
    98 
    99 #: ../framework/vendor/upload/class.upload.php:2174
    100 msgid "Local file is not readable."
    101 msgstr "Il file locale non é leggibile."
    102 
    103 #: ../framework/vendor/upload/class.upload.php:2175
    104 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."
    105 msgstr "Errore caricamento file (il file eccede il limite fissato dalla direttiva upload_max_filesize impostato in php.ini)."
    106 
    107 #: ../framework/vendor/upload/class.upload.php:2176
    108 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."
    109 msgstr "Errore caricamento file (il file eccede il limite fissato dalla direttiva MAX_FILE_SIZE specificata nel modulo html)."
    110 
    111 #: ../framework/vendor/upload/class.upload.php:2177
    112 msgid "File upload error (the uploaded file was only partially uploaded)."
    113 msgstr "Errore caricamento file (il file é stato pazialmente caricato)."
    114 
    115 #: ../framework/vendor/upload/class.upload.php:2178
    116 msgid "File upload error (no file was uploaded)."
    117 msgstr "Errore caricamento file (nessun file é stato caricato)."
    118 
    119 #: ../framework/vendor/upload/class.upload.php:2179
    120 msgid "File upload error (missing a temporary folder)."
    121 msgstr "Errore caricamento file (cartella temporanea inesistente)."
    122 
    123 #: ../framework/vendor/upload/class.upload.php:2180
    124 msgid "File upload error (failed to write file to disk)."
    125 msgstr "Errore caricamento file (non é stato possibile scrivere il file nel disco)."
    126 
    127 #: ../framework/vendor/upload/class.upload.php:2181
    128 msgid "File upload error (file upload stopped by extension)."
    129 msgstr "Errore caricamento file (blocco caricamento file dovuto alla estensione)."
    130 
    131 #: ../framework/vendor/upload/class.upload.php:2182
    132 msgid "File upload error (unknown error code)."
    133 msgstr "Errore caricamento file (codice errore sconosciuto)."
    134 
    135 #: ../framework/vendor/upload/class.upload.php:2183
    136 msgid "File upload error. Please try again."
    137 msgstr "Errore caricamento file. Riprova."
    138 
    139 #: ../framework/vendor/upload/class.upload.php:2184
    140 msgid "File too big."
    141 msgstr "File troppo grande."
    142 
    143 #: ../framework/vendor/upload/class.upload.php:2185
    144 msgid "MIME type can't be detected."
    145 msgstr "Non é possibile rilevare il formato MIME."
    146 
    147 #: ../framework/vendor/upload/class.upload.php:2186
    148 msgid "Incorrect type of file."
    149 msgstr "Tipo di file non corretto."
    150 
    151 #: ../framework/vendor/upload/class.upload.php:2187
    152 msgid "Image too wide."
    153 msgstr "Immagine troppo larga."
    154 
    155 #: ../framework/vendor/upload/class.upload.php:2188
    156 msgid "Image too narrow."
    157 msgstr "Immagine troppo stretta."
    158 
    159 #: ../framework/vendor/upload/class.upload.php:2189
    160 msgid "Image too high."
    161 msgstr "Immagine troppo alta."
    162 
    163 #: ../framework/vendor/upload/class.upload.php:2190
    164 msgid "Image too short."
    165 msgstr "Immagine troppo piccola."
    166 
    167 #: ../framework/vendor/upload/class.upload.php:2191
    168 msgid "Image ratio too high (image too wide)."
    169 msgstr "Proporzione immagine troppo elevata (immagine eccessivamente larga)."
    170 
    171 #: ../framework/vendor/upload/class.upload.php:2192
    172 msgid "Image ratio too low (image too high)."
    173 msgstr "Proporzione immagine troppo bassa (immagine eccessivamente alta)."
    174 
    175 #: ../framework/vendor/upload/class.upload.php:2193
    176 msgid "Image has too many pixels."
    177 msgstr "Immagine con troppi pixel."
    178 
    179 #: ../framework/vendor/upload/class.upload.php:2194
    180 msgid "Image has not enough pixels."
    181 msgstr "Immagine con pochi pixel."
    182 
    183 #: ../framework/vendor/upload/class.upload.php:2195
    184 msgid "File not uploaded. Can't carry on a process."
    185 msgstr "Il file non é stato caricato. Non é possibile proseguire l'operazione."
    186 
    187 #: ../framework/vendor/upload/class.upload.php:2196
    188 #, php-format
    189 msgid "%s already exists. Please change the file name."
    190 msgstr "%s già esiste. Modifica il nome del file."
    191 
    192 #: ../framework/vendor/upload/class.upload.php:2197
    193 msgid "No correct temp source file. Can't carry on a process."
    194 msgstr "File temporaneo sorgente non valido. Non é possibile proseguire l'operazione."
    195 
    196 #: ../framework/vendor/upload/class.upload.php:2198
    197 msgid "No correct uploaded source file. Can't carry on a process."
    198 msgstr "Il file sorgente che é stato caricato non è valido. Non é possibile proseguire l'operazione."
    199 
    200 #: ../framework/vendor/upload/class.upload.php:2199
    201 msgid "Destination directory can't be created. Can't carry on a process."
    202 msgstr "La cartella di destinazione non può essere creata. Non é possibile proseguire l'operazione."
    203 
    204 #: ../framework/vendor/upload/class.upload.php:2200
    205 msgid "Destination directory doesn't exist. Can't carry on a process."
    206 msgstr "La cartella di destinazione non esiste. Non é possibile proseguire l'operazione."
    207 
    208 #: ../framework/vendor/upload/class.upload.php:2201
    209 msgid "Destination path is not a directory. Can't carry on a process."
    210 msgstr "Il percorso di destinazione non conduce ad una cartella. Non é possibile proseguire l'operazione."
    211 
    212 #: ../framework/vendor/upload/class.upload.php:2202
    213 msgid "Destination directory can't be made writeable. Can't carry on a process."
    214 msgstr "La cartella di destinazione non può essere resa scrivibile. Non é possibile proseguire l'operazione."
    215 
    216 #: ../framework/vendor/upload/class.upload.php:2203
    217 msgid "Destination path is not a writeable. Can't carry on a process."
    218 msgstr "Il percorso di destinazione non é scrivibile. Non é possibile proseguire l'operazione."
    219 
    220 #: ../framework/vendor/upload/class.upload.php:2204
    221 msgid "Can't create the temporary file. Can't carry on a process."
    222 msgstr "Non é stato possibile creare un file temporaneo. Non é possibile proseguire l'operazione."
    223 
    224 #: ../framework/vendor/upload/class.upload.php:2205
    225 msgid "Source file is not readable. Can't carry on a process."
    226 msgstr "Il file sorgente non é leggibile. Non é possibile proseguire l'operazione."
    227 
    228 #: ../framework/vendor/upload/class.upload.php:2206
    229 #, php-format
    230 msgid "No create from %s support."
    231 msgstr "Impossibile creare dal supporto %s."
    232 
    233 #: ../framework/vendor/upload/class.upload.php:2207
    234 #, php-format
    235 msgid "Error in creating %s image from source."
    236 msgstr "Errore durante la creazione della immagine %s (via sorgente)."
    237 
    238 #: ../framework/vendor/upload/class.upload.php:2208
    239 msgid "Can't read image source. Not an image?."
    240 msgstr "Impossibile la lettura del sorgente immagine. Forse, non é una immagine!"
    241 
    242 #: ../framework/vendor/upload/class.upload.php:2209
    243 msgid "GD doesn't seem to be present."
    244 msgstr "Pare che la libreria GD non sia presente."
    245 
    246 #: ../framework/vendor/upload/class.upload.php:2210
    247 #, php-format
    248 msgid "No create from %s support, can't read watermark."
    249 msgstr "Nessuna creazione dal supporto %s. Impossibile leggere la filigrana."
    250 
    251 #: ../framework/vendor/upload/class.upload.php:2211
    252 #, php-format
    253 msgid "No %s read support, can't create watermark."
    254 msgstr "Nessun supporto di lettura %s. Impossibile creare la filigrana."
    255 
    256 #: ../framework/vendor/upload/class.upload.php:2212
    257 msgid "Unknown image format, can't read watermark."
    258 msgstr "Formato immagine sconosciuto. Impossibile leggere la filigrana."
    259 
    260 #: ../framework/vendor/upload/class.upload.php:2213
    261 #, php-format
    262 msgid "No %s create support."
    263 msgstr "Nessuna creazione dal supporto %s."
    264 
    265 #: ../framework/vendor/upload/class.upload.php:2214
    266 msgid "No conversion type defined."
    267 msgstr "Non é stato definito alcun tipo di conversione."
    268 
    269 #: ../framework/vendor/upload/class.upload.php:2215
    270 msgid "Error copying file on the server. copy() failed."
    271 msgstr "Errore durante la copia del file sul server. copy() failed."
    272 
    273 #: ../framework/vendor/upload/class.upload.php:2216
    274 msgid "Error reading the file."
    275 msgstr "Errore nella lettura del file."
    276 
    277 #: ../includes/widget.php:61
     34#: ../includes/functions.php:49
     35msgid "Archive"
     36msgstr "Archivo"
     37
     38#: ../includes/functions.php:51
     39msgid "Archive for"
     40msgstr "Archivo per"
     41
     42#: ../includes/widget.php:68
    27843msgid "A widget to move posts to the sidebar."
    27944msgstr "Un widget per poter spostare gli articoli nella barra laterale."
    28045
    281 #: ../includes/widget.php:76
     46#: ../includes/widget.php:83
    28247msgid "Category not selected."
    28348msgstr "La categoria non é stata selezionata."
    28449
    285 #: ../includes/widget.php:140
    286 msgid "Read more &raquo;"
    287 msgstr "Prosegui la lettura &raquo;"
    288 
    289 #: ../includes/widget.php:154
    290 msgid "No Comments"
    291 msgstr "Nessun commento"
    292 
    29350#: ../includes/widget.php:155
    294 msgid "1 Comment"
    295 msgstr "1 Commento"
    296 
    297 #: ../includes/widget.php:156
    298 msgid "% Comments"
    299 msgstr "% Commenti"
    300 
    301 #: ../includes/widget.php:158
    302 msgid "Comments closed"
    303 msgstr "I commenti sono stati disattivati"
    304 
    305 #: ../includes/widget.php:174
    306 msgid "Archive for"
    307 msgstr "Archivo per"
    308 
    309 #: ../includes/widget.php:203
    31051msgid "Title:"
    31152msgstr "Titolo:"
    31253
    313 #: ../includes/widget.php:204
     54#: ../includes/widget.php:156
    31455msgid "Category:"
    31556msgstr "Categoria:"
    31657
    317 #: ../includes/widget.php:206
     58#: ../includes/widget.php:158
    31859msgid "-- PRIVATE POSTS --"
    31960msgstr "-- ARTICOLI PRIVATI --"
    32061
    321 #: ../includes/widget.php:218
     62#: ../includes/widget.php:170
    32263msgid "Number of posts:"
    32364msgstr "Numero di articoli:"
    32465
    325 #: ../includes/widget.php:220
     66#: ../includes/widget.php:172
    32667#, php-format
    32768msgid "(At most %d)"
    32869msgstr "(massimo %d)"
    32970
    330 #: ../includes/widget.php:223
     71#: ../includes/widget.php:175
    33172msgid "Show:"
    33273msgstr "Mostra:"
    33374
    334 #: ../includes/widget.php:224
     75#: ../includes/widget.php:181
    33576msgid "Full Post"
    33677msgstr "Articolo completo"
    33778
    338 #: ../includes/widget.php:225
     79#: ../includes/widget.php:184
    33980msgid "Post Excerpt"
    34081msgstr "Riassunto dell'articolo"
    34182
    342 #: ../includes/widget.php:226
     83#: ../includes/widget.php:187
    34384msgid "Excerpts with thumbnails"
    34485msgstr "Riassunti con miniatura"
    34586
    346 #: ../includes/widget.php:227
     87#: ../includes/widget.php:190
    34788msgid "Photo Blog"
    34889msgstr "Photo Blog"
    34990
    350 #: ../includes/widget.php:228
     91#: ../includes/widget.php:193
    35192msgid "Only Post Title"
    35293msgstr "Solo il titolo del post"
    35394
    354 #: ../includes/widget.php:232
     95#: ../includes/widget.php:204
    35596msgid "Show category on all feeds"
    35697msgstr "Mostra la categoria in tutti i feed"
    35798
    358 #: ../includes/widget.php:234
     99#: ../includes/widget.php:206
    359100msgid "Image width:"
    360101msgstr "Larghezza immagine:"
    361102
    362 #: ../includes/widget.php:236
     103#: ../includes/widget.php:208
    363104msgid "pixels"
    364105msgstr "pixel"
    365106
    366 #: ../includes/widget.php:239
     107#: ../includes/widget.php:211
    367108msgid "Align thumbnail to right"
    368109msgstr "Allinea la miniatura a destra"
    369110
     111#: ../templates/photoblog.php:48
     112msgid "No Comments"
     113msgstr "Nessun commento"
     114
     115#: ../templates/photoblog.php:49
     116msgid "1 Comment"
     117msgstr "1 Commento"
     118
     119#: ../templates/photoblog.php:50
     120msgid "% Comments"
     121msgstr "% Commenti"
     122
     123#: ../templates/photoblog.php:52
     124msgid "Comments closed"
     125msgstr "I commenti sono stati disattivati"
     126
     127#: ../templates/posts.php:46
     128msgid "Read more &raquo;"
     129msgstr "Prosegui la lettura &raquo;"
     130
     131#~ msgid "Option blocked by administrator."
     132#~ msgstr "Opzione bloccata dall'amministratore"
     133#~ msgid "The active plugin %s is not compatible with your WordPress version."
     134#~ msgstr ""
     135#~ "Il plugin attivo %s non é compatibile con la tua versione WordPress."
     136#~ msgid "WordPress %s is required to run this plugin."
     137#~ msgstr "E' necessario WordPress %s affinché questo plugin possa funzionare."
     138#~ msgid "Standard sidebar functions are not present."
     139#~ msgstr "Non sono presenti le funzioni standard della sidebar."
     140#~ msgid "It is required to use the standard sidebar to run %s"
     141#~ msgstr ""
     142#~ "E' necessario l'utilizzo della sidebar standard affinché funzioni %s"
     143#~ msgid "Settings saved."
     144#~ msgstr "Le impostazioni sono state salvate"
     145#~ msgid "Just Now"
     146#~ msgstr "In questo momento"
     147#~ msgid "1 minute ago"
     148#~ msgid_plural "%d minutes ago"
     149#~ msgstr[0] "1 minuto fa"
     150#~ msgstr[1] "%d minuti fa"
     151#~ msgid "1 hour ago"
     152#~ msgid_plural "%d hours ago"
     153#~ msgstr[0] "1 ora fa"
     154#~ msgstr[1] "%d ore fa"
     155#~ msgid "Today at %s"
     156#~ msgstr "Oggi alle %s"
     157#~ msgid "Yesterday at %s"
     158#~ msgstr "Ieri alle %s"
     159#~ msgid "File error. Please try again."
     160#~ msgstr "Errore file. Riprova."
     161#~ msgid "Local file doesn't exist."
     162#~ msgstr "Il file locale non esiste."
     163#~ msgid "Local file is not readable."
     164#~ msgstr "Il file locale non é leggibile."
     165#~ msgid ""
     166#~ "File upload error (the uploaded file exceeds the upload_max_filesize "
     167#~ "directive in php.ini)."
     168#~ msgstr ""
     169#~ "Errore caricamento file (il file eccede il limite fissato dalla direttiva "
     170#~ "upload_max_filesize impostato in php.ini)."
     171#~ msgid ""
     172#~ "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive "
     173#~ "that was specified in the html form)."
     174#~ msgstr ""
     175#~ "Errore caricamento file (il file eccede il limite fissato dalla direttiva "
     176#~ "MAX_FILE_SIZE specificata nel modulo html)."
     177#~ msgid "File upload error (the uploaded file was only partially uploaded)."
     178#~ msgstr "Errore caricamento file (il file é stato pazialmente caricato)."
     179#~ msgid "File upload error (no file was uploaded)."
     180#~ msgstr "Errore caricamento file (nessun file é stato caricato)."
     181#~ msgid "File upload error (missing a temporary folder)."
     182#~ msgstr "Errore caricamento file (cartella temporanea inesistente)."
     183#~ msgid "File upload error (failed to write file to disk)."
     184#~ msgstr ""
     185#~ "Errore caricamento file (non é stato possibile scrivere il file nel "
     186#~ "disco)."
     187#~ msgid "File upload error (file upload stopped by extension)."
     188#~ msgstr ""
     189#~ "Errore caricamento file (blocco caricamento file dovuto alla estensione)."
     190#~ msgid "File upload error (unknown error code)."
     191#~ msgstr "Errore caricamento file (codice errore sconosciuto)."
     192#~ msgid "File upload error. Please try again."
     193#~ msgstr "Errore caricamento file. Riprova."
     194#~ msgid "File too big."
     195#~ msgstr "File troppo grande."
     196#~ msgid "MIME type can't be detected."
     197#~ msgstr "Non é possibile rilevare il formato MIME."
     198#~ msgid "Incorrect type of file."
     199#~ msgstr "Tipo di file non corretto."
     200#~ msgid "Image too wide."
     201#~ msgstr "Immagine troppo larga."
     202#~ msgid "Image too narrow."
     203#~ msgstr "Immagine troppo stretta."
     204#~ msgid "Image too high."
     205#~ msgstr "Immagine troppo alta."
     206#~ msgid "Image too short."
     207#~ msgstr "Immagine troppo piccola."
     208#~ msgid "Image ratio too high (image too wide)."
     209#~ msgstr ""
     210#~ "Proporzione immagine troppo elevata (immagine eccessivamente larga)."
     211#~ msgid "Image ratio too low (image too high)."
     212#~ msgstr "Proporzione immagine troppo bassa (immagine eccessivamente alta)."
     213#~ msgid "Image has too many pixels."
     214#~ msgstr "Immagine con troppi pixel."
     215#~ msgid "Image has not enough pixels."
     216#~ msgstr "Immagine con pochi pixel."
     217#~ msgid "File not uploaded. Can't carry on a process."
     218#~ msgstr ""
     219#~ "Il file non é stato caricato. Non é possibile proseguire l'operazione."
     220#~ msgid "%s already exists. Please change the file name."
     221#~ msgstr "%s già esiste. Modifica il nome del file."
     222#~ msgid "No correct temp source file. Can't carry on a process."
     223#~ msgstr ""
     224#~ "File temporaneo sorgente non valido. Non é possibile proseguire "
     225#~ "l'operazione."
     226#~ msgid "No correct uploaded source file. Can't carry on a process."
     227#~ msgstr ""
     228#~ "Il file sorgente che é stato caricato non è valido. Non é possibile "
     229#~ "proseguire l'operazione."
     230#~ msgid "Destination directory can't be created. Can't carry on a process."
     231#~ msgstr ""
     232#~ "La cartella di destinazione non può essere creata. Non é possibile "
     233#~ "proseguire l'operazione."
     234#~ msgid "Destination directory doesn't exist. Can't carry on a process."
     235#~ msgstr ""
     236#~ "La cartella di destinazione non esiste. Non é possibile proseguire "
     237#~ "l'operazione."
     238#~ msgid "Destination path is not a directory. Can't carry on a process."
     239#~ msgstr ""
     240#~ "Il percorso di destinazione non conduce ad una cartella. Non é possibile "
     241#~ "proseguire l'operazione."
     242#~ msgid ""
     243#~ "Destination directory can't be made writeable. Can't carry on a process."
     244#~ msgstr ""
     245#~ "La cartella di destinazione non può essere resa scrivibile. Non é "
     246#~ "possibile proseguire l'operazione."
     247#~ msgid "Destination path is not a writeable. Can't carry on a process."
     248#~ msgstr ""
     249#~ "Il percorso di destinazione non é scrivibile. Non é possibile proseguire "
     250#~ "l'operazione."
     251#~ msgid "Can't create the temporary file. Can't carry on a process."
     252#~ msgstr ""
     253#~ "Non é stato possibile creare un file temporaneo. Non é possibile "
     254#~ "proseguire l'operazione."
     255#~ msgid "Source file is not readable. Can't carry on a process."
     256#~ msgstr ""
     257#~ "Il file sorgente non é leggibile. Non é possibile proseguire l'operazione."
     258#~ msgid "No create from %s support."
     259#~ msgstr "Impossibile creare dal supporto %s."
     260#~ msgid "Error in creating %s image from source."
     261#~ msgstr "Errore durante la creazione della immagine %s (via sorgente)."
     262#~ msgid "Can't read image source. Not an image?."
     263#~ msgstr ""
     264#~ "Impossibile la lettura del sorgente immagine. Forse, non é una immagine!"
     265#~ msgid "GD doesn't seem to be present."
     266#~ msgstr "Pare che la libreria GD non sia presente."
     267#~ msgid "No create from %s support, can't read watermark."
     268#~ msgstr ""
     269#~ "Nessuna creazione dal supporto %s. Impossibile leggere la filigrana."
     270#~ msgid "No %s read support, can't create watermark."
     271#~ msgstr "Nessun supporto di lettura %s. Impossibile creare la filigrana."
     272#~ msgid "Unknown image format, can't read watermark."
     273#~ msgstr "Formato immagine sconosciuto. Impossibile leggere la filigrana."
     274#~ msgid "No %s create support."
     275#~ msgstr "Nessuna creazione dal supporto %s."
     276#~ msgid "No conversion type defined."
     277#~ msgstr "Non é stato definito alcun tipo di conversione."
     278#~ msgid "Error copying file on the server. copy() failed."
     279#~ msgstr "Errore durante la copia del file sul server. copy() failed."
     280#~ msgid "Error reading the file."
     281#~ msgstr "Errore nella lettura del file."
    370282#~ msgid "Read full post &raquo;"
    371283#~ msgstr "Leggi l'articolo completo &raquo;"
  • sideposts/trunk/lang/sideposts-nb_NO.po

    r189333 r199488  
    33"Project-Id-Version: Sideposts 1.0.0\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: ^xRun^ <xrun@xrunblogg.com>\n"
    99"MIME-Version: 1.0\n"
     
    1414"X-Poedit-SourceCharset: utf-8\n"
    1515
    16 #: ../sideposts.php:55
    17 #: ../lib/class.plugin.php:485
    18 #: ../lib/class.plugin.php:522
     16#: ../sideposts.php:54
    1917msgid "Warning:"
    2018msgstr "Advarsel:"
    2119
    22 #: ../sideposts.php:56
     20#: ../sideposts.php:55
    2321#, php-format
    2422msgid "The active plugin %s is not compatible with your PHP version."
    2523msgstr "Det aktive innstikket %s er ikke kompatibelt med din PHP-versjon."
    2624
    27 #: ../sideposts.php:58
     25#: ../sideposts.php:57
    2826#, php-format
    2927msgid "%s is required for this plugin."
    3028msgstr "%s er nødvendig for dette innstikket."
    3129
    32 #: ../lib/class.plugin.php:486
    33 #, php-format
    34 msgid "The active plugin %s is not compatible with your WordPress version."
    35 msgstr "Det aktive innstikket %s er ikke kompatibelt med din WordPress-versjon."
     30#: ../includes/functions.php:49
     31#, fuzzy
     32msgid "Archive"
     33msgstr "Arkiv for:"
    3634
    37 #: ../lib/class.plugin.php:488
    38 #, php-format
    39 msgid "WordPress %s is required to run this plugin."
    40 msgstr "WordPress %s er nødvendig for å bruke dette innstikket."
     35#: ../includes/functions.php:51
     36msgid "Archive for"
     37msgstr "Arkiv for:"
    4138
    42 #: ../lib/class.plugin.php:523
    43 msgid "Standard sidebar functions are not present."
    44 msgstr "Alminnelige sidebar-funksjoner er ikke tilstede."
    45 
    46 #: ../lib/class.plugin.php:524
    47 #, php-format
    48 msgid "It is required to use the standard sidebar to run %s"
    49 msgstr "Standard sidebar er nødvendig for å bruke %s"
    50 
    51 #: ../lib/class.sideposts-widget.php:53
     39#: ../includes/widget.php:68
    5240msgid "A widget to move posts to the sidebar."
    5341msgstr "En widget som flytter poster til sidebar."
    5442
    55 #: ../lib/class.sideposts-widget.php:69
     43#: ../includes/widget.php:83
    5644msgid "Category not selected."
    5745msgstr "Kategori ikke valgt."
    5846
    59 #: ../lib/class.sideposts-widget.php:133
    60 msgid "Read more &raquo;"
    61 msgstr "Les mer &raquo;"
    62 
    63 #: ../lib/class.sideposts-widget.php:147
    64 msgid "No Comments"
    65 msgstr ""
    66 
    67 #: ../lib/class.sideposts-widget.php:148
    68 msgid "1 Comment"
    69 msgstr ""
    70 
    71 #: ../lib/class.sideposts-widget.php:149
    72 msgid "% Comments"
    73 msgstr ""
    74 
    75 #: ../lib/class.sideposts-widget.php:151
    76 msgid "Comments closed"
    77 msgstr ""
    78 
    79 #: ../lib/class.sideposts-widget.php:167
    80 msgid "Archive for"
    81 msgstr "Arkiv for:"
    82 
    83 #: ../lib/class.sideposts-widget.php:195
     47#: ../includes/widget.php:155
    8448msgid "Title:"
    8549msgstr "Tittel:"
    8650
    87 #: ../lib/class.sideposts-widget.php:196
     51#: ../includes/widget.php:156
    8852msgid "Category:"
    8953msgstr "Kategori:"
    9054
    91 #: ../lib/class.sideposts-widget.php:198
     55#: ../includes/widget.php:158
    9256msgid "-- PRIVATE POSTS --"
    9357msgstr "--PRIVATE POSTER--"
    9458
    95 #: ../lib/class.sideposts-widget.php:210
     59#: ../includes/widget.php:170
    9660msgid "Number of posts:"
    9761msgstr "Antall poster:"
    9862
    99 #: ../lib/class.sideposts-widget.php:212
     63#: ../includes/widget.php:172
    10064#, php-format
    10165msgid "(At most %d)"
    10266msgstr "(Maks %d)"
    10367
    104 #: ../lib/class.sideposts-widget.php:215
     68#: ../includes/widget.php:175
    10569msgid "Show:"
    10670msgstr "Vis:"
    10771
    108 #: ../lib/class.sideposts-widget.php:216
     72#: ../includes/widget.php:181
    10973msgid "Full Post"
    11074msgstr "Hele posten"
    11175
    112 #: ../lib/class.sideposts-widget.php:217
     76#: ../includes/widget.php:184
    11377msgid "Post Excerpt"
    11478msgstr "Utdrag"
    11579
    116 #: ../lib/class.sideposts-widget.php:218
     80#: ../includes/widget.php:187
    11781msgid "Excerpts with thumbnails"
    11882msgstr "Utdrag med thumbnails"
    11983
    120 #: ../lib/class.sideposts-widget.php:219
     84#: ../includes/widget.php:190
    12185msgid "Photo Blog"
    12286msgstr ""
    12387
    124 #: ../lib/class.sideposts-widget.php:220
     88#: ../includes/widget.php:193
    12589msgid "Only Post Title"
    12690msgstr ""
    12791
    128 #: ../lib/class.sideposts-widget.php:224
     92#: ../includes/widget.php:204
    12993msgid "Show category on all feeds"
    13094msgstr ""
    13195
    132 #: ../lib/class.sideposts-widget.php:226
     96#: ../includes/widget.php:206
    13397#, fuzzy
    13498msgid "Image width:"
    13599msgstr "Thumbnail bredde:"
    136100
    137 #: ../lib/class.sideposts-widget.php:228
     101#: ../includes/widget.php:208
    138102msgid "pixels"
    139103msgstr "punkter"
    140104
    141 #: ../lib/class.sideposts-widget.php:231
     105#: ../includes/widget.php:211
    142106msgid "Align thumbnail to right"
    143107msgstr ""
    144108
     109#: ../templates/photoblog.php:48
     110msgid "No Comments"
     111msgstr ""
     112
     113#: ../templates/photoblog.php:49
     114msgid "1 Comment"
     115msgstr ""
     116
     117#: ../templates/photoblog.php:50
     118msgid "% Comments"
     119msgstr ""
     120
     121#: ../templates/photoblog.php:52
     122msgid "Comments closed"
     123msgstr ""
     124
     125#: ../templates/posts.php:46
     126msgid "Read more &raquo;"
     127msgstr "Les mer &raquo;"
     128
     129#~ msgid "The active plugin %s is not compatible with your WordPress version."
     130#~ msgstr ""
     131#~ "Det aktive innstikket %s er ikke kompatibelt med din WordPress-versjon."
     132#~ msgid "WordPress %s is required to run this plugin."
     133#~ msgstr "WordPress %s er nødvendig for å bruke dette innstikket."
     134#~ msgid "Standard sidebar functions are not present."
     135#~ msgstr "Alminnelige sidebar-funksjoner er ikke tilstede."
     136#~ msgid "It is required to use the standard sidebar to run %s"
     137#~ msgstr "Standard sidebar er nødvendig for å bruke %s"
    145138#~ msgid "Read full post &raquo;"
    146139#~ msgstr "Les hele &raquo;"
  • sideposts/trunk/lang/sideposts-pl_PL.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget v1.4.3\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:25+0100\n"
    6 "PO-Revision-Date: 2009-12-04 19:25+0100\n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
     6"PO-Revision-Date: 2010-01-28 23:15+0100\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: \n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: .\n"
    1919
    20 #: sideposts.php:55
    21 #: lib/class.plugin.php:485
    22 #: lib/class.plugin.php:522
     20#: ../sideposts.php:54
    2321msgid "Warning:"
    2422msgstr ""
    2523
    26 #: sideposts.php:56
     24#: ../sideposts.php:55
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr ""
    3028
    31 #: sideposts.php:58
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr ""
    3533
    36 #: lib/class.plugin.php:486
    37 #, fuzzy, php-format
    38 msgid "The active plugin %s is not compatible with your WordPress version."
    39 msgstr "Plugin jest niekompatybilny z twoim systemem. Brakuje funkcji sidebar lub wersja WordPress jest niewłaściwa."
     34#: ../includes/functions.php:49
     35#, fuzzy
     36msgid "Archive"
     37msgstr "Archiwum"
    4038
    41 #: lib/class.plugin.php:488
    42 #, php-format
    43 msgid "WordPress %s is required to run this plugin."
    44 msgstr ""
     39#: ../includes/functions.php:51
     40msgid "Archive for"
     41msgstr "Archiwum"
    4542
    46 #: lib/class.plugin.php:523
    47 msgid "Standard sidebar functions are not present."
    48 msgstr ""
    49 
    50 #: lib/class.plugin.php:524
    51 #, php-format
    52 msgid "It is required to use the standard sidebar to run %s"
    53 msgstr ""
    54 
    55 #: lib/class.sideposts-widget.php:53
     43#: ../includes/widget.php:68
    5644msgid "A widget to move posts to the sidebar."
    5745msgstr "Widget przenoszący wpisy do paska bocznego."
    5846
    59 #: lib/class.sideposts-widget.php:69
     47#: ../includes/widget.php:83
    6048msgid "Category not selected."
    6149msgstr "Nie wybrano kategorii."
    6250
    63 #: lib/class.sideposts-widget.php:133
    64 msgid "Read more &raquo;"
    65 msgstr "Dalej &raquo;"
    66 
    67 #: lib/class.sideposts-widget.php:147
    68 msgid "No Comments"
    69 msgstr ""
    70 
    71 #: lib/class.sideposts-widget.php:148
    72 msgid "1 Comment"
    73 msgstr ""
    74 
    75 #: lib/class.sideposts-widget.php:149
    76 msgid "% Comments"
    77 msgstr ""
    78 
    79 #: lib/class.sideposts-widget.php:151
    80 msgid "Comments closed"
    81 msgstr ""
    82 
    83 #: lib/class.sideposts-widget.php:167
    84 msgid "Archive for"
    85 msgstr "Archiwum"
    86 
    87 #: lib/class.sideposts-widget.php:195
     51#: ../includes/widget.php:155
    8852msgid "Title:"
    8953msgstr "Tytuł:"
    9054
    91 #: lib/class.sideposts-widget.php:196
     55#: ../includes/widget.php:156
    9256msgid "Category:"
    9357msgstr "Kategoria:"
    9458
    95 #: lib/class.sideposts-widget.php:198
     59#: ../includes/widget.php:158
    9660msgid "-- PRIVATE POSTS --"
    9761msgstr ""
    9862
    99 #: lib/class.sideposts-widget.php:210
     63#: ../includes/widget.php:170
    10064msgid "Number of posts:"
    10165msgstr "Liczba wpisów:"
    10266
    103 #: lib/class.sideposts-widget.php:212
     67#: ../includes/widget.php:172
    10468#, php-format
    10569msgid "(At most %d)"
    10670msgstr "(Co najwyżej %d)"
    10771
    108 #: lib/class.sideposts-widget.php:215
     72#: ../includes/widget.php:175
    10973msgid "Show:"
    11074msgstr "Pokaż:"
    11175
    112 #: lib/class.sideposts-widget.php:216
     76#: ../includes/widget.php:181
    11377msgid "Full Post"
    11478msgstr "Pełny wpis"
    11579
    116 #: lib/class.sideposts-widget.php:217
     80#: ../includes/widget.php:184
    11781msgid "Post Excerpt"
    11882msgstr "Nagłówek wpisu"
    11983
    120 #: lib/class.sideposts-widget.php:218
     84#: ../includes/widget.php:187
    12185msgid "Excerpts with thumbnails"
    12286msgstr ""
    12387
    124 #: lib/class.sideposts-widget.php:219
     88#: ../includes/widget.php:190
    12589msgid "Photo Blog"
    12690msgstr ""
    12791
    128 #: lib/class.sideposts-widget.php:220
     92#: ../includes/widget.php:193
    12993msgid "Only Post Title"
    13094msgstr ""
    13195
    132 #: lib/class.sideposts-widget.php:224
     96#: ../includes/widget.php:204
    13397msgid "Show category on all feeds"
    13498msgstr ""
    13599
    136 #: lib/class.sideposts-widget.php:226
     100#: ../includes/widget.php:206
    137101msgid "Image width:"
    138102msgstr ""
    139103
    140 #: lib/class.sideposts-widget.php:228
     104#: ../includes/widget.php:208
    141105msgid "pixels"
    142106msgstr ""
    143107
    144 #: lib/class.sideposts-widget.php:231
     108#: ../includes/widget.php:211
    145109msgid "Align thumbnail to right"
    146110msgstr ""
    147111
     112#: ../templates/photoblog.php:48
     113msgid "No Comments"
     114msgstr ""
     115
     116#: ../templates/photoblog.php:49
     117msgid "1 Comment"
     118msgstr ""
     119
     120#: ../templates/photoblog.php:50
     121msgid "% Comments"
     122msgstr ""
     123
     124#: ../templates/photoblog.php:52
     125msgid "Comments closed"
     126msgstr ""
     127
     128#: ../templates/posts.php:46
     129msgid "Read more &raquo;"
     130msgstr "Dalej &raquo;"
     131
     132#, fuzzy
     133#~ msgid "The active plugin %s is not compatible with your WordPress version."
     134#~ msgstr ""
     135#~ "Plugin jest niekompatybilny z twoim systemem. Brakuje funkcji sidebar lub "
     136#~ "wersja WordPress jest niewłaściwa."
    148137#~ msgid "Read full post &raquo;"
    149138#~ msgstr "Przeczytaj cały wpis &raquo;"
  • sideposts/trunk/lang/sideposts-pt_BR.po

    r189333 r199488  
    33"Project-Id-Version: Sideposts 2.0\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Fabio Freitas <freitas@openlink.com.br>\n"
    99"MIME-Version: 1.0\n"
     
    1414"X-Poedit-SourceCharset: utf-8\n"
    1515
    16 #: ../sideposts.php:55
    17 #: ../lib/class.plugin.php:485
    18 #: ../lib/class.plugin.php:522
     16#: ../sideposts.php:54
    1917msgid "Warning:"
    2018msgstr "Aviso:"
    2119
    22 #: ../sideposts.php:56
     20#: ../sideposts.php:55
    2321#, php-format
    2422msgid "The active plugin %s is not compatible with your PHP version."
    2523msgstr "O plugin ativo %s não é compatível com a sua versão de PHP."
    2624
    27 #: ../sideposts.php:58
     25#: ../sideposts.php:57
    2826#, php-format
    2927msgid "%s is required for this plugin."
    3028msgstr "%s é necessário para este plugin."
    3129
    32 #: ../lib/class.plugin.php:486
    33 #, php-format
    34 msgid "The active plugin %s is not compatible with your WordPress version."
    35 msgstr "O plugin ativo %s não é compatível com a sua versão do WordPress."
     30#: ../includes/functions.php:49
     31#, fuzzy
     32msgid "Archive"
     33msgstr "Arquivo de"
    3634
    37 #: ../lib/class.plugin.php:488
    38 #, php-format
    39 msgid "WordPress %s is required to run this plugin."
    40 msgstr "Para executar este plugin, é necessário o WordPress %s."
     35#: ../includes/functions.php:51
     36msgid "Archive for"
     37msgstr "Arquivo de"
    4138
    42 #: ../lib/class.plugin.php:523
    43 msgid "Standard sidebar functions are not present."
    44 msgstr "Faltam funções da barra lateral padrão."
    45 
    46 #: ../lib/class.plugin.php:524
    47 #, php-format
    48 msgid "It is required to use the standard sidebar to run %s"
    49 msgstr "É necessário usar a barra lateral padrão para executar %s."
    50 
    51 #: ../lib/class.sideposts-widget.php:53
     39#: ../includes/widget.php:68
    5240msgid "A widget to move posts to the sidebar."
    5341msgstr "Um widget que move posts para a barra lateral."
    5442
    55 #: ../lib/class.sideposts-widget.php:69
     43#: ../includes/widget.php:83
    5644msgid "Category not selected."
    5745msgstr "Categoria não selecionada."
    5846
    59 #: ../lib/class.sideposts-widget.php:133
    60 msgid "Read more &raquo;"
    61 msgstr "Ler mais &raquo;"
    62 
    63 #: ../lib/class.sideposts-widget.php:147
    64 msgid "No Comments"
    65 msgstr ""
    66 
    67 #: ../lib/class.sideposts-widget.php:148
    68 msgid "1 Comment"
    69 msgstr ""
    70 
    71 #: ../lib/class.sideposts-widget.php:149
    72 msgid "% Comments"
    73 msgstr ""
    74 
    75 #: ../lib/class.sideposts-widget.php:151
    76 msgid "Comments closed"
    77 msgstr ""
    78 
    79 #: ../lib/class.sideposts-widget.php:167
    80 msgid "Archive for"
    81 msgstr "Arquivo de"
    82 
    83 #: ../lib/class.sideposts-widget.php:195
     47#: ../includes/widget.php:155
    8448msgid "Title:"
    8549msgstr "Título:"
    8650
    87 #: ../lib/class.sideposts-widget.php:196
     51#: ../includes/widget.php:156
    8852msgid "Category:"
    8953msgstr "Categoria:"
    9054
    91 #: ../lib/class.sideposts-widget.php:198
     55#: ../includes/widget.php:158
    9256msgid "-- PRIVATE POSTS --"
    9357msgstr "-- POSTS PRIVADOS --"
    9458
    95 #: ../lib/class.sideposts-widget.php:210
     59#: ../includes/widget.php:170
    9660msgid "Number of posts:"
    9761msgstr "Quantidade de posts:"
    9862
    99 #: ../lib/class.sideposts-widget.php:212
     63#: ../includes/widget.php:172
    10064#, php-format
    10165msgid "(At most %d)"
    10266msgstr "(No máximo %d)"
    10367
    104 #: ../lib/class.sideposts-widget.php:215
     68#: ../includes/widget.php:175
    10569msgid "Show:"
    10670msgstr "Mostrar:"
    10771
    108 #: ../lib/class.sideposts-widget.php:216
     72#: ../includes/widget.php:181
    10973msgid "Full Post"
    11074msgstr "Post completo"
    11175
    112 #: ../lib/class.sideposts-widget.php:217
     76#: ../includes/widget.php:184
    11377msgid "Post Excerpt"
    11478msgstr "Resumo do post"
    11579
    116 #: ../lib/class.sideposts-widget.php:218
     80#: ../includes/widget.php:187
    11781msgid "Excerpts with thumbnails"
    11882msgstr "Resumo com miniatura"
    11983
    120 #: ../lib/class.sideposts-widget.php:219
     84#: ../includes/widget.php:190
    12185msgid "Photo Blog"
    12286msgstr ""
    12387
    124 #: ../lib/class.sideposts-widget.php:220
     88#: ../includes/widget.php:193
    12589msgid "Only Post Title"
    12690msgstr ""
    12791
    128 #: ../lib/class.sideposts-widget.php:224
     92#: ../includes/widget.php:204
    12993msgid "Show category on all feeds"
    13094msgstr ""
    13195
    132 #: ../lib/class.sideposts-widget.php:226
     96#: ../includes/widget.php:206
    13397#, fuzzy
    13498msgid "Image width:"
    13599msgstr "Largura da miniatura:"
    136100
    137 #: ../lib/class.sideposts-widget.php:228
     101#: ../includes/widget.php:208
    138102msgid "pixels"
    139103msgstr "pixels"
    140104
    141 #: ../lib/class.sideposts-widget.php:231
     105#: ../includes/widget.php:211
    142106msgid "Align thumbnail to right"
    143107msgstr ""
    144108
     109#: ../templates/photoblog.php:48
     110msgid "No Comments"
     111msgstr ""
     112
     113#: ../templates/photoblog.php:49
     114msgid "1 Comment"
     115msgstr ""
     116
     117#: ../templates/photoblog.php:50
     118msgid "% Comments"
     119msgstr ""
     120
     121#: ../templates/photoblog.php:52
     122msgid "Comments closed"
     123msgstr ""
     124
     125#: ../templates/posts.php:46
     126msgid "Read more &raquo;"
     127msgstr "Ler mais &raquo;"
     128
     129#~ msgid "The active plugin %s is not compatible with your WordPress version."
     130#~ msgstr "O plugin ativo %s não é compatível com a sua versão do WordPress."
     131#~ msgid "WordPress %s is required to run this plugin."
     132#~ msgstr "Para executar este plugin, é necessário o WordPress %s."
     133#~ msgid "Standard sidebar functions are not present."
     134#~ msgstr "Faltam funções da barra lateral padrão."
     135#~ msgid "It is required to use the standard sidebar to run %s"
     136#~ msgstr "É necessário usar a barra lateral padrão para executar %s."
    145137#~ msgid "Read full post &raquo;"
    146138#~ msgstr "Ler post completo &raquo;"
  • sideposts/trunk/lang/sideposts-ro_RO.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget 1.4\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n"
    99"MIME-Version: 1.0\n"
     
    1616"X-Poedit-SearchPath-0: ..\n"
    1717
    18 #: ../sideposts.php:55
    19 #: ../lib/class.plugin.php:485
    20 #: ../lib/class.plugin.php:522
     18#: ../sideposts.php:54
    2119msgid "Warning:"
    2220msgstr "Atenţie:"
    2321
    24 #: ../sideposts.php:56
     22#: ../sideposts.php:55
    2523#, php-format
    2624msgid "The active plugin %s is not compatible with your PHP version."
    2725msgstr "Pluginul activ %s nu e compatibil cu versiunea ta de PHP."
    2826
    29 #: ../sideposts.php:58
     27#: ../sideposts.php:57
    3028#, php-format
    3129msgid "%s is required for this plugin."
    3230msgstr "%s este necesar pentru acest plugin."
    3331
    34 #: ../lib/class.plugin.php:486
    35 #, php-format
    36 msgid "The active plugin %s is not compatible with your WordPress version."
    37 msgstr "Pluginul activ %s nu e compatibil cu versiunea ta de WordPress."
     32#: ../includes/functions.php:49
     33#, fuzzy
     34msgid "Archive"
     35msgstr "Arhiva de la"
    3836
    39 #: ../lib/class.plugin.php:488
    40 #, php-format
    41 msgid "WordPress %s is required to run this plugin."
    42 msgstr "Trebuie să funcţioneze WordPress pentru a rula pluginul %s."
     37#: ../includes/functions.php:51
     38msgid "Archive for"
     39msgstr "Arhiva de la"
    4340
    44 #: ../lib/class.plugin.php:523
    45 msgid "Standard sidebar functions are not present."
    46 msgstr "Funcţiile barei laterale standard nu sunt prezente."
    47 
    48 #: ../lib/class.plugin.php:524
    49 #, php-format
    50 msgid "It is required to use the standard sidebar to run %s"
    51 msgstr "Trebuie să foloseşti bara laterală standard pentru a rula %s"
    52 
    53 #: ../lib/class.sideposts-widget.php:53
     41#: ../includes/widget.php:68
    5442msgid "A widget to move posts to the sidebar."
    5543msgstr "Un widget care mută articole în bara laterală."
    5644
    57 #: ../lib/class.sideposts-widget.php:69
     45#: ../includes/widget.php:83
    5846msgid "Category not selected."
    5947msgstr "Nu ai selectat categoria."
    6048
    61 #: ../lib/class.sideposts-widget.php:133
    62 msgid "Read more &raquo;"
    63 msgstr "Citeşte mai mult &raquo;"
    64 
    65 #: ../lib/class.sideposts-widget.php:147
    66 msgid "No Comments"
    67 msgstr ""
    68 
    69 #: ../lib/class.sideposts-widget.php:148
    70 msgid "1 Comment"
    71 msgstr ""
    72 
    73 #: ../lib/class.sideposts-widget.php:149
    74 msgid "% Comments"
    75 msgstr ""
    76 
    77 #: ../lib/class.sideposts-widget.php:151
    78 msgid "Comments closed"
    79 msgstr ""
    80 
    81 #: ../lib/class.sideposts-widget.php:167
    82 msgid "Archive for"
    83 msgstr "Arhiva de la"
    84 
    85 #: ../lib/class.sideposts-widget.php:195
     49#: ../includes/widget.php:155
    8650msgid "Title:"
    8751msgstr "Titlul:"
    8852
    89 #: ../lib/class.sideposts-widget.php:196
     53#: ../includes/widget.php:156
    9054msgid "Category:"
    9155msgstr "Categoria:"
    9256
    93 #: ../lib/class.sideposts-widget.php:198
     57#: ../includes/widget.php:158
    9458msgid "-- PRIVATE POSTS --"
    9559msgstr "-- ARTICOLE PRIVATE --"
    9660
    97 #: ../lib/class.sideposts-widget.php:210
     61#: ../includes/widget.php:170
    9862msgid "Number of posts:"
    9963msgstr "Numărul de articole:"
    10064
    101 #: ../lib/class.sideposts-widget.php:212
     65#: ../includes/widget.php:172
    10266#, php-format
    10367msgid "(At most %d)"
    10468msgstr "(Cel mult %d)"
    10569
    106 #: ../lib/class.sideposts-widget.php:215
     70#: ../includes/widget.php:175
    10771msgid "Show:"
    10872msgstr "Arată:"
    10973
    110 #: ../lib/class.sideposts-widget.php:216
     74#: ../includes/widget.php:181
    11175msgid "Full Post"
    11276msgstr "Articolul complet"
    11377
    114 #: ../lib/class.sideposts-widget.php:217
     78#: ../includes/widget.php:184
    11579msgid "Post Excerpt"
    11680msgstr "Scurtă descriere a articolului"
    11781
    118 #: ../lib/class.sideposts-widget.php:218
     82#: ../includes/widget.php:187
    11983msgid "Excerpts with thumbnails"
    12084msgstr "Scurtă descriere şi icoană"
    12185
    122 #: ../lib/class.sideposts-widget.php:219
     86#: ../includes/widget.php:190
    12387msgid "Photo Blog"
    12488msgstr ""
    12589
    126 #: ../lib/class.sideposts-widget.php:220
     90#: ../includes/widget.php:193
    12791msgid "Only Post Title"
    12892msgstr "Doar titlul articolului"
    12993
    130 #: ../lib/class.sideposts-widget.php:224
     94#: ../includes/widget.php:204
    13195msgid "Show category on all feeds"
    13296msgstr ""
    13397
    134 #: ../lib/class.sideposts-widget.php:226
     98#: ../includes/widget.php:206
    13599#, fuzzy
    136100msgid "Image width:"
    137101msgstr "Lăţimea icoanei:"
    138102
    139 #: ../lib/class.sideposts-widget.php:228
     103#: ../includes/widget.php:208
    140104msgid "pixels"
    141105msgstr "pixeli"
    142106
    143 #: ../lib/class.sideposts-widget.php:231
     107#: ../includes/widget.php:211
    144108msgid "Align thumbnail to right"
    145109msgstr ""
    146110
     111#: ../templates/photoblog.php:48
     112msgid "No Comments"
     113msgstr ""
     114
     115#: ../templates/photoblog.php:49
     116msgid "1 Comment"
     117msgstr ""
     118
     119#: ../templates/photoblog.php:50
     120msgid "% Comments"
     121msgstr ""
     122
     123#: ../templates/photoblog.php:52
     124msgid "Comments closed"
     125msgstr ""
     126
     127#: ../templates/posts.php:46
     128msgid "Read more &raquo;"
     129msgstr "Citeşte mai mult &raquo;"
     130
     131#~ msgid "The active plugin %s is not compatible with your WordPress version."
     132#~ msgstr "Pluginul activ %s nu e compatibil cu versiunea ta de WordPress."
     133#~ msgid "WordPress %s is required to run this plugin."
     134#~ msgstr "Trebuie să funcţioneze WordPress pentru a rula pluginul %s."
     135#~ msgid "Standard sidebar functions are not present."
     136#~ msgstr "Funcţiile barei laterale standard nu sunt prezente."
     137#~ msgid "It is required to use the standard sidebar to run %s"
     138#~ msgstr "Trebuie să foloseşti bara laterală standard pentru a rula %s"
    147139#~ msgid "Read full post &raquo;"
    148140#~ msgstr "Citeşte articolul complet &raquo;"
  • sideposts/trunk/lang/sideposts-ru_RU.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget 2.2\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: WordPress по-русски | http://www.wp-ru.ru <grib69@gmail.com>\n"
    99"MIME-Version: 1.0\n"
     
    2020"X-Poedit-SearchPath-2: ../lib\n"
    2121
    22 #: ../sideposts.php:55
    23 #: ../lib/class.plugin.php:485
    24 #: ../lib/class.plugin.php:522
     22#: ../sideposts.php:54
    2523msgid "Warning:"
    2624msgstr "Предупреждение:"
    2725
    28 #: ../sideposts.php:56
     26#: ../sideposts.php:55
    2927#, php-format
    3028msgid "The active plugin %s is not compatible with your PHP version."
    3129msgstr "Плагин %s не совместим с установленой у Вас версией PHP."
    3230
    33 #: ../sideposts.php:58
     31#: ../sideposts.php:57
    3432#, php-format
    3533msgid "%s is required for this plugin."
    3634msgstr "%s требуется для плагина."
    3735
    38 #: ../lib/class.plugin.php:486
    39 #, php-format
    40 msgid "The active plugin %s is not compatible with your WordPress version."
    41 msgstr "Плагин %s не совместим с Вашей версией WordPress."
     36#: ../includes/functions.php:49
     37#, fuzzy
     38msgid "Archive"
     39msgstr "Архив для"
    4240
    43 #: ../lib/class.plugin.php:488
    44 #, php-format
    45 msgid "WordPress %s is required to run this plugin."
    46 msgstr "Требуется WordPress %s для работы этого плагина."
     41#: ../includes/functions.php:51
     42msgid "Archive for"
     43msgstr "Архив для"
    4744
    48 #: ../lib/class.plugin.php:523
    49 msgid "Standard sidebar functions are not present."
    50 msgstr ""
    51 
    52 #: ../lib/class.plugin.php:524
    53 #, php-format
    54 msgid "It is required to use the standard sidebar to run %s"
    55 msgstr ""
    56 
    57 #: ../lib/class.sideposts-widget.php:53
     45#: ../includes/widget.php:68
    5846msgid "A widget to move posts to the sidebar."
    5947msgstr "Виджет размещает записи на сайдбаре."
    6048
    61 #: ../lib/class.sideposts-widget.php:69
     49#: ../includes/widget.php:83
    6250msgid "Category not selected."
    6351msgstr "Не выбрана рубрика."
    6452
    65 #: ../lib/class.sideposts-widget.php:133
    66 msgid "Read more &raquo;"
    67 msgstr "Далее... &raquo;"
    68 
    69 #: ../lib/class.sideposts-widget.php:147
    70 msgid "No Comments"
    71 msgstr ""
    72 
    73 #: ../lib/class.sideposts-widget.php:148
    74 msgid "1 Comment"
    75 msgstr ""
    76 
    77 #: ../lib/class.sideposts-widget.php:149
    78 msgid "% Comments"
    79 msgstr ""
    80 
    81 #: ../lib/class.sideposts-widget.php:151
    82 msgid "Comments closed"
    83 msgstr ""
    84 
    85 #: ../lib/class.sideposts-widget.php:167
    86 msgid "Archive for"
    87 msgstr "Архив для"
    88 
    89 #: ../lib/class.sideposts-widget.php:195
     53#: ../includes/widget.php:155
    9054msgid "Title:"
    9155msgstr "Заголовок:"
    9256
    93 #: ../lib/class.sideposts-widget.php:196
     57#: ../includes/widget.php:156
    9458msgid "Category:"
    9559msgstr "Рубрика:"
    9660
    97 #: ../lib/class.sideposts-widget.php:198
     61#: ../includes/widget.php:158
    9862msgid "-- PRIVATE POSTS --"
    9963msgstr "-- ЛИЧНЫЕ ЗАПИСИ --"
    10064
    101 #: ../lib/class.sideposts-widget.php:210
     65#: ../includes/widget.php:170
    10266msgid "Number of posts:"
    10367msgstr "Кол-во записей:"
    10468
    105 #: ../lib/class.sideposts-widget.php:212
     69#: ../includes/widget.php:172
    10670#, php-format
    10771msgid "(At most %d)"
    10872msgstr "(Максимум %d)"
    10973
    110 #: ../lib/class.sideposts-widget.php:215
     74#: ../includes/widget.php:175
    11175msgid "Show:"
    11276msgstr "Отображать:"
    11377
    114 #: ../lib/class.sideposts-widget.php:216
     78#: ../includes/widget.php:181
    11579msgid "Full Post"
    11680msgstr "Запись полностью"
    11781
    118 #: ../lib/class.sideposts-widget.php:217
     82#: ../includes/widget.php:184
    11983msgid "Post Excerpt"
    12084msgstr "Отрывок из записи"
    12185
    122 #: ../lib/class.sideposts-widget.php:218
     86#: ../includes/widget.php:187
    12387msgid "Excerpts with thumbnails"
    12488msgstr "Отрывок с миниатюрой"
    12589
    126 #: ../lib/class.sideposts-widget.php:219
     90#: ../includes/widget.php:190
    12791msgid "Photo Blog"
    12892msgstr ""
    12993
    130 #: ../lib/class.sideposts-widget.php:220
     94#: ../includes/widget.php:193
    13195msgid "Only Post Title"
    13296msgstr "Только заголовок записи"
    13397
    134 #: ../lib/class.sideposts-widget.php:224
     98#: ../includes/widget.php:204
    13599msgid "Show category on all feeds"
    136100msgstr ""
    137101
    138 #: ../lib/class.sideposts-widget.php:226
     102#: ../includes/widget.php:206
    139103#, fuzzy
    140104msgid "Image width:"
    141105msgstr "Ширина миниатюры:"
    142106
    143 #: ../lib/class.sideposts-widget.php:228
     107#: ../includes/widget.php:208
    144108msgid "pixels"
    145109msgstr "пикселей"
    146110
    147 #: ../lib/class.sideposts-widget.php:231
     111#: ../includes/widget.php:211
    148112msgid "Align thumbnail to right"
    149113msgstr ""
    150114
     115#: ../templates/photoblog.php:48
     116msgid "No Comments"
     117msgstr ""
     118
     119#: ../templates/photoblog.php:49
     120msgid "1 Comment"
     121msgstr ""
     122
     123#: ../templates/photoblog.php:50
     124msgid "% Comments"
     125msgstr ""
     126
     127#: ../templates/photoblog.php:52
     128msgid "Comments closed"
     129msgstr ""
     130
     131#: ../templates/posts.php:46
     132msgid "Read more &raquo;"
     133msgstr "Далее... &raquo;"
     134
     135#~ msgid "The active plugin %s is not compatible with your WordPress version."
     136#~ msgstr "Плагин %s не совместим с Вашей версией WordPress."
     137#~ msgid "WordPress %s is required to run this plugin."
     138#~ msgstr "Требуется WordPress %s для работы этого плагина."
    151139#~ msgid "Read full post &raquo;"
    152140#~ msgstr "Читать полностью &raquo;"
  • sideposts/trunk/lang/sideposts-sv_SE.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts Widget 1.5\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n"
    99"MIME-Version: 1.0\n"
     
    1616"X-Poedit-SearchPath-0: ..\n"
    1717
    18 #: ../sideposts.php:55
    19 #: ../lib/class.plugin.php:485
    20 #: ../lib/class.plugin.php:522
     18#: ../sideposts.php:54
    2119msgid "Warning:"
    2220msgstr ""
    2321
    24 #: ../sideposts.php:56
     22#: ../sideposts.php:55
    2523#, php-format
    2624msgid "The active plugin %s is not compatible with your PHP version."
    2725msgstr ""
    2826
    29 #: ../sideposts.php:58
     27#: ../sideposts.php:57
    3028#, php-format
    3129msgid "%s is required for this plugin."
    3230msgstr ""
    3331
    34 #: ../lib/class.plugin.php:486
    35 #, fuzzy, php-format
    36 msgid "The active plugin %s is not compatible with your WordPress version."
    37 msgstr "Detta tillägg är inte kompatibelt med ditt system. Sidopanelsfunktioner saknas eller fel version av WordPress."
     32#: ../includes/functions.php:49
     33#, fuzzy
     34msgid "Archive"
     35msgstr "Arkiv för"
    3836
    39 #: ../lib/class.plugin.php:488
    40 #, php-format
    41 msgid "WordPress %s is required to run this plugin."
    42 msgstr ""
     37#: ../includes/functions.php:51
     38msgid "Archive for"
     39msgstr "Arkiv för"
    4340
    44 #: ../lib/class.plugin.php:523
    45 msgid "Standard sidebar functions are not present."
    46 msgstr ""
    47 
    48 #: ../lib/class.plugin.php:524
    49 #, php-format
    50 msgid "It is required to use the standard sidebar to run %s"
    51 msgstr ""
    52 
    53 #: ../lib/class.sideposts-widget.php:53
     41#: ../includes/widget.php:68
    5442msgid "A widget to move posts to the sidebar."
    5543msgstr "Ett tillägg för att flytta artiklar till sidopanelen."
    5644
    57 #: ../lib/class.sideposts-widget.php:69
     45#: ../includes/widget.php:83
    5846msgid "Category not selected."
    5947msgstr "Kategori ej vald"
    6048
    61 #: ../lib/class.sideposts-widget.php:133
    62 msgid "Read more &raquo;"
    63 msgstr "Läs mer &raquo;"
    64 
    65 #: ../lib/class.sideposts-widget.php:147
    66 msgid "No Comments"
    67 msgstr ""
    68 
    69 #: ../lib/class.sideposts-widget.php:148
    70 msgid "1 Comment"
    71 msgstr ""
    72 
    73 #: ../lib/class.sideposts-widget.php:149
    74 msgid "% Comments"
    75 msgstr ""
    76 
    77 #: ../lib/class.sideposts-widget.php:151
    78 msgid "Comments closed"
    79 msgstr ""
    80 
    81 #: ../lib/class.sideposts-widget.php:167
    82 msgid "Archive for"
    83 msgstr "Arkiv för"
    84 
    85 #: ../lib/class.sideposts-widget.php:195
     49#: ../includes/widget.php:155
    8650msgid "Title:"
    8751msgstr "Titel:"
    8852
    89 #: ../lib/class.sideposts-widget.php:196
     53#: ../includes/widget.php:156
    9054msgid "Category:"
    9155msgstr "Kategori:"
    9256
    93 #: ../lib/class.sideposts-widget.php:198
     57#: ../includes/widget.php:158
    9458msgid "-- PRIVATE POSTS --"
    9559msgstr ""
    9660
    97 #: ../lib/class.sideposts-widget.php:210
     61#: ../includes/widget.php:170
    9862msgid "Number of posts:"
    9963msgstr "Antal artiklar:"
    10064
    101 #: ../lib/class.sideposts-widget.php:212
     65#: ../includes/widget.php:172
    10266#, php-format
    10367msgid "(At most %d)"
    10468msgstr "(Som flest %d)"
    10569
    106 #: ../lib/class.sideposts-widget.php:215
     70#: ../includes/widget.php:175
    10771msgid "Show:"
    10872msgstr "Visa:"
    10973
    110 #: ../lib/class.sideposts-widget.php:216
     74#: ../includes/widget.php:181
    11175msgid "Full Post"
    11276msgstr "Hela artikeln"
    11377
    114 #: ../lib/class.sideposts-widget.php:217
     78#: ../includes/widget.php:184
    11579msgid "Post Excerpt"
    11680msgstr "Artikelutdrag"
    11781
    118 #: ../lib/class.sideposts-widget.php:218
     82#: ../includes/widget.php:187
    11983msgid "Excerpts with thumbnails"
    12084msgstr "Utdrag med miniatyrbild"
    12185
    122 #: ../lib/class.sideposts-widget.php:219
     86#: ../includes/widget.php:190
    12387msgid "Photo Blog"
    12488msgstr ""
    12589
    126 #: ../lib/class.sideposts-widget.php:220
     90#: ../includes/widget.php:193
    12791msgid "Only Post Title"
    12892msgstr ""
    12993
    130 #: ../lib/class.sideposts-widget.php:224
     94#: ../includes/widget.php:204
    13195msgid "Show category on all feeds"
    13296msgstr ""
    13397
    134 #: ../lib/class.sideposts-widget.php:226
     98#: ../includes/widget.php:206
    13599#, fuzzy
    136100msgid "Image width:"
    137101msgstr "Bredd på miniatyrbild:"
    138102
    139 #: ../lib/class.sideposts-widget.php:228
     103#: ../includes/widget.php:208
    140104msgid "pixels"
    141105msgstr "pixlar"
    142106
    143 #: ../lib/class.sideposts-widget.php:231
     107#: ../includes/widget.php:211
    144108msgid "Align thumbnail to right"
    145109msgstr ""
    146110
     111#: ../templates/photoblog.php:48
     112msgid "No Comments"
     113msgstr ""
     114
     115#: ../templates/photoblog.php:49
     116msgid "1 Comment"
     117msgstr ""
     118
     119#: ../templates/photoblog.php:50
     120msgid "% Comments"
     121msgstr ""
     122
     123#: ../templates/photoblog.php:52
     124msgid "Comments closed"
     125msgstr ""
     126
     127#: ../templates/posts.php:46
     128msgid "Read more &raquo;"
     129msgstr "Läs mer &raquo;"
     130
     131#, fuzzy
     132#~ msgid "The active plugin %s is not compatible with your WordPress version."
     133#~ msgstr ""
     134#~ "Detta tillägg är inte kompatibelt med ditt system. Sidopanelsfunktioner "
     135#~ "saknas eller fel version av WordPress."
    147136#~ msgid "Read full post &raquo;"
    148137#~ msgstr "Läs hela artikeln &raquo;"
  • sideposts/trunk/lang/sideposts-tr_TR.po

    r189333 r199488  
    33"Project-Id-Version: SidePosts WordPress Widget in TurKish\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2009-12-04 19:06+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:09+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Omer Faruk - wordpress.info.tr <admin@wordpress.info.tr>\n"
    99"MIME-Version: 1.0\n"
     
    1818"X-Poedit-SearchPath-0: \n"
    1919
    20 #: ../sideposts.php:55
    21 #: ../lib/class.plugin.php:485
    22 #: ../lib/class.plugin.php:522
     20#: ../sideposts.php:54
    2321msgid "Warning:"
    2422msgstr ""
    2523
    26 #: ../sideposts.php:56
     24#: ../sideposts.php:55
    2725#, php-format
    2826msgid "The active plugin %s is not compatible with your PHP version."
    2927msgstr ""
    3028
    31 #: ../sideposts.php:58
     29#: ../sideposts.php:57
    3230#, php-format
    3331msgid "%s is required for this plugin."
    3432msgstr ""
    3533
    36 #: ../lib/class.plugin.php:486
    37 #, php-format
    38 msgid "The active plugin %s is not compatible with your WordPress version."
    39 msgstr ""
     34#: ../includes/functions.php:49
     35#, fuzzy
     36msgid "Archive"
     37msgstr "Arşiv için:"
    4038
    41 #: ../lib/class.plugin.php:488
    42 #, php-format
    43 msgid "WordPress %s is required to run this plugin."
    44 msgstr ""
     39#: ../includes/functions.php:51
     40msgid "Archive for"
     41msgstr "Arşiv için:"
    4542
    46 #: ../lib/class.plugin.php:523
    47 msgid "Standard sidebar functions are not present."
    48 msgstr ""
    49 
    50 #: ../lib/class.plugin.php:524
    51 #, php-format
    52 msgid "It is required to use the standard sidebar to run %s"
    53 msgstr ""
    54 
    55 #: ../lib/class.sideposts-widget.php:53
     43#: ../includes/widget.php:68
    5644msgid "A widget to move posts to the sidebar."
    5745msgstr "Yazıları kenar çubuğuna taşımak için bir widget."
    5846
    59 #: ../lib/class.sideposts-widget.php:69
     47#: ../includes/widget.php:83
    6048msgid "Category not selected."
    6149msgstr "Kategori seçilmedi"
    6250
    63 #: ../lib/class.sideposts-widget.php:133
    64 msgid "Read more &raquo;"
    65 msgstr "Daha fazlasını oku &raquo;"
    66 
    67 #: ../lib/class.sideposts-widget.php:147
    68 msgid "No Comments"
    69 msgstr ""
    70 
    71 #: ../lib/class.sideposts-widget.php:148
    72 msgid "1 Comment"
    73 msgstr ""
    74 
    75 #: ../lib/class.sideposts-widget.php:149
    76 msgid "% Comments"
    77 msgstr ""
    78 
    79 #: ../lib/class.sideposts-widget.php:151
    80 msgid "Comments closed"
    81 msgstr ""
    82 
    83 #: ../lib/class.sideposts-widget.php:167
    84 msgid "Archive for"
    85 msgstr "Arşiv için:"
    86 
    87 #: ../lib/class.sideposts-widget.php:195
     51#: ../includes/widget.php:155
    8852msgid "Title:"
    8953msgstr "Başlık:"
    9054
    91 #: ../lib/class.sideposts-widget.php:196
     55#: ../includes/widget.php:156
    9256msgid "Category:"
    9357msgstr "Kategori:"
    9458
    95 #: ../lib/class.sideposts-widget.php:198
     59#: ../includes/widget.php:158
    9660msgid "-- PRIVATE POSTS --"
    9761msgstr ""
    9862
    99 #: ../lib/class.sideposts-widget.php:210
     63#: ../includes/widget.php:170
    10064msgid "Number of posts:"
    10165msgstr "Yazı Sayısı:"
    10266
    103 #: ../lib/class.sideposts-widget.php:212
     67#: ../includes/widget.php:172
    10468#, php-format
    10569msgid "(At most %d)"
    10670msgstr "(İlk %d'dakiler)"
    10771
    108 #: ../lib/class.sideposts-widget.php:215
     72#: ../includes/widget.php:175
    10973msgid "Show:"
    11074msgstr "Göster:"
    11175
    112 #: ../lib/class.sideposts-widget.php:216
     76#: ../includes/widget.php:181
    11377msgid "Full Post"
    11478msgstr "Tüm Yazı"
    11579
    116 #: ../lib/class.sideposts-widget.php:217
     80#: ../includes/widget.php:184
    11781msgid "Post Excerpt"
    11882msgstr "Yazı Alıntısı"
    11983
    120 #: ../lib/class.sideposts-widget.php:218
     84#: ../includes/widget.php:187
    12185msgid "Excerpts with thumbnails"
    12286msgstr ""
    12387
    124 #: ../lib/class.sideposts-widget.php:219
     88#: ../includes/widget.php:190
    12589msgid "Photo Blog"
    12690msgstr ""
    12791
    128 #: ../lib/class.sideposts-widget.php:220
     92#: ../includes/widget.php:193
    12993msgid "Only Post Title"
    13094msgstr ""
    13195
    132 #: ../lib/class.sideposts-widget.php:224
     96#: ../includes/widget.php:204
    13397msgid "Show category on all feeds"
    13498msgstr ""
    13599
    136 #: ../lib/class.sideposts-widget.php:226
     100#: ../includes/widget.php:206
    137101msgid "Image width:"
    138102msgstr ""
    139103
    140 #: ../lib/class.sideposts-widget.php:228
     104#: ../includes/widget.php:208
    141105msgid "pixels"
    142106msgstr ""
    143107
    144 #: ../lib/class.sideposts-widget.php:231
     108#: ../includes/widget.php:211
    145109msgid "Align thumbnail to right"
    146110msgstr ""
     111
     112#: ../templates/photoblog.php:48
     113msgid "No Comments"
     114msgstr ""
     115
     116#: ../templates/photoblog.php:49
     117msgid "1 Comment"
     118msgstr ""
     119
     120#: ../templates/photoblog.php:50
     121msgid "% Comments"
     122msgstr ""
     123
     124#: ../templates/photoblog.php:52
     125msgid "Comments closed"
     126msgstr ""
     127
     128#: ../templates/posts.php:46
     129msgid "Read more &raquo;"
     130msgstr "Daha fazlasını oku &raquo;"
    147131
    148132#~ msgid "Read full post &raquo;"
  • sideposts/trunk/lang/sideposts.pot

    r196960 r199488  
    33"Project-Id-Version: Alkivia SidePosts\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2010-01-18 20:47+0100\n"
     5"POT-Creation-Date: 2010-01-28 23:16+0100\n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jordi Canals <alkivia@jcanals.net>\n"
     7"Last-Translator: Jordi Canals <devel@jcanals.cat>\n"
    88"Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n"
    99"MIME-Version: 1.0\n"
     
    1616"X-Poedit-SearchPath-0: ..\n"
    1717
    18 #: ../sideposts.php:53
    19 #: ../framework/classes/abstract/plugin.php:212
    20 #: ../framework/classes/abstract/plugin.php:231
     18#: ../sideposts.php:54
    2119msgid "Warning:"
    2220msgstr ""
    2321
    24 #: ../sideposts.php:54
     22#: ../sideposts.php:55
    2523#, php-format
    2624msgid "The active plugin %s is not compatible with your PHP version."
    2725msgstr ""
    2826
    29 #: ../sideposts.php:56
     27#: ../sideposts.php:57
    3028#, php-format
    3129msgid "%s is required for this plugin."
    3230msgstr ""
    3331
    34 #: ../framework/classes/abstract/module.php:470
    35 msgid "Option blocked by administrator."
     32#: ../includes/functions.php:49
     33msgid "Archive"
    3634msgstr ""
    3735
    38 #: ../framework/classes/abstract/plugin.php:213
    39 #, php-format
    40 msgid "The active plugin %s is not compatible with your WordPress version."
     36#: ../includes/functions.php:51
     37msgid "Archive for"
    4138msgstr ""
    4239
    43 #: ../framework/classes/abstract/plugin.php:215
    44 #, php-format
    45 msgid "WordPress %s is required to run this plugin."
    46 msgstr ""
    47 
    48 #: ../framework/classes/abstract/plugin.php:232
    49 msgid "Standard sidebar functions are not present."
    50 msgstr ""
    51 
    52 #: ../framework/classes/abstract/plugin.php:233
    53 #, php-format
    54 msgid "It is required to use the standard sidebar to run %s"
    55 msgstr ""
    56 
    57 #: ../framework/lib/formating.php:51
    58 msgid "Settings saved."
    59 msgstr ""
    60 
    61 #: ../framework/lib/formating.php:160
    62 msgid "Just Now"
    63 msgstr ""
    64 
    65 #: ../framework/lib/formating.php:163
    66 #, php-format
    67 msgid "1 minute ago"
    68 msgid_plural "%d minutes ago"
    69 msgstr[0] ""
    70 msgstr[1] ""
    71 
    72 #: ../framework/lib/formating.php:166
    73 #, php-format
    74 msgid "1 hour ago"
    75 msgid_plural "%d hours ago"
    76 msgstr[0] ""
    77 msgstr[1] ""
    78 
    79 #: ../framework/lib/formating.php:170
    80 #, php-format
    81 msgid "Today at %s"
    82 msgstr ""
    83 
    84 #: ../framework/lib/formating.php:170
    85 #, php-format
    86 msgid "Yesterday at %s"
    87 msgstr ""
    88 
    89 #: ../framework/vendor/upload/class.upload.php:2172
    90 msgid "File error. Please try again."
    91 msgstr ""
    92 
    93 #: ../framework/vendor/upload/class.upload.php:2173
    94 msgid "Local file doesn't exist."
    95 msgstr ""
    96 
    97 #: ../framework/vendor/upload/class.upload.php:2174
    98 msgid "Local file is not readable."
    99 msgstr ""
    100 
    101 #: ../framework/vendor/upload/class.upload.php:2175
    102 msgid "File upload error (the uploaded file exceeds the upload_max_filesize directive in php.ini)."
    103 msgstr ""
    104 
    105 #: ../framework/vendor/upload/class.upload.php:2176
    106 msgid "File upload error (the uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the html form)."
    107 msgstr ""
    108 
    109 #: ../framework/vendor/upload/class.upload.php:2177
    110 msgid "File upload error (the uploaded file was only partially uploaded)."
    111 msgstr ""
    112 
    113 #: ../framework/vendor/upload/class.upload.php:2178
    114 msgid "File upload error (no file was uploaded)."
    115 msgstr ""
    116 
    117 #: ../framework/vendor/upload/class.upload.php:2179
    118 msgid "File upload error (missing a temporary folder)."
    119 msgstr ""
    120 
    121 #: ../framework/vendor/upload/class.upload.php:2180
    122 msgid "File upload error (failed to write file to disk)."
    123 msgstr ""
    124 
    125 #: ../framework/vendor/upload/class.upload.php:2181
    126 msgid "File upload error (file upload stopped by extension)."
    127 msgstr ""
    128 
    129 #: ../framework/vendor/upload/class.upload.php:2182
    130 msgid "File upload error (unknown error code)."
    131 msgstr ""
    132 
    133 #: ../framework/vendor/upload/class.upload.php:2183
    134 msgid "File upload error. Please try again."
    135 msgstr ""
    136 
    137 #: ../framework/vendor/upload/class.upload.php:2184
    138 msgid "File too big."
    139 msgstr ""
    140 
    141 #: ../framework/vendor/upload/class.upload.php:2185
    142 msgid "MIME type can't be detected."
    143 msgstr ""
    144 
    145 #: ../framework/vendor/upload/class.upload.php:2186
    146 msgid "Incorrect type of file."
    147 msgstr ""
    148 
    149 #: ../framework/vendor/upload/class.upload.php:2187
    150 msgid "Image too wide."
    151 msgstr ""
    152 
    153 #: ../framework/vendor/upload/class.upload.php:2188
    154 msgid "Image too narrow."
    155 msgstr ""
    156 
    157 #: ../framework/vendor/upload/class.upload.php:2189
    158 msgid "Image too high."
    159 msgstr ""
    160 
    161 #: ../framework/vendor/upload/class.upload.php:2190
    162 msgid "Image too short."
    163 msgstr ""
    164 
    165 #: ../framework/vendor/upload/class.upload.php:2191
    166 msgid "Image ratio too high (image too wide)."
    167 msgstr ""
    168 
    169 #: ../framework/vendor/upload/class.upload.php:2192
    170 msgid "Image ratio too low (image too high)."
    171 msgstr ""
    172 
    173 #: ../framework/vendor/upload/class.upload.php:2193
    174 msgid "Image has too many pixels."
    175 msgstr ""
    176 
    177 #: ../framework/vendor/upload/class.upload.php:2194
    178 msgid "Image has not enough pixels."
    179 msgstr ""
    180 
    181 #: ../framework/vendor/upload/class.upload.php:2195
    182 msgid "File not uploaded. Can't carry on a process."
    183 msgstr ""
    184 
    185 #: ../framework/vendor/upload/class.upload.php:2196
    186 #, php-format
    187 msgid "%s already exists. Please change the file name."
    188 msgstr ""
    189 
    190 #: ../framework/vendor/upload/class.upload.php:2197
    191 msgid "No correct temp source file. Can't carry on a process."
    192 msgstr ""
    193 
    194 #: ../framework/vendor/upload/class.upload.php:2198
    195 msgid "No correct uploaded source file. Can't carry on a process."
    196 msgstr ""
    197 
    198 #: ../framework/vendor/upload/class.upload.php:2199
    199 msgid "Destination directory can't be created. Can't carry on a process."
    200 msgstr ""
    201 
    202 #: ../framework/vendor/upload/class.upload.php:2200
    203 msgid "Destination directory doesn't exist. Can't carry on a process."
    204 msgstr ""
    205 
    206 #: ../framework/vendor/upload/class.upload.php:2201
    207 msgid "Destination path is not a directory. Can't carry on a process."
    208 msgstr ""
    209 
    210 #: ../framework/vendor/upload/class.upload.php:2202
    211 msgid "Destination directory can't be made writeable. Can't carry on a process."
    212 msgstr ""
    213 
    214 #: ../framework/vendor/upload/class.upload.php:2203
    215 msgid "Destination path is not a writeable. Can't carry on a process."
    216 msgstr ""
    217 
    218 #: ../framework/vendor/upload/class.upload.php:2204
    219 msgid "Can't create the temporary file. Can't carry on a process."
    220 msgstr ""
    221 
    222 #: ../framework/vendor/upload/class.upload.php:2205
    223 msgid "Source file is not readable. Can't carry on a process."
    224 msgstr ""
    225 
    226 #: ../framework/vendor/upload/class.upload.php:2206
    227 #, php-format
    228 msgid "No create from %s support."
    229 msgstr ""
    230 
    231 #: ../framework/vendor/upload/class.upload.php:2207
    232 #, php-format
    233 msgid "Error in creating %s image from source."
    234 msgstr ""
    235 
    236 #: ../framework/vendor/upload/class.upload.php:2208
    237 msgid "Can't read image source. Not an image?."
    238 msgstr ""
    239 
    240 #: ../framework/vendor/upload/class.upload.php:2209
    241 msgid "GD doesn't seem to be present."
    242 msgstr ""
    243 
    244 #: ../framework/vendor/upload/class.upload.php:2210
    245 #, php-format
    246 msgid "No create from %s support, can't read watermark."
    247 msgstr ""
    248 
    249 #: ../framework/vendor/upload/class.upload.php:2211
    250 #, php-format
    251 msgid "No %s read support, can't create watermark."
    252 msgstr ""
    253 
    254 #: ../framework/vendor/upload/class.upload.php:2212
    255 msgid "Unknown image format, can't read watermark."
    256 msgstr ""
    257 
    258 #: ../framework/vendor/upload/class.upload.php:2213
    259 #, php-format
    260 msgid "No %s create support."
    261 msgstr ""
    262 
    263 #: ../framework/vendor/upload/class.upload.php:2214
    264 msgid "No conversion type defined."
    265 msgstr ""
    266 
    267 #: ../framework/vendor/upload/class.upload.php:2215
    268 msgid "Error copying file on the server. copy() failed."
    269 msgstr ""
    270 
    271 #: ../framework/vendor/upload/class.upload.php:2216
    272 msgid "Error reading the file."
    273 msgstr ""
    274 
    275 #: ../includes/widget.php:61
     40#: ../includes/widget.php:68
    27641msgid "A widget to move posts to the sidebar."
    27742msgstr ""
    27843
    279 #: ../includes/widget.php:76
     44#: ../includes/widget.php:83
    28045msgid "Category not selected."
    28146msgstr ""
    28247
    283 #: ../includes/widget.php:140
    284 msgid "Read more &raquo;"
    285 msgstr ""
    286 
    287 #: ../includes/widget.php:154
    288 msgid "No Comments"
    289 msgstr ""
    290 
    29148#: ../includes/widget.php:155
    292 msgid "1 Comment"
     49msgid "Title:"
    29350msgstr ""
    29451
    29552#: ../includes/widget.php:156
    296 msgid "% Comments"
     53msgid "Category:"
    29754msgstr ""
    29855
    29956#: ../includes/widget.php:158
    300 msgid "Comments closed"
    301 msgstr ""
    302 
    303 #: ../includes/widget.php:174
    304 msgid "Archive for"
    305 msgstr ""
    306 
    307 #: ../includes/widget.php:203
    308 msgid "Title:"
    309 msgstr ""
    310 
    311 #: ../includes/widget.php:204
    312 msgid "Category:"
    313 msgstr ""
    314 
    315 #: ../includes/widget.php:206
    31657msgid "-- PRIVATE POSTS --"
    31758msgstr ""
    31859
    319 #: ../includes/widget.php:218
     60#: ../includes/widget.php:170
    32061msgid "Number of posts:"
    32162msgstr ""
    32263
    323 #: ../includes/widget.php:220
     64#: ../includes/widget.php:172
    32465#, php-format
    32566msgid "(At most %d)"
    32667msgstr ""
    32768
    328 #: ../includes/widget.php:223
     69#: ../includes/widget.php:175
    32970msgid "Show:"
    33071msgstr ""
    33172
    332 #: ../includes/widget.php:224
     73#: ../includes/widget.php:181
    33374msgid "Full Post"
    33475msgstr ""
    33576
    336 #: ../includes/widget.php:225
     77#: ../includes/widget.php:184
    33778msgid "Post Excerpt"
    33879msgstr ""
    33980
    340 #: ../includes/widget.php:226
     81#: ../includes/widget.php:187
    34182msgid "Excerpts with thumbnails"
    34283msgstr ""
    34384
    344 #: ../includes/widget.php:227
     85#: ../includes/widget.php:190
    34586msgid "Photo Blog"
    34687msgstr ""
    34788
    348 #: ../includes/widget.php:228
     89#: ../includes/widget.php:193
    34990msgid "Only Post Title"
    35091msgstr ""
    35192
    352 #: ../includes/widget.php:232
     93#: ../includes/widget.php:204
    35394msgid "Show category on all feeds"
    35495msgstr ""
    35596
    356 #: ../includes/widget.php:234
     97#: ../includes/widget.php:206
    35798msgid "Image width:"
    35899msgstr ""
    359100
    360 #: ../includes/widget.php:236
     101#: ../includes/widget.php:208
    361102msgid "pixels"
    362103msgstr ""
    363104
    364 #: ../includes/widget.php:239
     105#: ../includes/widget.php:211
    365106msgid "Align thumbnail to right"
    366107msgstr ""
    367108
     109#: ../templates/photoblog.php:48
     110msgid "No Comments"
     111msgstr ""
     112
     113#: ../templates/photoblog.php:49
     114msgid "1 Comment"
     115msgstr ""
     116
     117#: ../templates/photoblog.php:50
     118msgid "% Comments"
     119msgstr ""
     120
     121#: ../templates/photoblog.php:52
     122msgid "Comments closed"
     123msgstr ""
     124
     125#: ../templates/posts.php:46
     126msgid "Read more &raquo;"
     127msgstr ""
     128
  • sideposts/trunk/license.txt

    r196960 r199488  
    279279
    280280             END OF TERMS AND CONDITIONS
    281 
    282         How to Apply These Terms to Your New Programs
    283 
    284   If you develop a new program, and you want it to be of the greatest
    285 possible use to the public, the best way to achieve this is to make it
    286 free software which everyone can redistribute and change under these terms.
    287 
    288   To do so, attach the following notices to the program.  It is safest
    289 to attach them to the start of each source file to most effectively
    290 convey the exclusion of warranty; and each file should have at least
    291 the "copyright" line and a pointer to where the full notice is found.
    292 
    293     <one line to give the program's name and a brief idea of what it does.>
    294     Copyright (C) <year>  <name of author>
    295 
    296     This program is free software; you can redistribute it and/or modify
    297     it under the terms of the GNU General Public License as published by
    298     the Free Software Foundation; either version 2 of the License, or
    299     (at your option) any later version.
    300 
    301     This program is distributed in the hope that it will be useful,
    302     but WITHOUT ANY WARRANTY; without even the implied warranty of
    303     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    304     GNU General Public License for more details.
    305 
    306     You should have received a copy of the GNU General Public License along
    307     with this program; if not, write to the Free Software Foundation, Inc.,
    308     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    309 
    310 Also add information on how to contact you by electronic and paper mail.
    311 
    312 If the program is interactive, make it output a short notice like this
    313 when it starts in an interactive mode:
    314 
    315     Gnomovision version 69, Copyright (C) year name of author
    316     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    317     This is free software, and you are welcome to redistribute it
    318     under certain conditions; type `show c' for details.
    319 
    320 The hypothetical commands `show w' and `show c' should show the appropriate
    321 parts of the General Public License.  Of course, the commands you use may
    322 be called something other than `show w' and `show c'; they could even be
    323 mouse-clicks or menu items--whatever suits your program.
    324 
    325 You should also get your employer (if you work as a programmer) or your
    326 school, if any, to sign a "copyright disclaimer" for the program, if
    327 necessary.  Here is a sample; alter the names:
    328 
    329   Yoyodyne, Inc., hereby disclaims all copyright interest in the program
    330   `Gnomovision' (which makes passes at compilers) written by James Hacker.
    331 
    332   <signature of Ty Coon>, 1 April 1989
    333   Ty Coon, President of Vice
    334 
    335 This General Public License does not permit incorporating your program into
    336 proprietary programs.  If your program is a subroutine library, you may
    337 consider it more useful to permit linking proprietary applications with the
    338 library.  If this is what you want to do, use the GNU Lesser General
    339 Public License instead of this License.
  • sideposts/trunk/readme.txt

    r197281 r199488  
    11=== Alkivia SidePosts ===
    2 Revision: $Rev: 491 $
     2Revision: $Rev: 639 $
    33Contributors: txanny
    44Donate link: http://alkivia.org/donate
     5Help link: http://wordpress.org/tags/sideposts?forum_id=10
     6Docs link: http://wiki.alkivia.org/sideposts
    57Tags: sidebar, widget, sideposts, asides, posts, sideblog, miniblog, subblog, miniposts
    68Requires at least: 2.8
     
    1416With this widget you select the category you want, and all entries with this category, will be shown on the sidebar instead the main blog. You will have then a small blog on the sidebar for those special entries. For each entry, you have the link to the post page. You can select the number to post to show and if must show only the post excerpt or the full post content (Also excerpt with thumbnails can be shown).
    1517
    16 Another option is to set a widget to show only private posts. In this case, private posts are hidden only in the home page and nowhere else. When set to private posts, widget only shows to users with `read_private_posts` capability (Administrators and Editors).
    17 
    18 Also, you have foot links to the category archive and feed (Not for private posts). With this simple functions, you will have a small subblog on the sidebar.
     18Another option is to set a widget to show only private posts. In this case, private posts are hidden only in the home page and nowhere else. When set to private posts, widget only shows to users with `read_private_posts` capability (Administrators and Editors). Also, you have foot links to the category archive and feed (Not for private posts). With this simple functions, you will have a small blog on the sidebar.
    1919
    2020= Features: =
     
    2222* Have a mini-blog or foto-blog on the sidebar.
    2323* Choose to show the full post, the post excerpt or excerpts with thumbnails.
     24* Create your own template to show anything else than provided templates.
    2425* Setup a widget to show latest private posts at the sidebar.
    2526* Entries at the aside category, are not shown from main pages.
    26 * Widget will show link to archives page.
    27 * Widget has a link to the selected category feeds.
     27* Widget will show a link to archives page (Option on file to remove).
     28* Widget has a link to the selected category feeds (Optional).
    2829* Set category, number of posts and title on the widget admin panel.
    2930* Widget allows for multiple instances.
     
    3536* Catalan
    3637* Spanish
     38* Belorussian *by <a href="http://www.fatcow.com" rel="nofollow">Marcis Gasuns</a>*
     39* Bulgarian *by <a href="http://eet-live.com/" rel="nofollow">Petar Toushkov</a>*
     40* Farsi (Persian) *by <a href="http://sourena.net" rel="nofollow">Sourena</a>*
     41* Finnish *by <a href="http://www.tiirikainen.fi" rel="nofollow">Vesa Tiirikainen</a>*
     42* French *by <a href="http://www.midiconcept.fr" rel="nofollow">Pierre Tabutiaux</a>*
     43* German *by <a href="http://www.flashdevelop.de" rel="nofollow">Andreas Khong</a>*
    3744* Italian *by <a href="http://gidibao.net" rel="nofollow">Gianni Diurno</a>*
     45* Norwegian *by <a href="http://xrunblogg.com" rel="nofollow">^xRun^</a>*
     46* Polish *by <a href="http://aerolit.pl" rel="nofollow">Darek Sieradzki</a>*
     47* Portuguese (Brasil) *by <a href="http://http://www.maisquecoisa.net" rel="nofollow">Fabio Freitas</a>*
    3848* Romanian *by <a href="http://drumliber.ro/" rel="nofollow">Drum liber</a>*
    39 * German *by <a href="http://www.flashdevelop.de" rel="nofollow">Andreas Khong</a>*
    40 * French *by <a href="http://www.midiconcept.fr" rel="nofollow">Pierre Tabutiaux</a>*
    41 * Finnish *by <a href="http://www.tiirikainen.fi" rel="nofollow">Vesa Tiirikainen</a>*
    42 * Portuguese (Brasil) *by <a href="http://http://www.maisquecoisa.net" rel="nofollow">Fabio Freitas</a>*
    43 * Norwegian *by <a href="http://xrunblogg.com" rel="nofollow">^xRun^</a>*
     49* Russian *by <a href="http://www.wp-ru.ru" rel="nofollow">Grib</a>*
    4450* Swedish *by <a href="http://www.kopahus.se" rel="nofollow">Henrik Mortensen</a>*
    45 * Polish *by <a href="http://aerolit.pl" rel="nofollow">Darek Sieradzki</a>*
    46 * Russian *by <a href="http://www.wp-ru.ru" rel="nofollow">Grib</a>*
    47 * Byelorussian *by <a href="http://www.fatcow.com" rel="nofollow">Marcis Gasuns</a>*
    48 * Farsi (Persian) *by <a href="http://sourena.net" rel="nofollow">Sourena</a>*
    4951* Turkish *by <a href="http://ramerta.com" rel="nofollow">Omer Faruk</a>*
    5052* POT file for easy translation to other languages included.
     
    5658* **Requires PHP 5.2**. Will not work with obsolete PHP versions. (This includes PHP-4).
    5759* Verify the plugin is compatible with your WordPress Version.
    58 * WordPress SideBars must be used. If you intend to any other sidebars replacement, check it before using this plugin.
     60* WordPress SideBars must be used. If you intend to use any other sidebars replacement, check it before using this plugin.
    5961
    6062= Installing the Widget =
     
    7880= Where can I find more information about this plugin, usage and support ? =
    7981
    80 * You will find all plugin documentation in <a href="http://wiki.alkivia.org/sideposts">our wiki</a>.
     82* You will find all plugin documentation in the <a href="http://wiki.alkivia.org/sideposts">Sideposts Manual</a>.
    8183* Take a look to the <a href="http://alkivia.org/wordpress/sideposts">Plugin Homepage</a>.
    8284* The <a href="http://alkivia.org/cat/sideposts">plugin posts archive</a> with new announcements about this plugin.
     
    101103== License ==
    102104
    103 Copyright 2009, 2010 Jordi Canals
     105Copyright 2008, 2009, 2010 Jordi Canals
    104106
    105107This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.
     
    110112
    111113== Changelog ==
     114
     115= 3.0 =
     116* New templating system for widget output.
     117* New option to remove archives bottom link.
     118* Option to include templates from your own directory.
     119* Plugin and Framework have separared translation files.
     120* Included Bulgarian translation.
    112121
    113122= 2.5.2 =
     
    248257
    249258== Upgrade Notice ==
    250 
    251 = 2.5.2 =
    252 License updated to fully compatible with WordPress. Solved a problem not sending the styles file.
     259 
     260 = 3.0 =
     261 New templating system for output.
     262 
     263 = 2.5.2 =
     264 Solved a problem not sending the styles file. License updated to fully compatible with WordPress.
     265 
  • sideposts/trunk/sideposts.php

    r196960 r199488  
    44Plugin URI:     http://alkivia.org/wordpress/sideposts
    55Description:    A simple widget to move posts from a category to the sidebar. Posts do not show on index, archives or feeds, and have its own feed.
    6 Version:        2.5.2
     6Version:        3.0
    77Author:         Jordi Canals
    88Author URI:     http://alkivia.org
     
    1414 * Posts will not show on index pages, archives or feeds. The category has its own feed.
    1515 *
    16  * @version     $Rev: 483 $
     16 * @version     $Rev: 638 $
    1717 * @author      Jordi Canals
    18  * @copyright   Copyright (C) 2009, 2010 Jordi Canals
     18 * @copyright   Copyright (C) 2008, 2009, 2010 Jordi Canals
    1919 * @license     GNU General Public License version 2
    2020 * @link        http://alkivia.org
     
    2323 *
    2424
    25     Copyright 2009, 2010 Jordi Canals <devel@jcanals.cat>
     25    Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat>
    2626
    2727    This program is free software; you can redistribute it and/or
     
    4747 * @return void
    4848 */
    49 function _sposts_php_warning()
     49function _sideposts_php_warning()
    5050{
    5151    $data = get_plugin_data(__FILE__);
     
    5555        . sprintf(__('The active plugin %s is not compatible with your PHP version.', 'sideposts') .'</p><p>',
    5656            '&laquo;' . $data['Name'] . ' ' . $data['Version'] . '&raquo;')
    57         . sprintf(__('%s is required for this plugin.', 'sideposts'), 'PHP 5.2 ')
     57        . sprintf(__('%s is required for this plugin.', 'sideposts'), 'PHP 5.2')
    5858        . '</p></div>';
    5959}
     
    6262if ( version_compare(PHP_VERSION, '5.2.0', '<') ) {
    6363    // Send an armin warning
    64     add_action('admin_notices', '_sposts_php_warning');
     64    add_action('admin_notices', '_sideposts_php_warning');
    6565} else {
    6666    require_once( SPOSTS_PATH . '/framework/loader.php');
    6767    require ( SPOSTS_LIB . '/plugin.php' );
     68    require ( SPOSTS_LIB . '/functions.php' );
    6869
    6970    ak_create_object('sideposts', new SidePosts(__FILE__, 'sideposts'));
  • sideposts/trunk/style.css

    r196960 r199488  
    66 * If you're usinf one of my themes, styling on the file custom.css is the preferred method.
    77 *
    8  * @version     $Rev: 483 $
     8 * @version     $Rev: 528 $
    99 * @author      Jordi Canals
    10  * @copyright   Copyright (C) 2009, 2010 Jordi Canals
     10 * @copyright   Copyright (C) 2008, 2009, 2010 Jordi Canals
    1111 * @license     GNU General Public License version 2
    1212 * @link        http://alkivia.org
     
    1515 *
    1616
    17     Copyright 2009, 2010 Jordi Canals <devel@jcanals.cat>
     17    Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat>
    1818
    1919    This program is free software; you can redistribute it and/or
Note: See TracChangeset for help on using the changeset viewer.