Changeset 199488
- Timestamp:
- 01/29/2010 02:34:53 PM (16 years ago)
- Location:
- sideposts/trunk
- Files:
-
- 39 added
- 52 edited
-
framework/.htaccess (added)
-
framework/classes/abstract/module.php (modified) (27 diffs)
-
framework/classes/abstract/plugin.php (modified) (3 diffs)
-
framework/classes/abstract/theme.php (modified) (3 diffs)
-
framework/classes/admin-notices.php (modified) (1 diff)
-
framework/classes/settings.php (modified) (1 diff)
-
framework/classes/template.php (added)
-
framework/init.php (modified) (4 diffs)
-
framework/lang (added)
-
framework/lang/bg_BG.mo (added)
-
framework/lang/bg_BG.po (added)
-
framework/lang/ca.mo (added)
-
framework/lang/ca.po (added)
-
framework/lang/es_ES.mo (added)
-
framework/lang/es_ES.po (added)
-
framework/lang/framework.pot (added)
-
framework/lang/it_IT.mo (added)
-
framework/lang/it_IT.po (added)
-
framework/lib/filesystem.php (modified) (2 diffs)
-
framework/lib/formating.php (modified) (3 diffs)
-
framework/lib/modules.php (added)
-
framework/lib/objects.php (modified) (3 diffs)
-
framework/lib/plugins.php (modified) (3 diffs)
-
framework/lib/themes.php (modified) (1 diff)
-
framework/lib/users.php (added)
-
framework/license.txt (modified) (1 diff)
-
framework/loader.php (modified) (1 diff)
-
framework/samples (added)
-
framework/samples/alkivia.ini (added)
-
framework/samples/alkivia.php (added)
-
framework/styles (added)
-
framework/styles/.htaccess (added)
-
framework/styles/admin.css (added)
-
framework/styles/images (added)
-
framework/styles/images/alkivia.png (added)
-
framework/styles/images/dl-bg-gray.png (added)
-
framework/styles/images/docs.png (added)
-
framework/styles/images/help.png (added)
-
framework/styles/images/paypal.png (added)
-
framework/vendor/upload/class.upload.php (modified) (2 diffs)
-
images (added)
-
images/rss.png (added)
-
includes/deprecated.php (modified) (3 diffs)
-
includes/functions.php (added)
-
includes/plugin.php (modified) (4 diffs)
-
includes/widget.php (modified) (8 diffs)
-
lang/sideposts-bg_BG.mo (added)
-
lang/sideposts-bg_BG.po (added)
-
lang/sideposts-by_BY.mo (modified) (previous)
-
lang/sideposts-by_BY.po (modified) (2 diffs)
-
lang/sideposts-ca.mo (modified) (previous)
-
lang/sideposts-ca.po (modified) (2 diffs)
-
lang/sideposts-de_DE.mo (modified) (previous)
-
lang/sideposts-de_DE.po (modified) (2 diffs)
-
lang/sideposts-es_ES.mo (modified) (previous)
-
lang/sideposts-es_ES.po (modified) (2 diffs)
-
lang/sideposts-fa_IR.mo (modified) (previous)
-
lang/sideposts-fa_IR.po (modified) (2 diffs)
-
lang/sideposts-fi_FI.mo (modified) (previous)
-
lang/sideposts-fi_FI.po (modified) (2 diffs)
-
lang/sideposts-fr_FR.mo (modified) (previous)
-
lang/sideposts-fr_FR.po (modified) (2 diffs)
-
lang/sideposts-it_IT.mo (modified) (previous)
-
lang/sideposts-it_IT.po (modified) (2 diffs)
-
lang/sideposts-nb_NO.mo (modified) (previous)
-
lang/sideposts-nb_NO.po (modified) (2 diffs)
-
lang/sideposts-pl_PL.mo (modified) (previous)
-
lang/sideposts-pl_PL.po (modified) (2 diffs)
-
lang/sideposts-pt_BR.mo (modified) (previous)
-
lang/sideposts-pt_BR.po (modified) (2 diffs)
-
lang/sideposts-ro_RO.mo (modified) (previous)
-
lang/sideposts-ro_RO.po (modified) (2 diffs)
-
lang/sideposts-ru_RU.mo (modified) (previous)
-
lang/sideposts-ru_RU.po (modified) (2 diffs)
-
lang/sideposts-sv_SE.mo (modified) (previous)
-
lang/sideposts-sv_SE.po (modified) (2 diffs)
-
lang/sideposts-tr_TR.mo (modified) (previous)
-
lang/sideposts-tr_TR.po (modified) (2 diffs)
-
lang/sideposts.pot (modified) (2 diffs)
-
license.txt (modified) (1 diff)
-
readme.txt (modified) (9 diffs)
-
samples (added)
-
samples/alkivia.ini (added)
-
sideposts.php (modified) (6 diffs)
-
style.css (modified) (2 diffs)
-
templates (added)
-
templates/ex-thumb.php (added)
-
templates/excerpt.php (added)
-
templates/photoblog.php (added)
-
templates/posts.php (added)
-
templates/title.php (added)
Legend:
- Unmodified
- Added
- Removed
-
sideposts/trunk/framework/classes/abstract/module.php
r196960 r199488 31 31 * Abtract class to be used as a theme template. 32 32 * 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. 43 39 * 44 40 * @author Jordi Canals 45 41 * @package Alkivia 46 42 * @subpackage Framework 47 * @link http:// alkivia.org43 * @link http://wiki.alkivia.org/framework/classes/module 48 44 * 49 45 * @uses akSettings … … 55 51 * Module ID. Is the module internal short name. 56 52 * Filled in constructor (as a constructor param). Used for translations textdomain. 53 * 57 54 * @var string 58 55 */ … … 62 59 * Module Type using a class constant: self::PLUGIN, self::COMPONENT, seelf::THEME, self::CHILD_THEME 63 60 * By default is set to 0 (unknown). 61 * 64 62 * @var int 65 63 */ … … 69 67 * Full path to module main file. 70 68 * Main file is 'style.css' for themes and the php file with data header for plugins and components. 69 * 71 70 * @var string 72 71 */ … … 75 74 /** 76 75 * URL to the plugin folder. 76 * 77 77 * @var string 78 78 */ … … 126 126 * 127 127 * @see akModuleAbstract::mod_data 128 * 128 129 * @var array 129 130 */ … … 134 135 * - 'post' - Saves the current post. 135 136 * - 'more' - Saves the read more status. 137 * 136 138 * @var array 137 139 */ … … 141 143 * Holds a reference to the global 'settings' object. 142 144 * This object has been created on the framework loader. 145 * 143 146 * @var akSettings 144 147 */ … … 147 150 /** 148 151 * Flag to see if we are installing (activating for first time) or reactivating the module. 152 * 149 153 * @var boolean 150 154 */ … … 153 157 /** 154 158 * Flag to see if module needs to be updated. 159 * 155 160 * @var boolean 156 161 */ … … 210 215 add_action('init', array($this, 'systemInit')); 211 216 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 } 213 221 214 222 // Load styles … … 225 233 /** 226 234 * Executes as soon as module class is loaded. 235 * 227 236 * @return void 228 237 */ … … 231 240 /** 232 241 * Prepares and returns default module options. 242 * 233 243 * @return array Options array 234 244 */ … … 237 247 /** 238 248 * Fires at 'widgets_init' action hook 249 *. 239 250 * @return void 240 251 */ … … 243 254 /** 244 255 * Fires at 'init' action hook. 256 * 245 257 * @return void 246 258 */ … … 248 260 249 261 /** 250 * Fires at 'admin_menus' action hook- 262 * Fires at 'admin_menus' action hook. 263 * 251 264 * @return void 252 265 */ … … 269 282 * @hook action 'init' 270 283 * @access private 284 * 271 285 * @return void 272 286 */ … … 304 318 /** 305 319 * Enqueues additional administration styles. 320 * Send the framework admin.css file and additionally any other admin.css file 321 * found on the module direcotry. 306 322 * 307 323 * @hook action 'admin_print_styles' 324 * @uses apply_filters() Calls the 'ak_framework_style_admin' filter on the framework style url. 308 325 * @uses apply_filters() Calls the 'ak_<Mod_ID>_style_admin' filter on the style url. 309 326 * @access private 327 * 310 328 * @return void 311 329 */ 312 330 final function adminStyles() 313 331 { 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') ) { 317 341 $url = get_stylesheet_directory_uri() . '/admin.css'; 318 342 } elseif ( $this->isTheme() && file_exists(TEMPLATEPATH . '/admin.css') ) { … … 320 344 } elseif ( file_exists(dirname($this->mod_file) . '/admin.css') ) { 321 345 $url = $this->mod_url . '/admin.css'; 346 } else { 347 $url = ''; 322 348 } 323 349 324 350 $url = apply_filters('ak_' . $this->ID . '_style_admin', $url); 325 326 351 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'); 329 354 } 330 355 } … … 332 357 /** 333 358 * Enqueues additional styles for plugins and components. 359 * For themes no styles are enqueued as them are already sent by WP. 334 360 * 335 361 * @hook action 'wp_print_styles' 336 362 * @uses apply_filters() Calls the 'ak_<Mod_ID>_style_url' filter on the style url. 337 363 * @access private 364 * 338 365 * @return void 339 366 */ 340 367 final function enqueueStyles() 341 368 { 342 $url = '';343 344 369 if ( $this->isTheme() || $this->getOption('disable-module-styles') ) { 345 370 return; … … 348 373 if ( file_exists(dirname($this->mod_file) . '/style.css') ) { 349 374 $url = $this->mod_url . '/style.css'; 375 } else { 376 $url = ''; 350 377 } 351 378 352 379 $url = apply_filters('ak_' . $this->ID . '_style_url', $url); 353 380 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); 356 383 } 357 384 } … … 478 505 if ( $this->cfg->isForced($this->ID, $option) ) { 479 506 if ( $show_notice ) { 480 echo '<em>' . __('Option blocked by administrator.', 'ak theme') . '</em>';507 echo '<em>' . __('Option blocked by administrator.', 'akfw') . '</em>'; 481 508 } 482 509 return false; … … 515 542 /** 516 543 * Loads plugins data. 544 * 517 545 * @return void 518 546 */ … … 525 553 526 554 $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); 528 556 $this->mod_data = array_merge($readme_data, $plugin_data); 529 557 } … … 532 560 /** 533 561 * Loads theme (and child) data. 562 * 534 563 * @return void 535 564 */ 536 565 final private function loadThemeData() 537 566 { 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); 540 571 } 541 572 542 573 if ( TEMPLATEPATH !== STYLESHEETPATH && empty($this->child_data) ) { 543 574 $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); 545 578 } 546 579 } … … 549 582 * Loads component data. 550 583 * TODO: This method needs some revision as it does not work. 584 * TODO: Load data from component readme.txt 585 * 551 586 * @return void 552 587 */ … … 609 644 /** 610 645 * Returns the URL to the module folder. 646 * 611 647 * @return string Absolute URL to the module folder. 612 648 */ -
sideposts/trunk/framework/classes/abstract/plugin.php
r196960 r199488 27 27 */ 28 28 29 require_once ( AK_LIB . '/plugins.php' );30 29 require_once ( AK_CLASSES . '/abstract/module.php' ); 31 30 … … 33 32 * Abtract class to be used as a plugin template. 34 33 * Must be implemented before using this class and it's recommended to prefix the class to prevent collissions. 35 * There are some special functions tha y 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). 39 38 * 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. 45 41 * 46 42 * @author Jordi Canals 47 43 * @package Alkivia 48 44 * @subpackage Framework 49 * @link http:// alkivia.org45 * @link http://wiki.alkivia.org/framework/classes/plugin 50 46 * 51 47 * @uses plugins.php … … 212 208 $this->loadTranslations(); // We have not loaded translations yet. 213 209 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'), 216 212 '«' . $this->mod_data['Name'] . ' ' . $this->mod_data['Version'] . '»') 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']) 218 214 . '</p></div>'; 219 215 } -
sideposts/trunk/framework/classes/abstract/theme.php
r196960 r199488 32 32 * Abtract class to be used as a theme template. 33 33 * 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. 34 39 * 35 40 * @author Jordi Canals 36 41 * @package Alkivia 37 42 * @subpackage Framework 38 * @link http:// alkivia.org43 * @link http://wiki.alkivia.org/framework/classes/theme 39 44 * 40 45 * @uses akSettings … … 127 132 final private function install () 128 133 { 129 130 134 // If there is an additional function to perform on installation. 131 135 $this->themeInstall(); … … 139 143 140 144 /** 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. 143 147 * 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.146 148 * 147 149 * @uses do_action() Calls the 'ak_theme_updated' action hook. -
sideposts/trunk/framework/classes/admin-notices.php
r196960 r199488 29 29 /** 30 30 * Class to show admin warnings (or notices) 31 * T rhrows the hook 'admin_notices' to show the warning only on allowed places.32 * To use the class, just have to instantiate it as new a ocAdminNotice('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'). 33 33 * 34 34 * @author Jordi Canals 35 35 * @package Alkivia 36 36 * @subpackage Framework 37 * @link http://alkivia.org 37 * 38 * @link http://wiki.alkivia.org/framework/classes/admin-notice 38 39 */ 39 40 class akAdminNotice -
sideposts/trunk/framework/classes/settings.php
r196960 r199488 34 34 * @package Alkivia 35 35 * @subpackage Framework 36 * @link http:// alkivia.org36 * @link http://wiki.alkivia.org/framework/classes/settings 37 37 */ 38 38 final class akSettings -
sideposts/trunk/framework/init.php
r196960 r199488 27 27 along with this program. If not, see <http://www.gnu.org/licenses/>. 28 28 */ 29 30 /** 31 * Creates and returns the framework URL. 32 * 33 * @return string Framework URL 34 */ 35 function 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 45 if ( ! defined('AK_STYLES_URL') ) { 46 /** Define the framework URL */ 47 define ( 'AK_STYLES_URL', ak_styles_url() ); 48 } 29 49 30 50 if ( ! defined('AK_INI_FILE') ) { … … 58 78 } 59 79 80 // ============================================== SET GLOBAL ACTION HOOKS ===== 81 60 82 /** 61 83 * Adds meta name for Alkivia Framework to head. … … 65 87 * @return void 66 88 */ 67 function _ak_framework_meta_tags() {89 function _ak_framework_meta_tags() { 68 90 echo '<meta name="framework" content="Alkivia Framework ' . get_option('ak_framework_version') . '" />' . PHP_EOL; 69 91 } 70 92 add_action('wp_head', '_ak_framework_meta_tags'); 71 93 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 */ 100 function _ak_framework_translation() 101 { 102 $locale = get_locale(); 103 $mofile = AK_FRAMEWORK . "/lang/$locale.mo"; 104 105 return load_textdomain('akfw', $mofile); 106 } 107 add_action('init', '_ak_framework_translation'); 108 109 // ================================================ INCLUDE ALL LIBRARIES ===== 73 110 74 111 // Create the upload folder if does not exist. … … 77 114 } 78 115 79 // Create and store the 'settings' global object.116 // Prepare the settings and objects libraries. 80 117 require_once ( AK_CLASSES . '/settings.php'); 118 119 require_once ( AK_LIB . '/filesystem.php' ); 120 require_once ( AK_LIB . '/formating.php' ); 121 require_once ( AK_LIB . '/modules.php' ); 81 122 require_once ( AK_LIB . '/objects.php' ); 82 if ( ! ak_object_exists('settings') ) { 83 ak_create_object( 'settings', new akSettings());84 } 123 require_once ( AK_LIB . '/system.php' ); 124 require_once ( AK_LIB . '/themes.php' ); 125 require_once ( AK_LIB . '/users.php' ); 85 126 86 127 do_action('ak_framework_loaded'); -
sideposts/trunk/framework/lib/filesystem.php
r196960 r199488 126 126 function ak_dir_content($directory, $args='') 127 127 { 128 128 129 $directory = realpath($directory); // Be sure the directory path is well formed. 129 130 if ( ! is_dir($directory) ) { // Check if it is a directory. … … 164 165 } 165 166 $d->close(); 166 sort($dir_tree);167 asort($dir_tree); 167 168 168 169 return $dir_tree; 169 170 } 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 */ 178 function 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 50 50 if ( is_admin() ) { 51 51 if ( empty($message) ) { 52 $message = __('Settings saved.' );52 $message = __('Settings saved.', 'akfw'); 53 53 } 54 54 echo '<div id="message" class="updated fade"><p><strong>' . $message . '</strong></p></div>'; … … 132 132 * 133 133 * @param $datetime Date Time in mySql Format. 134 * @param $text_domain Translations textDomain.135 134 * @return string The time from the date to now, just looks to yesterday. 136 135 */ 137 function ak_time_ago( $datetime , $text_domain= '')136 function ak_time_ago( $datetime ) 138 137 { 139 138 $before = strtotime($datetime); … … 159 158 switch ( $unit ) { 160 159 case 's': 161 $ago = __('Just Now', $text_domain);160 $ago = __('Just Now', 'akfw'); 162 161 break; 163 162 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); 165 164 break; 166 165 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); 168 167 break; 169 168 case 'd' : 170 169 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'); 172 171 $ago = sprintf($literal, date('H:i', $before)); 173 172 } else { -
sideposts/trunk/framework/lib/objects.php
r196960 r199488 34 34 35 35 /** 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 */ 43 function & ak_create_object ( $name, $object ) 44 { 45 $GLOBALS['_akv'][$name] =& $object; 46 return $object; 47 } 48 49 /** 36 50 * Gets an object stored in the $_akv global. 37 51 * … … 46 60 return false; 47 61 } 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;62 62 } 63 63 … … 86 86 function & ak_settings_object () 87 87 { 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 } 89 93 } 90 94 -
sideposts/trunk/framework/lib/plugins.php
r196960 r199488 2 2 /** 3 3 * Plugins related functions. 4 * This file is deprecated and has been replaced by modules.php. 4 5 * 5 6 * @version $Rev$ … … 10 11 * @package Alkivia 11 12 * @subpackage Framework 13 * 14 * @deprecated since 0.5 15 * @see modules.php 12 16 * 13 17 … … 27 31 */ 28 32 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 } 33 require_once ( 'AK_LIB' . '/modules.php' ); -
sideposts/trunk/framework/lib/themes.php
r196960 r199488 132 132 } 133 133 } 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 */ 146 function 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 */ 197 function 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> © 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> © 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 279 279 280 280 END OF TERMS AND CONDITIONS 281 282 How to Apply These Terms to Your New Programs283 284 If you develop a new program, and you want it to be of the greatest285 possible use to the public, the best way to achieve this is to make it286 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 safest289 to attach them to the start of each source file to most effectively290 convey the exclusion of warranty; and each file should have at least291 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 modify297 it under the terms of the GNU General Public License as published by298 the Free Software Foundation; either version 2 of the License, or299 (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 of303 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the304 GNU General Public License for more details.305 306 You should have received a copy of the GNU General Public License along307 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 this313 when it starts in an interactive mode:314 315 Gnomovision version 69, Copyright (C) year name of author316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.317 This is free software, and you are welcome to redistribute it318 under certain conditions; type `show c' for details.319 320 The hypothetical commands `show w' and `show c' should show the appropriate321 parts of the General Public License. Of course, the commands you use may322 be called something other than `show w' and `show c'; they could even be323 mouse-clicks or menu items--whatever suits your program.324 325 You should also get your employer (if you work as a programmer) or your326 school, if any, to sign a "copyright disclaimer" for the program, if327 necessary. Here is a sample; alter the names:328 329 Yoyodyne, Inc., hereby disclaims all copyright interest in the program330 `Gnomovision' (which makes passes at compilers) written by James Hacker.331 332 <signature of Ty Coon>, 1 April 1989333 Ty Coon, President of Vice334 335 This General Public License does not permit incorporating your program into336 proprietary programs. If your program is a subroutine library, you may337 consider it more useful to permit linking proprietary applications with the338 library. If this is what you want to do, use the GNU Lesser General339 Public License instead of this License. -
sideposts/trunk/framework/loader.php
r196960 r199488 28 28 */ 29 29 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'; 31 35 32 36 if ( file_exists(WP_CONTENT_DIR . '/alkivia.php') ) { -
sideposts/trunk/framework/vendor/upload/class.upload.php
r196960 r199488 2127 2127 * @param array $file $_FILES['form_field'] 2128 2128 * or string $file Local filename 2129 * @param string $textDomain Optional translation textdomain 2130 */ 2131 function akUpload( $file, $textDomain = '' ) { 2129 */ 2130 function akUpload( $file ) { 2132 2131 2133 2132 $this->version = '0.28'; … … 2170 2169 2171 2170 $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'); 2217 2216 2218 2217 // determines the supported MIME types, and matching image format -
sideposts/trunk/includes/deprecated.php
r196960 r199488 5 5 * @version $Rev$ 6 6 * @author Jordi Canals 7 * @copyright Copyright (C) 200 9, 2010 Jordi Canals7 * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals 8 8 * @license GNU General Public License version 2 9 9 * @link http://alkivia.org … … 12 12 * 13 13 14 Copyright 200 9, 2010 Jordi Canals <devel@jcanals.cat>14 Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> 15 15 16 16 This program is free software; you can redistribute it and/or … … 36 36 } 37 37 add_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 */ 43 function _ak_df_sideposts_admin_css ( $data ) 44 { 45 return apply_filters('ak_sideposts_style_admin', $data); 46 } 47 add_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 */ 53 function _ak_df_sideposts_thumbnail ( $data ) 54 { 55 return apply_filters('ak_sideposts_thumbnail', $data); 56 } 57 add_filter('sideposts_thumbnail', '_ak_df_sideposts_thumbnail'); 58 59 /** 60 * 'ak_sideposts_picture' replaces 'sideposts_picture' 61 * @deprecated since 2.5.3 62 */ 63 function _ak_df_sideposts_picture ( $data ) 64 { 65 return apply_filters('ak_sideposts_picture', $data); 66 } 67 add_filter('sideposts_picture', '_ak_df_sideposts_picture'); 68 69 /** 70 * 'ak_sideposts_date' replaces 'sideposts_date' 71 * @deprecated since 2.5.3 72 */ 73 function _ak_df_sideposts_date ( $data ) 74 { 75 return apply_filters('ak_sideposts_date', $data); 76 } 77 add_filter('sideposts_date', '_ak_df_sideposts_date'); -
sideposts/trunk/includes/plugin.php
r196960 r199488 7 7 * @version $Rev$ 8 8 * @author Jordi Canals 9 * @copyright Copyright (C) 200 9, 2010 Jordi Canals9 * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals 10 10 * @license GNU General Public License version 2 11 11 * @link http://alkivia.org … … 14 14 * 15 15 16 Copyright 200 9, 2010 Jordi Canals <devel@jcanals.cat>16 Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> 17 17 18 18 This program is free software; you can redistribute it and/or … … 151 151 } 152 152 153 return apply_filters( $this->ID . '_thumbnail', $thumbnail);153 return apply_filters('ak_' . $this->ID . '_thumbnail', $thumbnail); 154 154 } 155 155 … … 181 181 } 182 182 183 return apply_filters( $this->ID . '_picture', $picture);183 return apply_filters('ak_' . $this->ID . '_picture', $picture); 184 184 } 185 185 -
sideposts/trunk/includes/widget.php
r196960 r199488 5 5 * @version $Rev$ 6 6 * @author Jordi Canals 7 * @copyright Copyright (C) 200 9, 2010 Jordi Canals7 * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals 8 8 * @license GNU General Public License version 2 9 9 * @link http://alkivia.org … … 12 12 * 13 13 14 Copyright 200 9, 2010 Jordi Canals <devel@jcanals.cat>14 Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> 15 15 16 16 This program is free software; you can redistribute it and/or … … 53 53 54 54 /** 55 * Value for private posts category 56 */ 57 const private_posts = -99; 58 59 /** 55 60 * Class constructor. 56 61 * @see WP_Widget::__construct() … … 72 77 { 73 78 $this->sideposts->savePost(); 74 extract( $args, EXTR_SKIP );79 extract( $args, EXTR_SKIP ); 75 80 76 81 $category = (int) $instance['category']; … … 88 93 $numposts = (int) $instance['numposts']; 89 94 if ( 1 > $numposts ) { // Defaults to 3 posts on sidebar 90 $ numposts= 3;95 $instance['numposts'] = 3; 91 96 } 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'] ); 96 101 if ( -99 == (int) $category ) { 97 102 $qargs['post_status'] = 'private'; … … 104 109 } 105 110 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 »', $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 »', $this->pid) .'</a></p>'; 147 break; 148 case 'excerpt' : 149 the_excerpt(); 150 // echo '<p><a href="'. get_permalink() .'">'. __('Read full post »', $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> »</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. 185 135 } 186 136 … … 224 174 <p> 225 175 <?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; ?> 231 201 </select> 232 202 </p><p> … … 262 232 return $instance; 263 233 } 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 } 264 249 } -
sideposts/trunk/lang/sideposts-by_BY.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Marcis Gasuns <www.comfi.com>\n" 9 9 "MIME-Version: 1.0\n" … … 13 13 "X-Poedit-Country: BELARUS\n" 14 14 15 #: ../sideposts.php:55 16 #: ../lib/class.plugin.php:485 17 #: ../lib/class.plugin.php:522 15 #: ../sideposts.php:54 18 16 msgid "Warning:" 19 17 msgstr "" 20 18 21 #: ../sideposts.php:5 619 #: ../sideposts.php:55 22 20 #, php-format 23 21 msgid "The active plugin %s is not compatible with your PHP version." 24 22 msgstr "" 25 23 26 #: ../sideposts.php:5 824 #: ../sideposts.php:57 27 25 #, php-format 28 26 msgid "%s is required for this plugin." 29 27 msgstr "" 30 28 31 #: ../ lib/class.plugin.php:48632 #, fuzzy , php-format33 msgid " The active plugin %s is not compatible with your WordPress version."34 msgstr " Гэты плагін не сумяшчальны з вашай сістэмай. Памылка ў функцыях бакавой панэлі або няправільная версія WordPress"29 #: ../includes/functions.php:49 30 #, fuzzy 31 msgid "Archive" 32 msgstr "Архіў для" 35 33 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 35 msgid "Archive for" 36 msgstr "Архіў для" 40 37 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 51 39 msgid "A widget to move posts to the sidebar." 52 40 msgstr "Віджэт для перамяшчэння пастоў на бакавую панэль" 53 41 54 #: ../ lib/class.sideposts-widget.php:6942 #: ../includes/widget.php:83 55 43 msgid "Category not selected." 56 44 msgstr "Катэгорыі не вылучаны" 57 45 58 #: ../lib/class.sideposts-widget.php:133 59 msgid "Read more »" 60 msgstr "Чытаць далей »" 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 83 47 msgid "Title:" 84 48 msgstr "Назва:" 85 49 86 #: ../ lib/class.sideposts-widget.php:19650 #: ../includes/widget.php:156 87 51 msgid "Category:" 88 52 msgstr "Катэгорыя:" 89 53 90 #: ../ lib/class.sideposts-widget.php:19854 #: ../includes/widget.php:158 91 55 msgid "-- PRIVATE POSTS --" 92 56 msgstr "" 93 57 94 #: ../ lib/class.sideposts-widget.php:21058 #: ../includes/widget.php:170 95 59 msgid "Number of posts:" 96 60 msgstr "Колькасць паведамленняў:" 97 61 98 #: ../ lib/class.sideposts-widget.php:21262 #: ../includes/widget.php:172 99 63 #, php-format 100 64 msgid "(At most %d)" 101 65 msgstr "(Максімальна %d)" 102 66 103 #: ../ lib/class.sideposts-widget.php:21567 #: ../includes/widget.php:175 104 68 msgid "Show:" 105 69 msgstr "Паказваць:" 106 70 107 #: ../ lib/class.sideposts-widget.php:21671 #: ../includes/widget.php:181 108 72 msgid "Full Post" 109 73 msgstr "Пост цалкам" 110 74 111 #: ../ lib/class.sideposts-widget.php:21775 #: ../includes/widget.php:184 112 76 msgid "Post Excerpt" 113 77 msgstr "Вытрымка з паведамлення" 114 78 115 #: ../ lib/class.sideposts-widget.php:21879 #: ../includes/widget.php:187 116 80 msgid "Excerpts with thumbnails" 117 81 msgstr "Вытрымка з эскізам:" 118 82 119 #: ../ lib/class.sideposts-widget.php:21983 #: ../includes/widget.php:190 120 84 msgid "Photo Blog" 121 85 msgstr "" 122 86 123 #: ../ lib/class.sideposts-widget.php:22087 #: ../includes/widget.php:193 124 88 msgid "Only Post Title" 125 89 msgstr "" 126 90 127 #: ../ lib/class.sideposts-widget.php:22491 #: ../includes/widget.php:204 128 92 msgid "Show category on all feeds" 129 93 msgstr "" 130 94 131 #: ../ lib/class.sideposts-widget.php:22695 #: ../includes/widget.php:206 132 96 #, fuzzy 133 97 msgid "Image width:" 134 98 msgstr "Шырыня эскіза:" 135 99 136 #: ../ lib/class.sideposts-widget.php:228100 #: ../includes/widget.php:208 137 101 msgid "pixels" 138 102 msgstr "пикселі" 139 103 140 #: ../ lib/class.sideposts-widget.php:231104 #: ../includes/widget.php:211 141 105 msgid "Align thumbnail to right" 142 106 msgstr "" 143 107 108 #: ../templates/photoblog.php:48 109 msgid "No Comments" 110 msgstr "" 111 112 #: ../templates/photoblog.php:49 113 msgid "1 Comment" 114 msgstr "" 115 116 #: ../templates/photoblog.php:50 117 msgid "% Comments" 118 msgstr "" 119 120 #: ../templates/photoblog.php:52 121 msgid "Comments closed" 122 msgstr "" 123 124 #: ../templates/posts.php:46 125 msgid "Read more »" 126 msgstr "Чытаць далей »" 127 128 #, fuzzy 129 #~ msgid "The active plugin %s is not compatible with your WordPress version." 130 #~ msgstr "" 131 #~ "Гэты плагін не сумяшчальны з вашай сістэмай. Памылка ў функцыях бакавой " 132 #~ "панэлі або няправільная версія WordPress" 144 133 #~ msgid "Read full post »" 145 134 #~ msgstr "Чытаць паведамленне цалкам »" -
sideposts/trunk/lang/sideposts-ca.po
r196960 r199488 3 3 "Project-Id-Version: Alkivia SidePosts\n" 4 4 "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" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 15 15 "X-Poedit-KeywordsList: \n" 16 16 17 #: ../sideposts.php:53 18 #: ../framework/classes/abstract/plugin.php:212 19 #: ../framework/classes/abstract/plugin.php:231 17 #: ../sideposts.php:54 20 18 msgid "Warning:" 21 19 msgstr "Atenció:" 22 20 23 #: ../sideposts.php:5 421 #: ../sideposts.php:55 24 22 #, php-format 25 23 msgid "The active plugin %s is not compatible with your PHP version." 26 24 msgstr "L'extensió activa %s no és compatible amb la vostre versió de PHP." 27 25 28 #: ../sideposts.php:5 626 #: ../sideposts.php:57 29 27 #, php-format 30 28 msgid "%s is required for this plugin." 31 29 msgstr "Es requereix %s per executar aquesta extensió." 32 30 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 32 msgid "Archive" 33 msgstr "Arxiu" 34 35 #: ../includes/functions.php:51 36 msgid "Archive for" 37 msgstr "Arxiu de" 38 39 #: ../includes/widget.php:68 275 40 msgid "A widget to move posts to the sidebar." 276 41 msgstr "Un giny que desplaça apunts a la barra lateral." 277 42 278 #: ../includes/widget.php: 7643 #: ../includes/widget.php:83 279 44 msgid "Category not selected." 280 45 msgstr "No s'ha indicat cap categoria." 281 46 282 #: ../includes/widget.php:140283 msgid "Read more »"284 msgstr "Llegiu-ne més »"285 286 #: ../includes/widget.php:154287 msgid "No Comments"288 msgstr "Sense comentaris"289 290 47 #: ../includes/widget.php:155 291 msgid "1 Comment"292 msgstr "1 comentari"293 294 #: ../includes/widget.php:156295 msgid "% Comments"296 msgstr "% comentaris"297 298 #: ../includes/widget.php:158299 msgid "Comments closed"300 msgstr "Comentaris tancats"301 302 #: ../includes/widget.php:174303 msgid "Archive for"304 msgstr "Arxiu de"305 306 #: ../includes/widget.php:203307 48 msgid "Title:" 308 49 msgstr "Títol:" 309 50 310 #: ../includes/widget.php: 20451 #: ../includes/widget.php:156 311 52 msgid "Category:" 312 53 msgstr "Categoria:" 313 54 314 #: ../includes/widget.php: 20655 #: ../includes/widget.php:158 315 56 msgid "-- PRIVATE POSTS --" 316 57 msgstr "-- Apunts Privats --" 317 58 318 #: ../includes/widget.php: 21859 #: ../includes/widget.php:170 319 60 msgid "Number of posts:" 320 61 msgstr "Nombre d'apunts:" 321 62 322 #: ../includes/widget.php: 22063 #: ../includes/widget.php:172 323 64 #, php-format 324 65 msgid "(At most %d)" 325 66 msgstr "(Màxim %d)" 326 67 327 #: ../includes/widget.php: 22368 #: ../includes/widget.php:175 328 69 msgid "Show:" 329 70 msgstr "Mostrar:" 330 71 331 #: ../includes/widget.php: 22472 #: ../includes/widget.php:181 332 73 msgid "Full Post" 333 74 msgstr "Apunt Complet" 334 75 335 #: ../includes/widget.php: 22576 #: ../includes/widget.php:184 336 77 msgid "Post Excerpt" 337 78 msgstr "Només Estractes" 338 79 339 #: ../includes/widget.php: 22680 #: ../includes/widget.php:187 340 81 msgid "Excerpts with thumbnails" 341 82 msgstr "Estractes amb miniatures" 342 83 343 #: ../includes/widget.php: 22784 #: ../includes/widget.php:190 344 85 msgid "Photo Blog" 345 86 msgstr "Foto Bloc" 346 87 347 #: ../includes/widget.php: 22888 #: ../includes/widget.php:193 348 89 msgid "Only Post Title" 349 90 msgstr "Només títol de l'apunt" 350 91 351 #: ../includes/widget.php:2 3292 #: ../includes/widget.php:204 352 93 msgid "Show category on all feeds" 353 94 msgstr "Mostrar en tots els fils RSS" 354 95 355 #: ../includes/widget.php:2 3496 #: ../includes/widget.php:206 356 97 msgid "Image width:" 357 98 msgstr "Amplada Imatge:" 358 99 359 #: ../includes/widget.php:2 36100 #: ../includes/widget.php:208 360 101 msgid "pixels" 361 102 msgstr "píxels" 362 103 363 #: ../includes/widget.php:2 39104 #: ../includes/widget.php:211 364 105 msgid "Align thumbnail to right" 365 106 msgstr "Alinear miniatura a la dreta" 366 107 108 #: ../templates/photoblog.php:48 109 msgid "No Comments" 110 msgstr "Sense comentaris" 111 112 #: ../templates/photoblog.php:49 113 msgid "1 Comment" 114 msgstr "1 comentari" 115 116 #: ../templates/photoblog.php:50 117 msgid "% Comments" 118 msgstr "% comentaris" 119 120 #: ../templates/photoblog.php:52 121 msgid "Comments closed" 122 msgstr "Comentaris tancats" 123 124 #: ../templates/posts.php:46 125 msgid "Read more »" 126 msgstr "Llegiu-ne més »" 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." 367 264 #~ msgid "Read full post »" 368 265 #~ msgstr "Llegir article complet »" -
sideposts/trunk/lang/sideposts-de_DE.po
r189333 r199488 3 3 "Project-Id-Version: Sidepost-tr\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: flashdevelop.de <kontakt@flashdevelop.de>\n" 9 9 "MIME-Version: 1.0\n" … … 15 15 "X-Poedit-KeywordsList: __e\n" 16 16 17 #: ../sideposts.php:55 18 #: ../lib/class.plugin.php:485 19 #: ../lib/class.plugin.php:522 17 #: ../sideposts.php:54 20 18 msgid "Warning:" 21 19 msgstr "" 22 20 23 #: ../sideposts.php:5 621 #: ../sideposts.php:55 24 22 #, php-format 25 23 msgid "The active plugin %s is not compatible with your PHP version." 26 24 msgstr "" 27 25 28 #: ../sideposts.php:5 826 #: ../sideposts.php:57 29 27 #, php-format 30 28 msgid "%s is required for this plugin." 31 29 msgstr "" 32 30 33 #: ../ lib/class.plugin.php:48634 #, fuzzy , php-format35 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 33 msgid "Archive" 34 msgstr "Archiv von" 37 35 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 37 msgid "Archive for" 38 msgstr "Archiv von" 42 39 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 53 41 msgid "A widget to move posts to the sidebar." 54 42 msgstr "Ein Widget um Artikel in der Seitenleiste anzuzeigen" 55 43 56 #: ../ lib/class.sideposts-widget.php:6944 #: ../includes/widget.php:83 57 45 msgid "Category not selected." 58 46 msgstr "Keine Kategorie gewählt" 59 47 60 #: ../lib/class.sideposts-widget.php:133 61 msgid "Read more »" 62 msgstr "Mehr lesen »" 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 85 49 msgid "Title:" 86 50 msgstr "Titel:" 87 51 88 #: ../ lib/class.sideposts-widget.php:19652 #: ../includes/widget.php:156 89 53 msgid "Category:" 90 54 msgstr "Kategorie" 91 55 92 #: ../ lib/class.sideposts-widget.php:19856 #: ../includes/widget.php:158 93 57 msgid "-- PRIVATE POSTS --" 94 58 msgstr "" 95 59 96 #: ../ lib/class.sideposts-widget.php:21060 #: ../includes/widget.php:170 97 61 msgid "Number of posts:" 98 62 msgstr "Anzahl der Artikel" 99 63 100 #: ../ lib/class.sideposts-widget.php:21264 #: ../includes/widget.php:172 101 65 #, php-format 102 66 msgid "(At most %d)" 103 67 msgstr "(maximal %d)" 104 68 105 #: ../ lib/class.sideposts-widget.php:21569 #: ../includes/widget.php:175 106 70 msgid "Show:" 107 71 msgstr "Zeige:" 108 72 109 #: ../ lib/class.sideposts-widget.php:21673 #: ../includes/widget.php:181 110 74 msgid "Full Post" 111 75 msgstr "Gesamter Artikel" 112 76 113 #: ../ lib/class.sideposts-widget.php:21777 #: ../includes/widget.php:184 114 78 msgid "Post Excerpt" 115 79 msgstr "Artikelauszug" 116 80 117 #: ../ lib/class.sideposts-widget.php:21881 #: ../includes/widget.php:187 118 82 msgid "Excerpts with thumbnails" 119 83 msgstr "Artikelauszug mit Miniaturbild" 120 84 121 #: ../ lib/class.sideposts-widget.php:21985 #: ../includes/widget.php:190 122 86 msgid "Photo Blog" 123 87 msgstr "" 124 88 125 #: ../ lib/class.sideposts-widget.php:22089 #: ../includes/widget.php:193 126 90 msgid "Only Post Title" 127 91 msgstr "" 128 92 129 #: ../ lib/class.sideposts-widget.php:22493 #: ../includes/widget.php:204 130 94 msgid "Show category on all feeds" 131 95 msgstr "" 132 96 133 #: ../ lib/class.sideposts-widget.php:22697 #: ../includes/widget.php:206 134 98 #, fuzzy 135 99 msgid "Image width:" 136 100 msgstr "Breite des Miniaturbildes:" 137 101 138 #: ../ lib/class.sideposts-widget.php:228102 #: ../includes/widget.php:208 139 103 msgid "pixels" 140 104 msgstr "Pixel" 141 105 142 #: ../ lib/class.sideposts-widget.php:231106 #: ../includes/widget.php:211 143 107 msgid "Align thumbnail to right" 144 108 msgstr "" 145 109 110 #: ../templates/photoblog.php:48 111 msgid "No Comments" 112 msgstr "" 113 114 #: ../templates/photoblog.php:49 115 msgid "1 Comment" 116 msgstr "" 117 118 #: ../templates/photoblog.php:50 119 msgid "% Comments" 120 msgstr "" 121 122 #: ../templates/photoblog.php:52 123 msgid "Comments closed" 124 msgstr "" 125 126 #: ../templates/posts.php:46 127 msgid "Read more »" 128 msgstr "Mehr lesen »" 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." 146 135 #~ msgid "Read full post »" 147 136 #~ msgstr "Lies den ganzen Artikel »" -
sideposts/trunk/lang/sideposts-es_ES.po
r196960 r199488 3 3 "Project-Id-Version: Alkivia SidePosts\n" 4 4 "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" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: \n" 19 19 20 #: ../sideposts.php:53 21 #: ../framework/classes/abstract/plugin.php:212 22 #: ../framework/classes/abstract/plugin.php:231 20 #: ../sideposts.php:54 23 21 msgid "Warning:" 24 22 msgstr "Atención:" 25 23 26 #: ../sideposts.php:5 424 #: ../sideposts.php:55 27 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "El plugin activo %s no es compatible con tu versión de PHP." 30 28 31 #: ../sideposts.php:5 629 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "Se requiere %s para ejecutar este plugin." 35 33 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 35 msgid "Archive" 36 msgstr "Archivo" 37 38 #: ../includes/functions.php:51 39 msgid "Archive for" 40 msgstr "Archivo de" 41 42 #: ../includes/widget.php:68 279 43 msgid "A widget to move posts to the sidebar." 280 44 msgstr "Un widget que desplaza posts a la barra lateral." 281 45 282 #: ../includes/widget.php: 7646 #: ../includes/widget.php:83 283 47 msgid "Category not selected." 284 48 msgstr "No se ha seleccionado una categoría." 285 49 286 #: ../includes/widget.php:140287 msgid "Read more »"288 msgstr "Seguir leyendo »"289 290 #: ../includes/widget.php:154291 msgid "No Comments"292 msgstr "No hay comentarios"293 294 50 #: ../includes/widget.php:155 295 msgid "1 Comment"296 msgstr "1 comentario"297 298 #: ../includes/widget.php:156299 msgid "% Comments"300 msgstr "% comentarios"301 302 #: ../includes/widget.php:158303 msgid "Comments closed"304 msgstr "Comentarios cerrados"305 306 #: ../includes/widget.php:174307 msgid "Archive for"308 msgstr "Archivo de"309 310 #: ../includes/widget.php:203311 51 msgid "Title:" 312 52 msgstr "Título:" 313 53 314 #: ../includes/widget.php: 20454 #: ../includes/widget.php:156 315 55 msgid "Category:" 316 56 msgstr "Categoría:" 317 57 318 #: ../includes/widget.php: 20658 #: ../includes/widget.php:158 319 59 msgid "-- PRIVATE POSTS --" 320 60 msgstr "-- ENTRADAS PRIVADAS --" 321 61 322 #: ../includes/widget.php: 21862 #: ../includes/widget.php:170 323 63 msgid "Number of posts:" 324 64 msgstr "Número de entradas:" 325 65 326 #: ../includes/widget.php: 22066 #: ../includes/widget.php:172 327 67 #, php-format 328 68 msgid "(At most %d)" 329 69 msgstr "(Máximo %d)" 330 70 331 #: ../includes/widget.php: 22371 #: ../includes/widget.php:175 332 72 msgid "Show:" 333 73 msgstr "Mostrar:" 334 74 335 #: ../includes/widget.php: 22475 #: ../includes/widget.php:181 336 76 msgid "Full Post" 337 77 msgstr "Entrada completa" 338 78 339 #: ../includes/widget.php: 22579 #: ../includes/widget.php:184 340 80 msgid "Post Excerpt" 341 81 msgstr "Solo estractos" 342 82 343 #: ../includes/widget.php: 22683 #: ../includes/widget.php:187 344 84 msgid "Excerpts with thumbnails" 345 85 msgstr "Estractos con miniaturas" 346 86 347 #: ../includes/widget.php: 22787 #: ../includes/widget.php:190 348 88 msgid "Photo Blog" 349 89 msgstr "Nombre del blog" 350 90 351 #: ../includes/widget.php: 22891 #: ../includes/widget.php:193 352 92 msgid "Only Post Title" 353 93 msgstr "Solo título de la entrada" 354 94 355 #: ../includes/widget.php:2 3295 #: ../includes/widget.php:204 356 96 msgid "Show category on all feeds" 357 97 msgstr "Mostrar en todos los hilos RSS" 358 98 359 #: ../includes/widget.php:2 3499 #: ../includes/widget.php:206 360 100 msgid "Image width:" 361 101 msgstr "Anchura Imagen:" 362 102 363 #: ../includes/widget.php:2 36103 #: ../includes/widget.php:208 364 104 msgid "pixels" 365 105 msgstr "píxeles" 366 106 367 #: ../includes/widget.php:2 39107 #: ../includes/widget.php:211 368 108 msgid "Align thumbnail to right" 369 109 msgstr "Alinear miniatura a la derecha" 370 110 111 #: ../templates/photoblog.php:48 112 msgid "No Comments" 113 msgstr "No hay comentarios" 114 115 #: ../templates/photoblog.php:49 116 msgid "1 Comment" 117 msgstr "1 comentario" 118 119 #: ../templates/photoblog.php:50 120 msgid "% Comments" 121 msgstr "% comentarios" 122 123 #: ../templates/photoblog.php:52 124 msgid "Comments closed" 125 msgstr "Comentarios cerrados" 126 127 #: ../templates/posts.php:46 128 msgid "Read more »" 129 msgstr "Seguir leyendo »" 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:" 371 143 #~ msgid "Read full post »" 372 144 #~ msgstr "Leer el artículo completo »" -
sideposts/trunk/lang/sideposts-fa_IR.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget v1.4.2\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"6 "PO-Revision-Date: 20 09-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" 8 8 "Language-Team: \n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: .\n" 19 19 20 #: ../sideposts.php:55 21 #: ../lib/class.plugin.php:485 22 #: ../lib/class.plugin.php:522 20 #: ../sideposts.php:54 23 21 msgid "Warning:" 24 22 msgstr "اخطار:" 25 23 26 #: ../sideposts.php:5 624 #: ../sideposts.php:55 27 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "افزونه ی فعال %s با این PHP همخوانی ندارد." 30 28 31 #: ../sideposts.php:5 829 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "برای استفاده از این افزونه %s لازم است." 35 33 36 #: ../ lib/class.plugin.php:48637 #, php-format38 msgid " The active plugin %s is not compatible with your WordPress version."39 msgstr " افزونه ی فعال %s با این وردپرس همخوانی ندارد."34 #: ../includes/functions.php:49 35 #, fuzzy 36 msgid "Archive" 37 msgstr "بایگانی" 40 38 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 40 msgid "Archive for" 41 msgstr "بایگانی" 45 42 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 56 44 msgid "A widget to move posts to the sidebar." 57 45 msgstr "ابزارکی برای منتقل سازی بعضی از نوشته ها به ستون کناری." 58 46 59 #: ../ lib/class.sideposts-widget.php:6947 #: ../includes/widget.php:83 60 48 msgid "Category not selected." 61 49 msgstr "دسته بندی انتخاب نشده است." 62 50 63 #: ../lib/class.sideposts-widget.php:133 64 msgid "Read more »" 65 msgstr "بیشتر بخوانید »" 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 88 52 msgid "Title:" 89 53 msgstr "عنوان:" 90 54 91 #: ../ lib/class.sideposts-widget.php:19655 #: ../includes/widget.php:156 92 56 msgid "Category:" 93 57 msgstr "دسته:" 94 58 95 #: ../ lib/class.sideposts-widget.php:19859 #: ../includes/widget.php:158 96 60 msgid "-- PRIVATE POSTS --" 97 61 msgstr "-- نوشته های خصوصی --" 98 62 99 #: ../ lib/class.sideposts-widget.php:21063 #: ../includes/widget.php:170 100 64 msgid "Number of posts:" 101 65 msgstr "تعداد نوشته ها:" 102 66 103 #: ../ lib/class.sideposts-widget.php:21267 #: ../includes/widget.php:172 104 68 #, php-format 105 69 msgid "(At most %d)" 106 70 msgstr "(حد اکثر %d تا)" 107 71 108 #: ../ lib/class.sideposts-widget.php:21572 #: ../includes/widget.php:175 109 73 msgid "Show:" 110 74 msgstr "نشان دادن:" 111 75 112 #: ../ lib/class.sideposts-widget.php:21676 #: ../includes/widget.php:181 113 77 msgid "Full Post" 114 78 msgstr "تمام نوشته" 115 79 116 #: ../ lib/class.sideposts-widget.php:21780 #: ../includes/widget.php:184 117 81 msgid "Post Excerpt" 118 82 msgstr "خلاصه ی مطلب" 119 83 120 #: ../ lib/class.sideposts-widget.php:21884 #: ../includes/widget.php:187 121 85 msgid "Excerpts with thumbnails" 122 86 msgstr "خلاصه ی مطلب همراه با تصویر بندانگشتی " 123 87 124 #: ../ lib/class.sideposts-widget.php:21988 #: ../includes/widget.php:190 125 89 msgid "Photo Blog" 126 90 msgstr "" 127 91 128 #: ../ lib/class.sideposts-widget.php:22092 #: ../includes/widget.php:193 129 93 msgid "Only Post Title" 130 94 msgstr "" 131 95 132 #: ../ lib/class.sideposts-widget.php:22496 #: ../includes/widget.php:204 133 97 msgid "Show category on all feeds" 134 98 msgstr "" 135 99 136 #: ../ lib/class.sideposts-widget.php:226100 #: ../includes/widget.php:206 137 101 #, fuzzy 138 102 msgid "Image width:" 139 103 msgstr "عرض تصاویر بندانگشتی" 140 104 141 #: ../ lib/class.sideposts-widget.php:228105 #: ../includes/widget.php:208 142 106 msgid "pixels" 143 107 msgstr "پیکسل" 144 108 145 #: ../ lib/class.sideposts-widget.php:231109 #: ../includes/widget.php:211 146 110 msgid "Align thumbnail to right" 147 111 msgstr "" 148 112 113 #: ../templates/photoblog.php:48 114 msgid "No Comments" 115 msgstr "" 116 117 #: ../templates/photoblog.php:49 118 msgid "1 Comment" 119 msgstr "" 120 121 #: ../templates/photoblog.php:50 122 msgid "% Comments" 123 msgstr "" 124 125 #: ../templates/photoblog.php:52 126 msgid "Comments closed" 127 msgstr "" 128 129 #: ../templates/posts.php:46 130 msgid "Read more »" 131 msgstr "بیشتر بخوانید »" 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 استفاده کند" 149 141 #~ msgid "Read full post »" 150 142 #~ msgstr "نوشته ی کامل »" -
sideposts/trunk/lang/sideposts-fi_FI.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget 1.4\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-SearchPath-0: ..\n" 17 17 18 #: ../sideposts.php:55 19 #: ../lib/class.plugin.php:485 20 #: ../lib/class.plugin.php:522 18 #: ../sideposts.php:54 21 19 msgid "Warning:" 22 20 msgstr "Varoitus:" 23 21 24 #: ../sideposts.php:5 622 #: ../sideposts.php:55 25 23 #, php-format 26 24 msgid "The active plugin %s is not compatible with your PHP version." 27 25 msgstr "Aktiivinen plugin %s ei ole yhteensopiva PHP-versiosi kanssa." 28 26 29 #: ../sideposts.php:5 827 #: ../sideposts.php:57 30 28 #, php-format 31 29 msgid "%s is required for this plugin." 32 30 msgstr "%s vaaditaan tähän pluginiin." 33 31 34 #: ../ lib/class.plugin.php:48635 #, php-format36 msgid " The active plugin %s is not compatible with your WordPress version."37 msgstr "A ktiivinen plugin %s ei ole yhteensopiva WordPress-versioosi."32 #: ../includes/functions.php:49 33 #, fuzzy 34 msgid "Archive" 35 msgstr "Arkisto aiheelle" 38 36 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 38 msgid "Archive for" 39 msgstr "Arkisto aiheelle" 43 40 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 54 42 msgid "A widget to move posts to the sidebar." 55 43 msgstr "Vimpain (widget) jolla voit julkaista artikkelit sivupalkissa." 56 44 57 #: ../ lib/class.sideposts-widget.php:6945 #: ../includes/widget.php:83 58 46 msgid "Category not selected." 59 47 msgstr "Aihe (category) ei ole valittuna." 60 48 61 #: ../lib/class.sideposts-widget.php:133 62 msgid "Read more »" 63 msgstr "Lue lisää »" 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 86 50 msgid "Title:" 87 51 msgstr "Otsikko:" 88 52 89 #: ../ lib/class.sideposts-widget.php:19653 #: ../includes/widget.php:156 90 54 msgid "Category:" 91 55 msgstr "Aihe:" 92 56 93 #: ../ lib/class.sideposts-widget.php:19857 #: ../includes/widget.php:158 94 58 msgid "-- PRIVATE POSTS --" 95 59 msgstr "-- YKSITYISET ARTIKKELIT --" 96 60 97 #: ../ lib/class.sideposts-widget.php:21061 #: ../includes/widget.php:170 98 62 msgid "Number of posts:" 99 63 msgstr "Artikkelien lkm:" 100 64 101 #: ../ lib/class.sideposts-widget.php:21265 #: ../includes/widget.php:172 102 66 #, php-format 103 67 msgid "(At most %d)" 104 68 msgstr "(Enimmillään %d)" 105 69 106 #: ../ lib/class.sideposts-widget.php:21570 #: ../includes/widget.php:175 107 71 msgid "Show:" 108 72 msgstr "Näytä:" 109 73 110 #: ../ lib/class.sideposts-widget.php:21674 #: ../includes/widget.php:181 111 75 msgid "Full Post" 112 76 msgstr "Koko artikkeli" 113 77 114 #: ../ lib/class.sideposts-widget.php:21778 #: ../includes/widget.php:184 115 79 msgid "Post Excerpt" 116 80 msgstr "Lyhennelmä" 117 81 118 #: ../ lib/class.sideposts-widget.php:21882 #: ../includes/widget.php:187 119 83 msgid "Excerpts with thumbnails" 120 84 msgstr "Lyhennelmä ja minikuva" 121 85 122 #: ../ lib/class.sideposts-widget.php:21986 #: ../includes/widget.php:190 123 87 msgid "Photo Blog" 124 88 msgstr "" 125 89 126 #: ../ lib/class.sideposts-widget.php:22090 #: ../includes/widget.php:193 127 91 msgid "Only Post Title" 128 92 msgstr "Vain artikkelin otsikko" 129 93 130 #: ../ lib/class.sideposts-widget.php:22494 #: ../includes/widget.php:204 131 95 msgid "Show category on all feeds" 132 96 msgstr "" 133 97 134 #: ../ lib/class.sideposts-widget.php:22698 #: ../includes/widget.php:206 135 99 #, fuzzy 136 100 msgid "Image width:" 137 101 msgstr "Minikuvan leveys:" 138 102 139 #: ../ lib/class.sideposts-widget.php:228103 #: ../includes/widget.php:208 140 104 msgid "pixels" 141 105 msgstr "pikseliä" 142 106 143 #: ../ lib/class.sideposts-widget.php:231107 #: ../includes/widget.php:211 144 108 msgid "Align thumbnail to right" 145 109 msgstr "" 146 110 111 #: ../templates/photoblog.php:48 112 msgid "No Comments" 113 msgstr "" 114 115 #: ../templates/photoblog.php:49 116 msgid "1 Comment" 117 msgstr "" 118 119 #: ../templates/photoblog.php:50 120 msgid "% Comments" 121 msgstr "" 122 123 #: ../templates/photoblog.php:52 124 msgid "Comments closed" 125 msgstr "" 126 127 #: ../templates/posts.php:46 128 msgid "Read more »" 129 msgstr "Lue lisää »" 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" 147 139 #~ msgid "Read full post »" 148 140 #~ msgstr "Lue koko artikkeli »" -
sideposts/trunk/lang/sideposts-fr_FR.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts WordPress Widget\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: \n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: \n" 19 19 20 #: ../sideposts.php:54 21 msgid "Warning:" 22 msgstr "" 23 20 24 #: ../sideposts.php:55 21 #: ../lib/class.plugin.php:48522 #: ../lib/class.plugin.php:52223 msgid "Warning:"24 msgstr ""25 26 #: ../sideposts.php:5627 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "" 30 28 31 #: ../sideposts.php:5 829 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "" 35 33 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 36 msgid "Archive" 37 msgstr "Archive de" 38 39 #: ../includes/functions.php:51 40 msgid "Archive for" 41 msgstr "Archive de" 42 43 #: ../includes/widget.php:68 56 44 msgid "A widget to move posts to the sidebar." 57 45 msgstr "Un widget pour afficher les commentaires dans la sidebar." 58 46 59 #: ../ lib/class.sideposts-widget.php:6947 #: ../includes/widget.php:83 60 48 msgid "Category not selected." 61 49 msgstr "Catégorie non sélectionnée." 62 50 63 #: ../lib/class.sideposts-widget.php:133 64 msgid "Read more »" 65 msgstr "Lire la suite »" 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 88 52 msgid "Title:" 89 53 msgstr "Titre :" 90 54 91 #: ../ lib/class.sideposts-widget.php:19655 #: ../includes/widget.php:156 92 56 msgid "Category:" 93 57 msgstr "Categorie :" 94 58 95 #: ../ lib/class.sideposts-widget.php:19859 #: ../includes/widget.php:158 96 60 msgid "-- PRIVATE POSTS --" 97 61 msgstr "" 98 62 99 #: ../ lib/class.sideposts-widget.php:21063 #: ../includes/widget.php:170 100 64 msgid "Number of posts:" 101 65 msgstr "Nombre de commentaires:" 102 66 103 #: ../ lib/class.sideposts-widget.php:21267 #: ../includes/widget.php:172 104 68 #, php-format 105 69 msgid "(At most %d)" 106 70 msgstr "(Maximum %d)" 107 71 108 #: ../ lib/class.sideposts-widget.php:21572 #: ../includes/widget.php:175 109 73 msgid "Show:" 110 74 msgstr "Montrer:" 111 75 112 #: ../ lib/class.sideposts-widget.php:21676 #: ../includes/widget.php:181 113 77 msgid "Full Post" 114 78 msgstr "Commentaire Complet" 115 79 116 #: ../ lib/class.sideposts-widget.php:21780 #: ../includes/widget.php:184 117 81 msgid "Post Excerpt" 118 82 msgstr "Début du commentaire" 119 83 120 #: ../ lib/class.sideposts-widget.php:21884 #: ../includes/widget.php:187 121 85 msgid "Excerpts with thumbnails" 122 86 msgstr "" 123 87 124 #: ../ lib/class.sideposts-widget.php:21988 #: ../includes/widget.php:190 125 89 msgid "Photo Blog" 126 90 msgstr "" 127 91 128 #: ../ lib/class.sideposts-widget.php:22092 #: ../includes/widget.php:193 129 93 msgid "Only Post Title" 130 94 msgstr "" 131 95 132 #: ../ lib/class.sideposts-widget.php:22496 #: ../includes/widget.php:204 133 97 msgid "Show category on all feeds" 134 98 msgstr "" 135 99 136 #: ../ lib/class.sideposts-widget.php:226100 #: ../includes/widget.php:206 137 101 msgid "Image width:" 138 102 msgstr "" 139 103 140 #: ../ lib/class.sideposts-widget.php:228104 #: ../includes/widget.php:208 141 105 msgid "pixels" 142 106 msgstr "" 143 107 144 #: ../ lib/class.sideposts-widget.php:231108 #: ../includes/widget.php:211 145 109 msgid "Align thumbnail to right" 146 110 msgstr "" 147 111 112 #: ../templates/photoblog.php:48 113 msgid "No Comments" 114 msgstr "" 115 116 #: ../templates/photoblog.php:49 117 msgid "1 Comment" 118 msgstr "" 119 120 #: ../templates/photoblog.php:50 121 msgid "% Comments" 122 msgstr "" 123 124 #: ../templates/photoblog.php:52 125 msgid "Comments closed" 126 msgstr "" 127 128 #: ../templates/posts.php:46 129 msgid "Read more »" 130 msgstr "Lire la suite »" 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." 148 137 #~ msgid "Read full post »" 149 138 #~ msgstr "Lire l'article complet »" -
sideposts/trunk/lang/sideposts-it_IT.po
r196960 r199488 3 3 "Project-Id-Version: SidePosts WordPress Widget in italiano\n" 4 4 "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" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: \n" 19 19 20 #: ../sideposts.php:53 21 #: ../framework/classes/abstract/plugin.php:212 22 #: ../framework/classes/abstract/plugin.php:231 20 #: ../sideposts.php:54 23 21 msgid "Warning:" 24 22 msgstr "Avvertimento:" 25 23 26 #: ../sideposts.php:5 424 #: ../sideposts.php:55 27 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "Il plugin attivo %s non é compatibile con la tua versione PHP." 30 28 31 #: ../sideposts.php:5 629 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "%s necessario per questo plugin." 35 33 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 35 msgid "Archive" 36 msgstr "Archivo" 37 38 #: ../includes/functions.php:51 39 msgid "Archive for" 40 msgstr "Archivo per" 41 42 #: ../includes/widget.php:68 278 43 msgid "A widget to move posts to the sidebar." 279 44 msgstr "Un widget per poter spostare gli articoli nella barra laterale." 280 45 281 #: ../includes/widget.php: 7646 #: ../includes/widget.php:83 282 47 msgid "Category not selected." 283 48 msgstr "La categoria non é stata selezionata." 284 49 285 #: ../includes/widget.php:140286 msgid "Read more »"287 msgstr "Prosegui la lettura »"288 289 #: ../includes/widget.php:154290 msgid "No Comments"291 msgstr "Nessun commento"292 293 50 #: ../includes/widget.php:155 294 msgid "1 Comment"295 msgstr "1 Commento"296 297 #: ../includes/widget.php:156298 msgid "% Comments"299 msgstr "% Commenti"300 301 #: ../includes/widget.php:158302 msgid "Comments closed"303 msgstr "I commenti sono stati disattivati"304 305 #: ../includes/widget.php:174306 msgid "Archive for"307 msgstr "Archivo per"308 309 #: ../includes/widget.php:203310 51 msgid "Title:" 311 52 msgstr "Titolo:" 312 53 313 #: ../includes/widget.php: 20454 #: ../includes/widget.php:156 314 55 msgid "Category:" 315 56 msgstr "Categoria:" 316 57 317 #: ../includes/widget.php: 20658 #: ../includes/widget.php:158 318 59 msgid "-- PRIVATE POSTS --" 319 60 msgstr "-- ARTICOLI PRIVATI --" 320 61 321 #: ../includes/widget.php: 21862 #: ../includes/widget.php:170 322 63 msgid "Number of posts:" 323 64 msgstr "Numero di articoli:" 324 65 325 #: ../includes/widget.php: 22066 #: ../includes/widget.php:172 326 67 #, php-format 327 68 msgid "(At most %d)" 328 69 msgstr "(massimo %d)" 329 70 330 #: ../includes/widget.php: 22371 #: ../includes/widget.php:175 331 72 msgid "Show:" 332 73 msgstr "Mostra:" 333 74 334 #: ../includes/widget.php: 22475 #: ../includes/widget.php:181 335 76 msgid "Full Post" 336 77 msgstr "Articolo completo" 337 78 338 #: ../includes/widget.php: 22579 #: ../includes/widget.php:184 339 80 msgid "Post Excerpt" 340 81 msgstr "Riassunto dell'articolo" 341 82 342 #: ../includes/widget.php: 22683 #: ../includes/widget.php:187 343 84 msgid "Excerpts with thumbnails" 344 85 msgstr "Riassunti con miniatura" 345 86 346 #: ../includes/widget.php: 22787 #: ../includes/widget.php:190 347 88 msgid "Photo Blog" 348 89 msgstr "Photo Blog" 349 90 350 #: ../includes/widget.php: 22891 #: ../includes/widget.php:193 351 92 msgid "Only Post Title" 352 93 msgstr "Solo il titolo del post" 353 94 354 #: ../includes/widget.php:2 3295 #: ../includes/widget.php:204 355 96 msgid "Show category on all feeds" 356 97 msgstr "Mostra la categoria in tutti i feed" 357 98 358 #: ../includes/widget.php:2 3499 #: ../includes/widget.php:206 359 100 msgid "Image width:" 360 101 msgstr "Larghezza immagine:" 361 102 362 #: ../includes/widget.php:2 36103 #: ../includes/widget.php:208 363 104 msgid "pixels" 364 105 msgstr "pixel" 365 106 366 #: ../includes/widget.php:2 39107 #: ../includes/widget.php:211 367 108 msgid "Align thumbnail to right" 368 109 msgstr "Allinea la miniatura a destra" 369 110 111 #: ../templates/photoblog.php:48 112 msgid "No Comments" 113 msgstr "Nessun commento" 114 115 #: ../templates/photoblog.php:49 116 msgid "1 Comment" 117 msgstr "1 Commento" 118 119 #: ../templates/photoblog.php:50 120 msgid "% Comments" 121 msgstr "% Commenti" 122 123 #: ../templates/photoblog.php:52 124 msgid "Comments closed" 125 msgstr "I commenti sono stati disattivati" 126 127 #: ../templates/posts.php:46 128 msgid "Read more »" 129 msgstr "Prosegui la lettura »" 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." 370 282 #~ msgid "Read full post »" 371 283 #~ msgstr "Leggi l'articolo completo »" -
sideposts/trunk/lang/sideposts-nb_NO.po
r189333 r199488 3 3 "Project-Id-Version: Sideposts 1.0.0\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: ^xRun^ <xrun@xrunblogg.com>\n" 9 9 "MIME-Version: 1.0\n" … … 14 14 "X-Poedit-SourceCharset: utf-8\n" 15 15 16 #: ../sideposts.php:55 17 #: ../lib/class.plugin.php:485 18 #: ../lib/class.plugin.php:522 16 #: ../sideposts.php:54 19 17 msgid "Warning:" 20 18 msgstr "Advarsel:" 21 19 22 #: ../sideposts.php:5 620 #: ../sideposts.php:55 23 21 #, php-format 24 22 msgid "The active plugin %s is not compatible with your PHP version." 25 23 msgstr "Det aktive innstikket %s er ikke kompatibelt med din PHP-versjon." 26 24 27 #: ../sideposts.php:5 825 #: ../sideposts.php:57 28 26 #, php-format 29 27 msgid "%s is required for this plugin." 30 28 msgstr "%s er nødvendig for dette innstikket." 31 29 32 #: ../ lib/class.plugin.php:48633 #, php-format34 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 32 msgid "Archive" 33 msgstr "Arkiv for:" 36 34 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 36 msgid "Archive for" 37 msgstr "Arkiv for:" 41 38 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 52 40 msgid "A widget to move posts to the sidebar." 53 41 msgstr "En widget som flytter poster til sidebar." 54 42 55 #: ../ lib/class.sideposts-widget.php:6943 #: ../includes/widget.php:83 56 44 msgid "Category not selected." 57 45 msgstr "Kategori ikke valgt." 58 46 59 #: ../lib/class.sideposts-widget.php:133 60 msgid "Read more »" 61 msgstr "Les mer »" 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 84 48 msgid "Title:" 85 49 msgstr "Tittel:" 86 50 87 #: ../ lib/class.sideposts-widget.php:19651 #: ../includes/widget.php:156 88 52 msgid "Category:" 89 53 msgstr "Kategori:" 90 54 91 #: ../ lib/class.sideposts-widget.php:19855 #: ../includes/widget.php:158 92 56 msgid "-- PRIVATE POSTS --" 93 57 msgstr "--PRIVATE POSTER--" 94 58 95 #: ../ lib/class.sideposts-widget.php:21059 #: ../includes/widget.php:170 96 60 msgid "Number of posts:" 97 61 msgstr "Antall poster:" 98 62 99 #: ../ lib/class.sideposts-widget.php:21263 #: ../includes/widget.php:172 100 64 #, php-format 101 65 msgid "(At most %d)" 102 66 msgstr "(Maks %d)" 103 67 104 #: ../ lib/class.sideposts-widget.php:21568 #: ../includes/widget.php:175 105 69 msgid "Show:" 106 70 msgstr "Vis:" 107 71 108 #: ../ lib/class.sideposts-widget.php:21672 #: ../includes/widget.php:181 109 73 msgid "Full Post" 110 74 msgstr "Hele posten" 111 75 112 #: ../ lib/class.sideposts-widget.php:21776 #: ../includes/widget.php:184 113 77 msgid "Post Excerpt" 114 78 msgstr "Utdrag" 115 79 116 #: ../ lib/class.sideposts-widget.php:21880 #: ../includes/widget.php:187 117 81 msgid "Excerpts with thumbnails" 118 82 msgstr "Utdrag med thumbnails" 119 83 120 #: ../ lib/class.sideposts-widget.php:21984 #: ../includes/widget.php:190 121 85 msgid "Photo Blog" 122 86 msgstr "" 123 87 124 #: ../ lib/class.sideposts-widget.php:22088 #: ../includes/widget.php:193 125 89 msgid "Only Post Title" 126 90 msgstr "" 127 91 128 #: ../ lib/class.sideposts-widget.php:22492 #: ../includes/widget.php:204 129 93 msgid "Show category on all feeds" 130 94 msgstr "" 131 95 132 #: ../ lib/class.sideposts-widget.php:22696 #: ../includes/widget.php:206 133 97 #, fuzzy 134 98 msgid "Image width:" 135 99 msgstr "Thumbnail bredde:" 136 100 137 #: ../ lib/class.sideposts-widget.php:228101 #: ../includes/widget.php:208 138 102 msgid "pixels" 139 103 msgstr "punkter" 140 104 141 #: ../ lib/class.sideposts-widget.php:231105 #: ../includes/widget.php:211 142 106 msgid "Align thumbnail to right" 143 107 msgstr "" 144 108 109 #: ../templates/photoblog.php:48 110 msgid "No Comments" 111 msgstr "" 112 113 #: ../templates/photoblog.php:49 114 msgid "1 Comment" 115 msgstr "" 116 117 #: ../templates/photoblog.php:50 118 msgid "% Comments" 119 msgstr "" 120 121 #: ../templates/photoblog.php:52 122 msgid "Comments closed" 123 msgstr "" 124 125 #: ../templates/posts.php:46 126 msgid "Read more »" 127 msgstr "Les mer »" 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" 145 138 #~ msgid "Read full post »" 146 139 #~ msgstr "Les hele »" -
sideposts/trunk/lang/sideposts-pl_PL.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget v1.4.3\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:25+0100\n"6 "PO-Revision-Date: 20 09-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" 8 8 "Language-Team: \n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: .\n" 19 19 20 #: sideposts.php:55 21 #: lib/class.plugin.php:485 22 #: lib/class.plugin.php:522 20 #: ../sideposts.php:54 23 21 msgid "Warning:" 24 22 msgstr "" 25 23 26 #: sideposts.php:5624 #: ../sideposts.php:55 27 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "" 30 28 31 #: sideposts.php:5829 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "" 35 33 36 #: lib/class.plugin.php:48637 #, fuzzy , php-format38 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 36 msgid "Archive" 37 msgstr "Archiwum" 40 38 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 40 msgid "Archive for" 41 msgstr "Archiwum" 45 42 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 56 44 msgid "A widget to move posts to the sidebar." 57 45 msgstr "Widget przenoszący wpisy do paska bocznego." 58 46 59 #: lib/class.sideposts-widget.php:6947 #: ../includes/widget.php:83 60 48 msgid "Category not selected." 61 49 msgstr "Nie wybrano kategorii." 62 50 63 #: lib/class.sideposts-widget.php:133 64 msgid "Read more »" 65 msgstr "Dalej »" 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 88 52 msgid "Title:" 89 53 msgstr "Tytuł:" 90 54 91 #: lib/class.sideposts-widget.php:19655 #: ../includes/widget.php:156 92 56 msgid "Category:" 93 57 msgstr "Kategoria:" 94 58 95 #: lib/class.sideposts-widget.php:19859 #: ../includes/widget.php:158 96 60 msgid "-- PRIVATE POSTS --" 97 61 msgstr "" 98 62 99 #: lib/class.sideposts-widget.php:21063 #: ../includes/widget.php:170 100 64 msgid "Number of posts:" 101 65 msgstr "Liczba wpisów:" 102 66 103 #: lib/class.sideposts-widget.php:21267 #: ../includes/widget.php:172 104 68 #, php-format 105 69 msgid "(At most %d)" 106 70 msgstr "(Co najwyżej %d)" 107 71 108 #: lib/class.sideposts-widget.php:21572 #: ../includes/widget.php:175 109 73 msgid "Show:" 110 74 msgstr "Pokaż:" 111 75 112 #: lib/class.sideposts-widget.php:21676 #: ../includes/widget.php:181 113 77 msgid "Full Post" 114 78 msgstr "Pełny wpis" 115 79 116 #: lib/class.sideposts-widget.php:21780 #: ../includes/widget.php:184 117 81 msgid "Post Excerpt" 118 82 msgstr "Nagłówek wpisu" 119 83 120 #: lib/class.sideposts-widget.php:21884 #: ../includes/widget.php:187 121 85 msgid "Excerpts with thumbnails" 122 86 msgstr "" 123 87 124 #: lib/class.sideposts-widget.php:21988 #: ../includes/widget.php:190 125 89 msgid "Photo Blog" 126 90 msgstr "" 127 91 128 #: lib/class.sideposts-widget.php:22092 #: ../includes/widget.php:193 129 93 msgid "Only Post Title" 130 94 msgstr "" 131 95 132 #: lib/class.sideposts-widget.php:22496 #: ../includes/widget.php:204 133 97 msgid "Show category on all feeds" 134 98 msgstr "" 135 99 136 #: lib/class.sideposts-widget.php:226100 #: ../includes/widget.php:206 137 101 msgid "Image width:" 138 102 msgstr "" 139 103 140 #: lib/class.sideposts-widget.php:228104 #: ../includes/widget.php:208 141 105 msgid "pixels" 142 106 msgstr "" 143 107 144 #: lib/class.sideposts-widget.php:231108 #: ../includes/widget.php:211 145 109 msgid "Align thumbnail to right" 146 110 msgstr "" 147 111 112 #: ../templates/photoblog.php:48 113 msgid "No Comments" 114 msgstr "" 115 116 #: ../templates/photoblog.php:49 117 msgid "1 Comment" 118 msgstr "" 119 120 #: ../templates/photoblog.php:50 121 msgid "% Comments" 122 msgstr "" 123 124 #: ../templates/photoblog.php:52 125 msgid "Comments closed" 126 msgstr "" 127 128 #: ../templates/posts.php:46 129 msgid "Read more »" 130 msgstr "Dalej »" 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." 148 137 #~ msgid "Read full post »" 149 138 #~ msgstr "Przeczytaj cały wpis »" -
sideposts/trunk/lang/sideposts-pt_BR.po
r189333 r199488 3 3 "Project-Id-Version: Sideposts 2.0\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Fabio Freitas <freitas@openlink.com.br>\n" 9 9 "MIME-Version: 1.0\n" … … 14 14 "X-Poedit-SourceCharset: utf-8\n" 15 15 16 #: ../sideposts.php:55 17 #: ../lib/class.plugin.php:485 18 #: ../lib/class.plugin.php:522 16 #: ../sideposts.php:54 19 17 msgid "Warning:" 20 18 msgstr "Aviso:" 21 19 22 #: ../sideposts.php:5 620 #: ../sideposts.php:55 23 21 #, php-format 24 22 msgid "The active plugin %s is not compatible with your PHP version." 25 23 msgstr "O plugin ativo %s não é compatível com a sua versão de PHP." 26 24 27 #: ../sideposts.php:5 825 #: ../sideposts.php:57 28 26 #, php-format 29 27 msgid "%s is required for this plugin." 30 28 msgstr "%s é necessário para este plugin." 31 29 32 #: ../ lib/class.plugin.php:48633 #, php-format34 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 32 msgid "Archive" 33 msgstr "Arquivo de" 36 34 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 36 msgid "Archive for" 37 msgstr "Arquivo de" 41 38 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 52 40 msgid "A widget to move posts to the sidebar." 53 41 msgstr "Um widget que move posts para a barra lateral." 54 42 55 #: ../ lib/class.sideposts-widget.php:6943 #: ../includes/widget.php:83 56 44 msgid "Category not selected." 57 45 msgstr "Categoria não selecionada." 58 46 59 #: ../lib/class.sideposts-widget.php:133 60 msgid "Read more »" 61 msgstr "Ler mais »" 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 84 48 msgid "Title:" 85 49 msgstr "Título:" 86 50 87 #: ../ lib/class.sideposts-widget.php:19651 #: ../includes/widget.php:156 88 52 msgid "Category:" 89 53 msgstr "Categoria:" 90 54 91 #: ../ lib/class.sideposts-widget.php:19855 #: ../includes/widget.php:158 92 56 msgid "-- PRIVATE POSTS --" 93 57 msgstr "-- POSTS PRIVADOS --" 94 58 95 #: ../ lib/class.sideposts-widget.php:21059 #: ../includes/widget.php:170 96 60 msgid "Number of posts:" 97 61 msgstr "Quantidade de posts:" 98 62 99 #: ../ lib/class.sideposts-widget.php:21263 #: ../includes/widget.php:172 100 64 #, php-format 101 65 msgid "(At most %d)" 102 66 msgstr "(No máximo %d)" 103 67 104 #: ../ lib/class.sideposts-widget.php:21568 #: ../includes/widget.php:175 105 69 msgid "Show:" 106 70 msgstr "Mostrar:" 107 71 108 #: ../ lib/class.sideposts-widget.php:21672 #: ../includes/widget.php:181 109 73 msgid "Full Post" 110 74 msgstr "Post completo" 111 75 112 #: ../ lib/class.sideposts-widget.php:21776 #: ../includes/widget.php:184 113 77 msgid "Post Excerpt" 114 78 msgstr "Resumo do post" 115 79 116 #: ../ lib/class.sideposts-widget.php:21880 #: ../includes/widget.php:187 117 81 msgid "Excerpts with thumbnails" 118 82 msgstr "Resumo com miniatura" 119 83 120 #: ../ lib/class.sideposts-widget.php:21984 #: ../includes/widget.php:190 121 85 msgid "Photo Blog" 122 86 msgstr "" 123 87 124 #: ../ lib/class.sideposts-widget.php:22088 #: ../includes/widget.php:193 125 89 msgid "Only Post Title" 126 90 msgstr "" 127 91 128 #: ../ lib/class.sideposts-widget.php:22492 #: ../includes/widget.php:204 129 93 msgid "Show category on all feeds" 130 94 msgstr "" 131 95 132 #: ../ lib/class.sideposts-widget.php:22696 #: ../includes/widget.php:206 133 97 #, fuzzy 134 98 msgid "Image width:" 135 99 msgstr "Largura da miniatura:" 136 100 137 #: ../ lib/class.sideposts-widget.php:228101 #: ../includes/widget.php:208 138 102 msgid "pixels" 139 103 msgstr "pixels" 140 104 141 #: ../ lib/class.sideposts-widget.php:231105 #: ../includes/widget.php:211 142 106 msgid "Align thumbnail to right" 143 107 msgstr "" 144 108 109 #: ../templates/photoblog.php:48 110 msgid "No Comments" 111 msgstr "" 112 113 #: ../templates/photoblog.php:49 114 msgid "1 Comment" 115 msgstr "" 116 117 #: ../templates/photoblog.php:50 118 msgid "% Comments" 119 msgstr "" 120 121 #: ../templates/photoblog.php:52 122 msgid "Comments closed" 123 msgstr "" 124 125 #: ../templates/posts.php:46 126 msgid "Read more »" 127 msgstr "Ler mais »" 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." 145 137 #~ msgid "Read full post »" 146 138 #~ msgstr "Ler post completo »" -
sideposts/trunk/lang/sideposts-ro_RO.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget 1.4\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-SearchPath-0: ..\n" 17 17 18 #: ../sideposts.php:55 19 #: ../lib/class.plugin.php:485 20 #: ../lib/class.plugin.php:522 18 #: ../sideposts.php:54 21 19 msgid "Warning:" 22 20 msgstr "Atenţie:" 23 21 24 #: ../sideposts.php:5 622 #: ../sideposts.php:55 25 23 #, php-format 26 24 msgid "The active plugin %s is not compatible with your PHP version." 27 25 msgstr "Pluginul activ %s nu e compatibil cu versiunea ta de PHP." 28 26 29 #: ../sideposts.php:5 827 #: ../sideposts.php:57 30 28 #, php-format 31 29 msgid "%s is required for this plugin." 32 30 msgstr "%s este necesar pentru acest plugin." 33 31 34 #: ../ lib/class.plugin.php:48635 #, php-format36 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 34 msgid "Archive" 35 msgstr "Arhiva de la" 38 36 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 38 msgid "Archive for" 39 msgstr "Arhiva de la" 43 40 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 54 42 msgid "A widget to move posts to the sidebar." 55 43 msgstr "Un widget care mută articole în bara laterală." 56 44 57 #: ../ lib/class.sideposts-widget.php:6945 #: ../includes/widget.php:83 58 46 msgid "Category not selected." 59 47 msgstr "Nu ai selectat categoria." 60 48 61 #: ../lib/class.sideposts-widget.php:133 62 msgid "Read more »" 63 msgstr "Citeşte mai mult »" 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 86 50 msgid "Title:" 87 51 msgstr "Titlul:" 88 52 89 #: ../ lib/class.sideposts-widget.php:19653 #: ../includes/widget.php:156 90 54 msgid "Category:" 91 55 msgstr "Categoria:" 92 56 93 #: ../ lib/class.sideposts-widget.php:19857 #: ../includes/widget.php:158 94 58 msgid "-- PRIVATE POSTS --" 95 59 msgstr "-- ARTICOLE PRIVATE --" 96 60 97 #: ../ lib/class.sideposts-widget.php:21061 #: ../includes/widget.php:170 98 62 msgid "Number of posts:" 99 63 msgstr "Numărul de articole:" 100 64 101 #: ../ lib/class.sideposts-widget.php:21265 #: ../includes/widget.php:172 102 66 #, php-format 103 67 msgid "(At most %d)" 104 68 msgstr "(Cel mult %d)" 105 69 106 #: ../ lib/class.sideposts-widget.php:21570 #: ../includes/widget.php:175 107 71 msgid "Show:" 108 72 msgstr "Arată:" 109 73 110 #: ../ lib/class.sideposts-widget.php:21674 #: ../includes/widget.php:181 111 75 msgid "Full Post" 112 76 msgstr "Articolul complet" 113 77 114 #: ../ lib/class.sideposts-widget.php:21778 #: ../includes/widget.php:184 115 79 msgid "Post Excerpt" 116 80 msgstr "Scurtă descriere a articolului" 117 81 118 #: ../ lib/class.sideposts-widget.php:21882 #: ../includes/widget.php:187 119 83 msgid "Excerpts with thumbnails" 120 84 msgstr "Scurtă descriere şi icoană" 121 85 122 #: ../ lib/class.sideposts-widget.php:21986 #: ../includes/widget.php:190 123 87 msgid "Photo Blog" 124 88 msgstr "" 125 89 126 #: ../ lib/class.sideposts-widget.php:22090 #: ../includes/widget.php:193 127 91 msgid "Only Post Title" 128 92 msgstr "Doar titlul articolului" 129 93 130 #: ../ lib/class.sideposts-widget.php:22494 #: ../includes/widget.php:204 131 95 msgid "Show category on all feeds" 132 96 msgstr "" 133 97 134 #: ../ lib/class.sideposts-widget.php:22698 #: ../includes/widget.php:206 135 99 #, fuzzy 136 100 msgid "Image width:" 137 101 msgstr "Lăţimea icoanei:" 138 102 139 #: ../ lib/class.sideposts-widget.php:228103 #: ../includes/widget.php:208 140 104 msgid "pixels" 141 105 msgstr "pixeli" 142 106 143 #: ../ lib/class.sideposts-widget.php:231107 #: ../includes/widget.php:211 144 108 msgid "Align thumbnail to right" 145 109 msgstr "" 146 110 111 #: ../templates/photoblog.php:48 112 msgid "No Comments" 113 msgstr "" 114 115 #: ../templates/photoblog.php:49 116 msgid "1 Comment" 117 msgstr "" 118 119 #: ../templates/photoblog.php:50 120 msgid "% Comments" 121 msgstr "" 122 123 #: ../templates/photoblog.php:52 124 msgid "Comments closed" 125 msgstr "" 126 127 #: ../templates/posts.php:46 128 msgid "Read more »" 129 msgstr "Citeşte mai mult »" 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" 147 139 #~ msgid "Read full post »" 148 140 #~ msgstr "Citeşte articolul complet »" -
sideposts/trunk/lang/sideposts-ru_RU.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget 2.2\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: WordPress по-русски | http://www.wp-ru.ru <grib69@gmail.com>\n" 9 9 "MIME-Version: 1.0\n" … … 20 20 "X-Poedit-SearchPath-2: ../lib\n" 21 21 22 #: ../sideposts.php:55 23 #: ../lib/class.plugin.php:485 24 #: ../lib/class.plugin.php:522 22 #: ../sideposts.php:54 25 23 msgid "Warning:" 26 24 msgstr "Предупреждение:" 27 25 28 #: ../sideposts.php:5 626 #: ../sideposts.php:55 29 27 #, php-format 30 28 msgid "The active plugin %s is not compatible with your PHP version." 31 29 msgstr "Плагин %s не совместим с установленой у Вас версией PHP." 32 30 33 #: ../sideposts.php:5 831 #: ../sideposts.php:57 34 32 #, php-format 35 33 msgid "%s is required for this plugin." 36 34 msgstr "%s требуется для плагина." 37 35 38 #: ../ lib/class.plugin.php:48639 #, php-format40 msgid " The active plugin %s is not compatible with your WordPress version."41 msgstr " Плагин %s не совместим с Вашей версией WordPress."36 #: ../includes/functions.php:49 37 #, fuzzy 38 msgid "Archive" 39 msgstr "Архив для" 42 40 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 42 msgid "Archive for" 43 msgstr "Архив для" 47 44 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 58 46 msgid "A widget to move posts to the sidebar." 59 47 msgstr "Виджет размещает записи на сайдбаре." 60 48 61 #: ../ lib/class.sideposts-widget.php:6949 #: ../includes/widget.php:83 62 50 msgid "Category not selected." 63 51 msgstr "Не выбрана рубрика." 64 52 65 #: ../lib/class.sideposts-widget.php:133 66 msgid "Read more »" 67 msgstr "Далее... »" 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 90 54 msgid "Title:" 91 55 msgstr "Заголовок:" 92 56 93 #: ../ lib/class.sideposts-widget.php:19657 #: ../includes/widget.php:156 94 58 msgid "Category:" 95 59 msgstr "Рубрика:" 96 60 97 #: ../ lib/class.sideposts-widget.php:19861 #: ../includes/widget.php:158 98 62 msgid "-- PRIVATE POSTS --" 99 63 msgstr "-- ЛИЧНЫЕ ЗАПИСИ --" 100 64 101 #: ../ lib/class.sideposts-widget.php:21065 #: ../includes/widget.php:170 102 66 msgid "Number of posts:" 103 67 msgstr "Кол-во записей:" 104 68 105 #: ../ lib/class.sideposts-widget.php:21269 #: ../includes/widget.php:172 106 70 #, php-format 107 71 msgid "(At most %d)" 108 72 msgstr "(Максимум %d)" 109 73 110 #: ../ lib/class.sideposts-widget.php:21574 #: ../includes/widget.php:175 111 75 msgid "Show:" 112 76 msgstr "Отображать:" 113 77 114 #: ../ lib/class.sideposts-widget.php:21678 #: ../includes/widget.php:181 115 79 msgid "Full Post" 116 80 msgstr "Запись полностью" 117 81 118 #: ../ lib/class.sideposts-widget.php:21782 #: ../includes/widget.php:184 119 83 msgid "Post Excerpt" 120 84 msgstr "Отрывок из записи" 121 85 122 #: ../ lib/class.sideposts-widget.php:21886 #: ../includes/widget.php:187 123 87 msgid "Excerpts with thumbnails" 124 88 msgstr "Отрывок с миниатюрой" 125 89 126 #: ../ lib/class.sideposts-widget.php:21990 #: ../includes/widget.php:190 127 91 msgid "Photo Blog" 128 92 msgstr "" 129 93 130 #: ../ lib/class.sideposts-widget.php:22094 #: ../includes/widget.php:193 131 95 msgid "Only Post Title" 132 96 msgstr "Только заголовок записи" 133 97 134 #: ../ lib/class.sideposts-widget.php:22498 #: ../includes/widget.php:204 135 99 msgid "Show category on all feeds" 136 100 msgstr "" 137 101 138 #: ../ lib/class.sideposts-widget.php:226102 #: ../includes/widget.php:206 139 103 #, fuzzy 140 104 msgid "Image width:" 141 105 msgstr "Ширина миниатюры:" 142 106 143 #: ../ lib/class.sideposts-widget.php:228107 #: ../includes/widget.php:208 144 108 msgid "pixels" 145 109 msgstr "пикселей" 146 110 147 #: ../ lib/class.sideposts-widget.php:231111 #: ../includes/widget.php:211 148 112 msgid "Align thumbnail to right" 149 113 msgstr "" 150 114 115 #: ../templates/photoblog.php:48 116 msgid "No Comments" 117 msgstr "" 118 119 #: ../templates/photoblog.php:49 120 msgid "1 Comment" 121 msgstr "" 122 123 #: ../templates/photoblog.php:50 124 msgid "% Comments" 125 msgstr "" 126 127 #: ../templates/photoblog.php:52 128 msgid "Comments closed" 129 msgstr "" 130 131 #: ../templates/posts.php:46 132 msgid "Read more »" 133 msgstr "Далее... »" 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 для работы этого плагина." 151 139 #~ msgid "Read full post »" 152 140 #~ msgstr "Читать полностью »" -
sideposts/trunk/lang/sideposts-sv_SE.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts Widget 1.5\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Alkivia | http://alkivia.org <gpl@alkivia.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-SearchPath-0: ..\n" 17 17 18 #: ../sideposts.php:55 19 #: ../lib/class.plugin.php:485 20 #: ../lib/class.plugin.php:522 18 #: ../sideposts.php:54 21 19 msgid "Warning:" 22 20 msgstr "" 23 21 24 #: ../sideposts.php:5 622 #: ../sideposts.php:55 25 23 #, php-format 26 24 msgid "The active plugin %s is not compatible with your PHP version." 27 25 msgstr "" 28 26 29 #: ../sideposts.php:5 827 #: ../sideposts.php:57 30 28 #, php-format 31 29 msgid "%s is required for this plugin." 32 30 msgstr "" 33 31 34 #: ../ lib/class.plugin.php:48635 #, fuzzy , php-format36 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 34 msgid "Archive" 35 msgstr "Arkiv för" 38 36 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 38 msgid "Archive for" 39 msgstr "Arkiv för" 43 40 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 54 42 msgid "A widget to move posts to the sidebar." 55 43 msgstr "Ett tillägg för att flytta artiklar till sidopanelen." 56 44 57 #: ../ lib/class.sideposts-widget.php:6945 #: ../includes/widget.php:83 58 46 msgid "Category not selected." 59 47 msgstr "Kategori ej vald" 60 48 61 #: ../lib/class.sideposts-widget.php:133 62 msgid "Read more »" 63 msgstr "Läs mer »" 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 86 50 msgid "Title:" 87 51 msgstr "Titel:" 88 52 89 #: ../ lib/class.sideposts-widget.php:19653 #: ../includes/widget.php:156 90 54 msgid "Category:" 91 55 msgstr "Kategori:" 92 56 93 #: ../ lib/class.sideposts-widget.php:19857 #: ../includes/widget.php:158 94 58 msgid "-- PRIVATE POSTS --" 95 59 msgstr "" 96 60 97 #: ../ lib/class.sideposts-widget.php:21061 #: ../includes/widget.php:170 98 62 msgid "Number of posts:" 99 63 msgstr "Antal artiklar:" 100 64 101 #: ../ lib/class.sideposts-widget.php:21265 #: ../includes/widget.php:172 102 66 #, php-format 103 67 msgid "(At most %d)" 104 68 msgstr "(Som flest %d)" 105 69 106 #: ../ lib/class.sideposts-widget.php:21570 #: ../includes/widget.php:175 107 71 msgid "Show:" 108 72 msgstr "Visa:" 109 73 110 #: ../ lib/class.sideposts-widget.php:21674 #: ../includes/widget.php:181 111 75 msgid "Full Post" 112 76 msgstr "Hela artikeln" 113 77 114 #: ../ lib/class.sideposts-widget.php:21778 #: ../includes/widget.php:184 115 79 msgid "Post Excerpt" 116 80 msgstr "Artikelutdrag" 117 81 118 #: ../ lib/class.sideposts-widget.php:21882 #: ../includes/widget.php:187 119 83 msgid "Excerpts with thumbnails" 120 84 msgstr "Utdrag med miniatyrbild" 121 85 122 #: ../ lib/class.sideposts-widget.php:21986 #: ../includes/widget.php:190 123 87 msgid "Photo Blog" 124 88 msgstr "" 125 89 126 #: ../ lib/class.sideposts-widget.php:22090 #: ../includes/widget.php:193 127 91 msgid "Only Post Title" 128 92 msgstr "" 129 93 130 #: ../ lib/class.sideposts-widget.php:22494 #: ../includes/widget.php:204 131 95 msgid "Show category on all feeds" 132 96 msgstr "" 133 97 134 #: ../ lib/class.sideposts-widget.php:22698 #: ../includes/widget.php:206 135 99 #, fuzzy 136 100 msgid "Image width:" 137 101 msgstr "Bredd på miniatyrbild:" 138 102 139 #: ../ lib/class.sideposts-widget.php:228103 #: ../includes/widget.php:208 140 104 msgid "pixels" 141 105 msgstr "pixlar" 142 106 143 #: ../ lib/class.sideposts-widget.php:231107 #: ../includes/widget.php:211 144 108 msgid "Align thumbnail to right" 145 109 msgstr "" 146 110 111 #: ../templates/photoblog.php:48 112 msgid "No Comments" 113 msgstr "" 114 115 #: ../templates/photoblog.php:49 116 msgid "1 Comment" 117 msgstr "" 118 119 #: ../templates/photoblog.php:50 120 msgid "% Comments" 121 msgstr "" 122 123 #: ../templates/photoblog.php:52 124 msgid "Comments closed" 125 msgstr "" 126 127 #: ../templates/posts.php:46 128 msgid "Read more »" 129 msgstr "Läs mer »" 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." 147 136 #~ msgid "Read full post »" 148 137 #~ msgstr "Läs hela artikeln »" -
sideposts/trunk/lang/sideposts-tr_TR.po
r189333 r199488 3 3 "Project-Id-Version: SidePosts WordPress Widget in TurKish\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-12-04 19:06+0100\n"5 "POT-Creation-Date: 2010-01-28 23:09+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Omer Faruk - wordpress.info.tr <admin@wordpress.info.tr>\n" 9 9 "MIME-Version: 1.0\n" … … 18 18 "X-Poedit-SearchPath-0: \n" 19 19 20 #: ../sideposts.php:55 21 #: ../lib/class.plugin.php:485 22 #: ../lib/class.plugin.php:522 20 #: ../sideposts.php:54 23 21 msgid "Warning:" 24 22 msgstr "" 25 23 26 #: ../sideposts.php:5 624 #: ../sideposts.php:55 27 25 #, php-format 28 26 msgid "The active plugin %s is not compatible with your PHP version." 29 27 msgstr "" 30 28 31 #: ../sideposts.php:5 829 #: ../sideposts.php:57 32 30 #, php-format 33 31 msgid "%s is required for this plugin." 34 32 msgstr "" 35 33 36 #: ../ lib/class.plugin.php:48637 #, php-format38 msgid " The active plugin %s is not compatible with your WordPress version."39 msgstr " "34 #: ../includes/functions.php:49 35 #, fuzzy 36 msgid "Archive" 37 msgstr "Arşiv için:" 40 38 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 40 msgid "Archive for" 41 msgstr "Arşiv için:" 45 42 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 56 44 msgid "A widget to move posts to the sidebar." 57 45 msgstr "Yazıları kenar çubuğuna taşımak için bir widget." 58 46 59 #: ../ lib/class.sideposts-widget.php:6947 #: ../includes/widget.php:83 60 48 msgid "Category not selected." 61 49 msgstr "Kategori seçilmedi" 62 50 63 #: ../lib/class.sideposts-widget.php:133 64 msgid "Read more »" 65 msgstr "Daha fazlasını oku »" 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 88 52 msgid "Title:" 89 53 msgstr "Başlık:" 90 54 91 #: ../ lib/class.sideposts-widget.php:19655 #: ../includes/widget.php:156 92 56 msgid "Category:" 93 57 msgstr "Kategori:" 94 58 95 #: ../ lib/class.sideposts-widget.php:19859 #: ../includes/widget.php:158 96 60 msgid "-- PRIVATE POSTS --" 97 61 msgstr "" 98 62 99 #: ../ lib/class.sideposts-widget.php:21063 #: ../includes/widget.php:170 100 64 msgid "Number of posts:" 101 65 msgstr "Yazı Sayısı:" 102 66 103 #: ../ lib/class.sideposts-widget.php:21267 #: ../includes/widget.php:172 104 68 #, php-format 105 69 msgid "(At most %d)" 106 70 msgstr "(İlk %d'dakiler)" 107 71 108 #: ../ lib/class.sideposts-widget.php:21572 #: ../includes/widget.php:175 109 73 msgid "Show:" 110 74 msgstr "Göster:" 111 75 112 #: ../ lib/class.sideposts-widget.php:21676 #: ../includes/widget.php:181 113 77 msgid "Full Post" 114 78 msgstr "Tüm Yazı" 115 79 116 #: ../ lib/class.sideposts-widget.php:21780 #: ../includes/widget.php:184 117 81 msgid "Post Excerpt" 118 82 msgstr "Yazı Alıntısı" 119 83 120 #: ../ lib/class.sideposts-widget.php:21884 #: ../includes/widget.php:187 121 85 msgid "Excerpts with thumbnails" 122 86 msgstr "" 123 87 124 #: ../ lib/class.sideposts-widget.php:21988 #: ../includes/widget.php:190 125 89 msgid "Photo Blog" 126 90 msgstr "" 127 91 128 #: ../ lib/class.sideposts-widget.php:22092 #: ../includes/widget.php:193 129 93 msgid "Only Post Title" 130 94 msgstr "" 131 95 132 #: ../ lib/class.sideposts-widget.php:22496 #: ../includes/widget.php:204 133 97 msgid "Show category on all feeds" 134 98 msgstr "" 135 99 136 #: ../ lib/class.sideposts-widget.php:226100 #: ../includes/widget.php:206 137 101 msgid "Image width:" 138 102 msgstr "" 139 103 140 #: ../ lib/class.sideposts-widget.php:228104 #: ../includes/widget.php:208 141 105 msgid "pixels" 142 106 msgstr "" 143 107 144 #: ../ lib/class.sideposts-widget.php:231108 #: ../includes/widget.php:211 145 109 msgid "Align thumbnail to right" 146 110 msgstr "" 111 112 #: ../templates/photoblog.php:48 113 msgid "No Comments" 114 msgstr "" 115 116 #: ../templates/photoblog.php:49 117 msgid "1 Comment" 118 msgstr "" 119 120 #: ../templates/photoblog.php:50 121 msgid "% Comments" 122 msgstr "" 123 124 #: ../templates/photoblog.php:52 125 msgid "Comments closed" 126 msgstr "" 127 128 #: ../templates/posts.php:46 129 msgid "Read more »" 130 msgstr "Daha fazlasını oku »" 147 131 148 132 #~ msgid "Read full post »" -
sideposts/trunk/lang/sideposts.pot
r196960 r199488 3 3 "Project-Id-Version: Alkivia SidePosts\n" 4 4 "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" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Jordi Canals < alkivia@jcanals.net>\n"7 "Last-Translator: Jordi Canals <devel@jcanals.cat>\n" 8 8 "Language-Team: Jordi Canals | http://alkivia.org <devel@jcanals.cat>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-SearchPath-0: ..\n" 17 17 18 #: ../sideposts.php:53 19 #: ../framework/classes/abstract/plugin.php:212 20 #: ../framework/classes/abstract/plugin.php:231 18 #: ../sideposts.php:54 21 19 msgid "Warning:" 22 20 msgstr "" 23 21 24 #: ../sideposts.php:5 422 #: ../sideposts.php:55 25 23 #, php-format 26 24 msgid "The active plugin %s is not compatible with your PHP version." 27 25 msgstr "" 28 26 29 #: ../sideposts.php:5 627 #: ../sideposts.php:57 30 28 #, php-format 31 29 msgid "%s is required for this plugin." 32 30 msgstr "" 33 31 34 #: ../ framework/classes/abstract/module.php:47035 msgid " Option blocked by administrator."32 #: ../includes/functions.php:49 33 msgid "Archive" 36 34 msgstr "" 37 35 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 37 msgid "Archive for" 41 38 msgstr "" 42 39 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 276 41 msgid "A widget to move posts to the sidebar." 277 42 msgstr "" 278 43 279 #: ../includes/widget.php: 7644 #: ../includes/widget.php:83 280 45 msgid "Category not selected." 281 46 msgstr "" 282 47 283 #: ../includes/widget.php:140284 msgid "Read more »"285 msgstr ""286 287 #: ../includes/widget.php:154288 msgid "No Comments"289 msgstr ""290 291 48 #: ../includes/widget.php:155 292 msgid " 1 Comment"49 msgid "Title:" 293 50 msgstr "" 294 51 295 52 #: ../includes/widget.php:156 296 msgid " % Comments"53 msgid "Category:" 297 54 msgstr "" 298 55 299 56 #: ../includes/widget.php:158 300 msgid "Comments closed"301 msgstr ""302 303 #: ../includes/widget.php:174304 msgid "Archive for"305 msgstr ""306 307 #: ../includes/widget.php:203308 msgid "Title:"309 msgstr ""310 311 #: ../includes/widget.php:204312 msgid "Category:"313 msgstr ""314 315 #: ../includes/widget.php:206316 57 msgid "-- PRIVATE POSTS --" 317 58 msgstr "" 318 59 319 #: ../includes/widget.php: 21860 #: ../includes/widget.php:170 320 61 msgid "Number of posts:" 321 62 msgstr "" 322 63 323 #: ../includes/widget.php: 22064 #: ../includes/widget.php:172 324 65 #, php-format 325 66 msgid "(At most %d)" 326 67 msgstr "" 327 68 328 #: ../includes/widget.php: 22369 #: ../includes/widget.php:175 329 70 msgid "Show:" 330 71 msgstr "" 331 72 332 #: ../includes/widget.php: 22473 #: ../includes/widget.php:181 333 74 msgid "Full Post" 334 75 msgstr "" 335 76 336 #: ../includes/widget.php: 22577 #: ../includes/widget.php:184 337 78 msgid "Post Excerpt" 338 79 msgstr "" 339 80 340 #: ../includes/widget.php: 22681 #: ../includes/widget.php:187 341 82 msgid "Excerpts with thumbnails" 342 83 msgstr "" 343 84 344 #: ../includes/widget.php: 22785 #: ../includes/widget.php:190 345 86 msgid "Photo Blog" 346 87 msgstr "" 347 88 348 #: ../includes/widget.php: 22889 #: ../includes/widget.php:193 349 90 msgid "Only Post Title" 350 91 msgstr "" 351 92 352 #: ../includes/widget.php:2 3293 #: ../includes/widget.php:204 353 94 msgid "Show category on all feeds" 354 95 msgstr "" 355 96 356 #: ../includes/widget.php:2 3497 #: ../includes/widget.php:206 357 98 msgid "Image width:" 358 99 msgstr "" 359 100 360 #: ../includes/widget.php:2 36101 #: ../includes/widget.php:208 361 102 msgid "pixels" 362 103 msgstr "" 363 104 364 #: ../includes/widget.php:2 39105 #: ../includes/widget.php:211 365 106 msgid "Align thumbnail to right" 366 107 msgstr "" 367 108 109 #: ../templates/photoblog.php:48 110 msgid "No Comments" 111 msgstr "" 112 113 #: ../templates/photoblog.php:49 114 msgid "1 Comment" 115 msgstr "" 116 117 #: ../templates/photoblog.php:50 118 msgid "% Comments" 119 msgstr "" 120 121 #: ../templates/photoblog.php:52 122 msgid "Comments closed" 123 msgstr "" 124 125 #: ../templates/posts.php:46 126 msgid "Read more »" 127 msgstr "" 128 -
sideposts/trunk/license.txt
r196960 r199488 279 279 280 280 END OF TERMS AND CONDITIONS 281 282 How to Apply These Terms to Your New Programs283 284 If you develop a new program, and you want it to be of the greatest285 possible use to the public, the best way to achieve this is to make it286 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 safest289 to attach them to the start of each source file to most effectively290 convey the exclusion of warranty; and each file should have at least291 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 modify297 it under the terms of the GNU General Public License as published by298 the Free Software Foundation; either version 2 of the License, or299 (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 of303 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the304 GNU General Public License for more details.305 306 You should have received a copy of the GNU General Public License along307 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 this313 when it starts in an interactive mode:314 315 Gnomovision version 69, Copyright (C) year name of author316 Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.317 This is free software, and you are welcome to redistribute it318 under certain conditions; type `show c' for details.319 320 The hypothetical commands `show w' and `show c' should show the appropriate321 parts of the General Public License. Of course, the commands you use may322 be called something other than `show w' and `show c'; they could even be323 mouse-clicks or menu items--whatever suits your program.324 325 You should also get your employer (if you work as a programmer) or your326 school, if any, to sign a "copyright disclaimer" for the program, if327 necessary. Here is a sample; alter the names:328 329 Yoyodyne, Inc., hereby disclaims all copyright interest in the program330 `Gnomovision' (which makes passes at compilers) written by James Hacker.331 332 <signature of Ty Coon>, 1 April 1989333 Ty Coon, President of Vice334 335 This General Public License does not permit incorporating your program into336 proprietary programs. If your program is a subroutine library, you may337 consider it more useful to permit linking proprietary applications with the338 library. If this is what you want to do, use the GNU Lesser General339 Public License instead of this License. -
sideposts/trunk/readme.txt
r197281 r199488 1 1 === Alkivia SidePosts === 2 Revision: $Rev: 491$2 Revision: $Rev: 639 $ 3 3 Contributors: txanny 4 4 Donate link: http://alkivia.org/donate 5 Help link: http://wordpress.org/tags/sideposts?forum_id=10 6 Docs link: http://wiki.alkivia.org/sideposts 5 7 Tags: sidebar, widget, sideposts, asides, posts, sideblog, miniblog, subblog, miniposts 6 8 Requires at least: 2.8 … … 14 16 With 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). 15 17 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. 18 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). 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. 19 19 20 20 = Features: = … … 22 22 * Have a mini-blog or foto-blog on the sidebar. 23 23 * 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. 24 25 * Setup a widget to show latest private posts at the sidebar. 25 26 * 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). 28 29 * Set category, number of posts and title on the widget admin panel. 29 30 * Widget allows for multiple instances. … … 35 36 * Catalan 36 37 * 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>* 37 44 * 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>* 38 48 * 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>* 44 50 * 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>*49 51 * Turkish *by <a href="http://ramerta.com" rel="nofollow">Omer Faruk</a>* 50 52 * POT file for easy translation to other languages included. … … 56 58 * **Requires PHP 5.2**. Will not work with obsolete PHP versions. (This includes PHP-4). 57 59 * 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. 59 61 60 62 = Installing the Widget = … … 78 80 = Where can I find more information about this plugin, usage and support ? = 79 81 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>. 81 83 * Take a look to the <a href="http://alkivia.org/wordpress/sideposts">Plugin Homepage</a>. 82 84 * The <a href="http://alkivia.org/cat/sideposts">plugin posts archive</a> with new announcements about this plugin. … … 101 103 == License == 102 104 103 Copyright 200 9, 2010 Jordi Canals105 Copyright 2008, 2009, 2010 Jordi Canals 104 106 105 107 This 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. … … 110 112 111 113 == 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. 112 121 113 122 = 2.5.2 = … … 248 257 249 258 == 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 4 4 Plugin URI: http://alkivia.org/wordpress/sideposts 5 5 Description: 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.26 Version: 3.0 7 7 Author: Jordi Canals 8 8 Author URI: http://alkivia.org … … 14 14 * Posts will not show on index pages, archives or feeds. The category has its own feed. 15 15 * 16 * @version $Rev: 483$16 * @version $Rev: 638 $ 17 17 * @author Jordi Canals 18 * @copyright Copyright (C) 200 9, 2010 Jordi Canals18 * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals 19 19 * @license GNU General Public License version 2 20 20 * @link http://alkivia.org … … 23 23 * 24 24 25 Copyright 200 9, 2010 Jordi Canals <devel@jcanals.cat>25 Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> 26 26 27 27 This program is free software; you can redistribute it and/or … … 47 47 * @return void 48 48 */ 49 function _s posts_php_warning()49 function _sideposts_php_warning() 50 50 { 51 51 $data = get_plugin_data(__FILE__); … … 55 55 . sprintf(__('The active plugin %s is not compatible with your PHP version.', 'sideposts') .'</p><p>', 56 56 '«' . $data['Name'] . ' ' . $data['Version'] . '»') 57 . sprintf(__('%s is required for this plugin.', 'sideposts'), 'PHP 5.2 ')57 . sprintf(__('%s is required for this plugin.', 'sideposts'), 'PHP 5.2') 58 58 . '</p></div>'; 59 59 } … … 62 62 if ( version_compare(PHP_VERSION, '5.2.0', '<') ) { 63 63 // Send an armin warning 64 add_action('admin_notices', '_s posts_php_warning');64 add_action('admin_notices', '_sideposts_php_warning'); 65 65 } else { 66 66 require_once( SPOSTS_PATH . '/framework/loader.php'); 67 67 require ( SPOSTS_LIB . '/plugin.php' ); 68 require ( SPOSTS_LIB . '/functions.php' ); 68 69 69 70 ak_create_object('sideposts', new SidePosts(__FILE__, 'sideposts')); -
sideposts/trunk/style.css
r196960 r199488 6 6 * If you're usinf one of my themes, styling on the file custom.css is the preferred method. 7 7 * 8 * @version $Rev: 483$8 * @version $Rev: 528 $ 9 9 * @author Jordi Canals 10 * @copyright Copyright (C) 200 9, 2010 Jordi Canals10 * @copyright Copyright (C) 2008, 2009, 2010 Jordi Canals 11 11 * @license GNU General Public License version 2 12 12 * @link http://alkivia.org … … 15 15 * 16 16 17 Copyright 200 9, 2010 Jordi Canals <devel@jcanals.cat>17 Copyright 2008, 2009, 2010 Jordi Canals <devel@jcanals.cat> 18 18 19 19 This program is free software; you can redistribute it and/or
Note: See TracChangeset
for help on using the changeset viewer.