Version Description
- Fix an issue on img url encode
- Retrive img url in url parameters
- Fix minor PHP warning
- New hook: feedzy_add_classes_item
Download this release
Release Info
Developer | briKou |
Plugin | FEEDZY RSS Feeds Lite |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4 to 2.4.1
- feedzy-rss-feed.php +1 -1
- feedzy-rss-feeds-functions.php +52 -13
- feedzy-rss-feeds-shortcode.php +13 -12
- langs/feedzy_rss_translate-fr_FR.po +204 -204
- langs/feedzy_rss_translate-sr_RS.po +204 -204
- readme.txt +7 -1
feedzy-rss-feed.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes.
|
6 |
* Author: Brice CAPOBIANCO
|
7 |
* Author URI: http://b-website.com/
|
8 |
-
* Version: 2.4
|
9 |
* Text Domain: feedzy_rss_translate
|
10 |
* Domain Path: /langs
|
11 |
*/
|
5 |
* Description: FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes.
|
6 |
* Author: Brice CAPOBIANCO
|
7 |
* Author URI: http://b-website.com/
|
8 |
+
* Version: 2.4.1
|
9 |
* Text Domain: feedzy_rss_translate
|
10 |
* Domain Path: /langs
|
11 |
*/
|
feedzy-rss-feeds-functions.php
CHANGED
@@ -17,28 +17,67 @@ add_action( 'wp_footer', 'feedzy_print_custom_style' );
|
|
17 |
|
18 |
|
19 |
/***************************************************************
|
20 |
-
*
|
21 |
***************************************************************/
|
22 |
-
function
|
23 |
-
$
|
24 |
-
$
|
25 |
-
|
26 |
-
|
27 |
-
return $text;
|
28 |
}
|
29 |
-
|
30 |
|
31 |
/***************************************************************
|
32 |
-
*
|
33 |
***************************************************************/
|
34 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
$pattern = '/src=[\'"]?([^\'" >]+)[\'" >]/';
|
36 |
-
preg_match($pattern, $
|
37 |
-
|
38 |
-
|
|
|
|
|
39 |
return $link;
|
40 |
}
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
/***************************************************************
|
44 |
* Filter feed description input
|
17 |
|
18 |
|
19 |
/***************************************************************
|
20 |
+
* Feed item container class
|
21 |
***************************************************************/
|
22 |
+
function feedzy_classes_item(){
|
23 |
+
$classes = array( 'rss_item' );
|
24 |
+
$classes = apply_filters( 'feedzy_add_classes_item', $classes );
|
25 |
+
$classes = implode( ' ', $classes );
|
26 |
+
return $classes;
|
|
|
27 |
}
|
28 |
+
|
29 |
|
30 |
/***************************************************************
|
31 |
+
* Get an image from the feed
|
32 |
***************************************************************/
|
33 |
+
function feedzy_returnImage( $string ) {
|
34 |
+
$img = html_entity_decode($string, ENT_QUOTES, 'UTF-8');
|
35 |
+
$pattern = "/<img[^>]+\>/i";
|
36 |
+
preg_match( $pattern, $img, $matches );
|
37 |
+
if( isset( $matches[0] ) ){
|
38 |
+
$string = $matches[0];
|
39 |
+
}
|
40 |
+
return $string;
|
41 |
+
}
|
42 |
+
|
43 |
+
function feedzy_scrapeImage( $string ) {
|
44 |
+
$link = '';
|
45 |
$pattern = '/src=[\'"]?([^\'" >]+)[\'" >]/';
|
46 |
+
preg_match( $pattern, $string, $link );
|
47 |
+
if( isset( $link[1] ) ){
|
48 |
+
$link = $link[1];
|
49 |
+
$link = urldecode( $link );
|
50 |
+
}
|
51 |
return $link;
|
52 |
}
|
53 |
|
54 |
+
/***************************************************************
|
55 |
+
* Image name encode + get image url if in url param
|
56 |
+
***************************************************************/
|
57 |
+
function feedzy_image_encode( $string ) {
|
58 |
+
|
59 |
+
//Check if img url is set as an URL parameter
|
60 |
+
$url_tab = parse_url( $string );
|
61 |
+
if( isset( $url_tab['query'] ) ){
|
62 |
+
preg_match_all( '/(http|https):\/\/[^ ]+(\.gif|\.GIF|\.jpg|\.JPG|\.jpeg|\.JPEG|\.png|\.PNG)/', $url_tab['query'], $imgUrl );
|
63 |
+
if( isset( $imgUrl[0][0] ) ){
|
64 |
+
$string = $imgUrl[0][0];
|
65 |
+
}
|
66 |
+
}
|
67 |
+
|
68 |
+
//Encode image name only en keep extra parameters
|
69 |
+
$query = '';
|
70 |
+
$url_tab = parse_url( $string );
|
71 |
+
if( isset( $url_tab['query'] ) ){
|
72 |
+
$query = '?' . $url_tab['query'];
|
73 |
+
}
|
74 |
+
$path_parts = pathinfo( $string );
|
75 |
+
$path = $path_parts['dirname'];
|
76 |
+
$file = $path_parts['filename'] . '.' . pathinfo( $url_tab['path'], PATHINFO_EXTENSION );
|
77 |
+
|
78 |
+
//Return a well encoded image url
|
79 |
+
return $path . '/' . rawurlencode( $file ) . $query;
|
80 |
+
}
|
81 |
|
82 |
/***************************************************************
|
83 |
* Filter feed description input
|
feedzy-rss-feeds-shortcode.php
CHANGED
@@ -37,6 +37,16 @@ function feedzy_rss( $atts, $content = '' ) {
|
|
37 |
"keywords_title" => '' //only display item if title contains specific keywords (comma-separated list/case sensitive)
|
38 |
), $atts ) );
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
if ( $max == '0' ) {
|
41 |
$max = '999';
|
42 |
} else if ( empty( $max ) || !ctype_digit( $max ) ) {
|
@@ -67,16 +77,6 @@ function feedzy_rss( $atts, $content = '' ) {
|
|
67 |
} else {
|
68 |
$default = plugins_url( 'img/feedzy-default.jpg', __FILE__ );
|
69 |
}
|
70 |
-
|
71 |
-
if ( !empty( $feeds ) ) {
|
72 |
-
|
73 |
-
$feedURL = explode( ',', $feeds );
|
74 |
-
|
75 |
-
if ( count( $feedURL ) === 1 ) {
|
76 |
-
$feedURL = $feedURL[0];
|
77 |
-
}
|
78 |
-
|
79 |
-
}
|
80 |
|
81 |
//Load SimplePie Instance
|
82 |
$feed = new SimplePie();
|
@@ -205,7 +205,7 @@ function feedzy_rss( $atts, $content = '' ) {
|
|
205 |
$paddinBottom = number_format( (25 / 150) * $sizes['height'], 0 );
|
206 |
|
207 |
//Build element DOM
|
208 |
-
$content .= '<div class="
|
209 |
|
210 |
if ( $thumb == 'yes' || $thumb == 'auto' ) {
|
211 |
|
@@ -216,8 +216,9 @@ function feedzy_rss( $atts, $content = '' ) {
|
|
216 |
$contentThumb .= '<div class="rss_image" style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px;">';
|
217 |
$contentThumb .= '<a href="' . $item->get_permalink() . '" target="' . $target . '" title="' . $item->get_title() . '" >';
|
218 |
|
219 |
-
if ( !empty( $thethumbnail
|
220 |
|
|
|
221 |
$contentThumb .= '<span style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px; background-image: none, url(' . $thethumbnail . '), url(' . $default . ');" alt="' . $item->get_title() . '"></span/>';
|
222 |
|
223 |
} else if ( empty( $thethumbnail ) && $thumb == 'yes' ) {
|
37 |
"keywords_title" => '' //only display item if title contains specific keywords (comma-separated list/case sensitive)
|
38 |
), $atts ) );
|
39 |
|
40 |
+
if ( !empty( $feeds ) ) {
|
41 |
+
|
42 |
+
$feedURL = explode( ',', $feeds );
|
43 |
+
|
44 |
+
if ( count( $feedURL ) === 1 ) {
|
45 |
+
$feedURL = $feedURL[0];
|
46 |
+
}
|
47 |
+
|
48 |
+
}
|
49 |
+
|
50 |
if ( $max == '0' ) {
|
51 |
$max = '999';
|
52 |
} else if ( empty( $max ) || !ctype_digit( $max ) ) {
|
77 |
} else {
|
78 |
$default = plugins_url( 'img/feedzy-default.jpg', __FILE__ );
|
79 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
//Load SimplePie Instance
|
82 |
$feed = new SimplePie();
|
205 |
$paddinBottom = number_format( (25 / 150) * $sizes['height'], 0 );
|
206 |
|
207 |
//Build element DOM
|
208 |
+
$content .= '<div class="' . feedzy_classes_item() . '" style="padding: ' . $paddinTop . 'px 0 ' . $paddinBottom . 'px">';
|
209 |
|
210 |
if ( $thumb == 'yes' || $thumb == 'auto' ) {
|
211 |
|
216 |
$contentThumb .= '<div class="rss_image" style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px;">';
|
217 |
$contentThumb .= '<a href="' . $item->get_permalink() . '" target="' . $target . '" title="' . $item->get_title() . '" >';
|
218 |
|
219 |
+
if ( !empty( $thethumbnail )) {
|
220 |
|
221 |
+
$thethumbnail = feedzy_image_encode( $thethumbnail );
|
222 |
$contentThumb .= '<span style="width:' . $sizes['width'] . 'px; height:' . $sizes['height'] . 'px; background-image: none, url(' . $thethumbnail . '), url(' . $default . ');" alt="' . $item->get_title() . '"></span/>';
|
223 |
|
224 |
} else if ( empty( $thethumbnail ) && $thumb == 'yes' ) {
|
langs/feedzy_rss_translate-fr_FR.po
CHANGED
@@ -1,204 +1,204 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: FEEDZY RSS Feeds by b*web v2.2\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2015-01-13 19:51:14+0000\n"
|
7 |
-
"Last-Translator: superadminopl <brice.capobianco@openlog.fr>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
13 |
-
"X-Generator: CSL v1.x\n"
|
14 |
-
"X-Poedit-Language: French\n"
|
15 |
-
"X-Poedit-Country: FRANCE\n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
-
"X-Poedit-Basepath: \n"
|
19 |
-
"X-Poedit-Bookmarks: \n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
"X-Textdomain-Support: yes"
|
22 |
-
|
23 |
-
#: feedzy-rss-feeds-shortcode.php:120
|
24 |
-
#@ feedzy_rss_translate
|
25 |
-
msgid "Sorry, this feed is currently unavailable or does not exists anymore."
|
26 |
-
msgstr "Désolé, ce flux est actuellement indisponible ou n'existe plus."
|
27 |
-
|
28 |
-
#: feedzy-rss-feeds-shortcode.php:298
|
29 |
-
#@ feedzy_rss_translate
|
30 |
-
msgid "on"
|
31 |
-
msgstr "le"
|
32 |
-
|
33 |
-
#: feedzy-rss-feeds-shortcode.php:298
|
34 |
-
#@ feedzy_rss_translate
|
35 |
-
msgid "at"
|
36 |
-
msgstr "à"
|
37 |
-
|
38 |
-
#: feedzy-rss-feed.php:37
|
39 |
-
#@ feedzy_rss_translate
|
40 |
-
msgid "Documentation and examples"
|
41 |
-
msgstr "Documentation et exemples"
|
42 |
-
|
43 |
-
#: feedzy-rss-feed.php:38
|
44 |
-
#@ feedzy_rss_translate
|
45 |
-
msgid "More b*web Plugins"
|
46 |
-
msgstr "Plus de plugins b*web"
|
47 |
-
|
48 |
-
#: feedzy-rss-feeds-ui-lang.php:19
|
49 |
-
#@ feedzy_rss_translate
|
50 |
-
msgid "Insert FEEDZY RSS Feeds Shortcode"
|
51 |
-
msgstr "Insérer un shortcode FEEDZY RSS Feeds"
|
52 |
-
|
53 |
-
#: feedzy-rss-feeds-ui-lang.php:21
|
54 |
-
#: feedzy-rss-feeds-widget.php:69
|
55 |
-
#@ feedzy_rss_translate
|
56 |
-
msgid "Number of items to display."
|
57 |
-
msgstr "Nombre d’éléments à remonter."
|
58 |
-
|
59 |
-
#: feedzy-rss-feeds-ui-lang.php:23
|
60 |
-
#: feedzy-rss-feeds-widget.php:73
|
61 |
-
#@ feedzy_rss_translate
|
62 |
-
msgid "Links may be opened in the same window or a new tab."
|
63 |
-
msgstr "Les liens peuvent être ouverts dans la même fenêtre ou dans un nouvel onglet."
|
64 |
-
|
65 |
-
#: feedzy-rss-feeds-ui-lang.php:24
|
66 |
-
#: feedzy-rss-feeds-widget.php:84
|
67 |
-
#@ feedzy_rss_translate
|
68 |
-
msgid "Trim the title of the item after X characters."
|
69 |
-
msgstr "Rogner le titre de l’élément après X caractères."
|
70 |
-
|
71 |
-
#: feedzy-rss-feeds-ui-lang.php:25
|
72 |
-
#: feedzy-rss-feeds-widget.php:89
|
73 |
-
#@ feedzy_rss_translate
|
74 |
-
msgid "Should we display the date of publication and the author name?"
|
75 |
-
msgstr "Doit-on afficher la date de publication ainsi que le nom de l’auteur de l’élément ?"
|
76 |
-
|
77 |
-
#: feedzy-rss-feeds-ui-lang.php:26
|
78 |
-
#: feedzy-rss-feeds-widget.php:93
|
79 |
-
#@ feedzy_rss_translate
|
80 |
-
msgid "Should we display a description (abstract) of the retrieved item?"
|
81 |
-
msgstr "Doit-on afficher la description (le résumé) de l’élément ?"
|
82 |
-
|
83 |
-
#: feedzy-rss-feeds-ui-lang.php:27
|
84 |
-
#: feedzy-rss-feeds-widget.php:96
|
85 |
-
#@ feedzy_rss_translate
|
86 |
-
msgid "Crop description (summary) of the element after X characters."
|
87 |
-
msgstr "Rogner la description (le résumé) de l’élément après X caractères."
|
88 |
-
|
89 |
-
#: feedzy-rss-feeds-ui-lang.php:28
|
90 |
-
#: feedzy-rss-feeds-widget.php:101
|
91 |
-
#@ feedzy_rss_translate
|
92 |
-
msgid "Should we display the first image of the content if it is available?"
|
93 |
-
msgstr "Doit-on afficher la première image du contenu si elle est disponible ?"
|
94 |
-
|
95 |
-
#: feedzy-rss-feeds-ui-lang.php:29
|
96 |
-
#: feedzy-rss-feeds-widget.php:104
|
97 |
-
#@ feedzy_rss_translate
|
98 |
-
msgid "Default thumbnail URL if no image is found."
|
99 |
-
msgstr "URL de la miniature par défaut si aucune image n’est trouvée."
|
100 |
-
|
101 |
-
#: feedzy-rss-feeds-ui-lang.php:30
|
102 |
-
#: feedzy-rss-feeds-widget.php:108
|
103 |
-
#@ feedzy_rss_translate
|
104 |
-
msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
|
105 |
-
msgstr "Dimensions de la miniature. Ne pas inclure “px”. Ex : 150"
|
106 |
-
|
107 |
-
#: feedzy-rss-feeds-ui-lang.php:31
|
108 |
-
#: feedzy-rss-feeds-widget.php:112
|
109 |
-
#@ feedzy_rss_translate
|
110 |
-
msgid "Only display item if title contains specific keyword(s) (comma-separated list/case sensitive)."
|
111 |
-
msgstr "Afficher un élément seulement si son titre contient l’un des mots clés spécifiés (liste séparée par des virgules/sensible à la case)"
|
112 |
-
|
113 |
-
#: feedzy-rss-feeds-ui-lang.php:32
|
114 |
-
#@ feedzy_rss_translate
|
115 |
-
msgid "Do not specify"
|
116 |
-
msgstr "Ne pas préciser"
|
117 |
-
|
118 |
-
#: feedzy-rss-feeds-ui-lang.php:33
|
119 |
-
#@ feedzy_rss_translate
|
120 |
-
msgid "No"
|
121 |
-
msgstr "Non"
|
122 |
-
|
123 |
-
#: feedzy-rss-feeds-ui-lang.php:34
|
124 |
-
#@ feedzy_rss_translate
|
125 |
-
msgid "Yes"
|
126 |
-
msgstr "Oui"
|
127 |
-
|
128 |
-
#: feedzy-rss-feeds-ui-lang.php:20
|
129 |
-
#: feedzy-rss-feeds-widget.php:65
|
130 |
-
#@ feedzy_rss_translate
|
131 |
-
msgid "The feed(s) URL (comma-separated list)."
|
132 |
-
msgstr "URL(s) du(des) flux RSS (liste séparée par des virgules)."
|
133 |
-
|
134 |
-
#: feedzy-rss-feeds-ui-lang.php:22
|
135 |
-
#@ feedzy_rss_translate
|
136 |
-
msgid "Should we display the RSS title?"
|
137 |
-
msgstr "Doit-on afficher le titre du flux RSS ?"
|
138 |
-
|
139 |
-
#. translators: plugin header field 'Name'
|
140 |
-
#: feedzy-rss-feed.php:0
|
141 |
-
#@ feedzy_rss_translate
|
142 |
-
msgid "FEEDZY RSS Feeds by b*web"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#. translators: plugin header field 'Description'
|
146 |
-
#: feedzy-rss-feed.php:0
|
147 |
-
#@ feedzy_rss_translate
|
148 |
-
msgid "FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes."
|
149 |
-
msgstr "FEEDZY RSS Feeds est un petit plugin léger, rapide et très simple d'utilisation qui vous permet d'agréger des flux RSS dans votre site WordPress grâce à des shortcodes entièrement paramétrables."
|
150 |
-
|
151 |
-
#. translators: plugin header field 'Author'
|
152 |
-
#: feedzy-rss-feed.php:0
|
153 |
-
#@ feedzy_rss_translate
|
154 |
-
msgid "Brice CAPOBIANCO"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#. translators: plugin header field 'AuthorURI'
|
158 |
-
#: feedzy-rss-feed.php:0
|
159 |
-
#@ feedzy_rss_translate
|
160 |
-
msgid "http://b-website.com/"
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#. translators: plugin header field 'PluginURI'
|
164 |
-
#: feedzy-rss-feed.php:0
|
165 |
-
#@ feedzy_rss_translate
|
166 |
-
msgid "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
167 |
-
msgstr "http://b-website.com/feedzy-rss-feeds-plugin-wordpress-gratuit-utilisant-simplepie"
|
168 |
-
|
169 |
-
#: feedzy-rss-feeds-widget.php:18
|
170 |
-
#@ feedzy_wp_widget
|
171 |
-
msgid "Feedzy RSS Feeds"
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#: feedzy-rss-feeds-widget.php:57
|
175 |
-
#@ feedzy_rss_translate
|
176 |
-
msgid "Widget Title"
|
177 |
-
msgstr "Titre du Widget"
|
178 |
-
|
179 |
-
#: feedzy-rss-feeds-widget.php:61
|
180 |
-
#@ feedzy_rss_translate
|
181 |
-
msgid "Intro text"
|
182 |
-
msgstr "Texte d'intro"
|
183 |
-
|
184 |
-
#: feedzy-rss-feed.php:39
|
185 |
-
#@ default
|
186 |
-
msgid "Donate to this plugin »"
|
187 |
-
msgstr ""
|
188 |
-
|
189 |
-
#. translators: plugin header field 'Version'
|
190 |
-
#: feedzy-rss-feed.php:0
|
191 |
-
#@ feedzy_rss_translate
|
192 |
-
msgid "2.2"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: feedzy-rss-feeds-shortcode.php:289
|
196 |
-
#@ feedzy_rss_translate
|
197 |
-
msgid "Posted"
|
198 |
-
msgstr "Posté"
|
199 |
-
|
200 |
-
#: feedzy-rss-feeds-shortcode.php:294
|
201 |
-
#@ feedzy_rss_translate
|
202 |
-
msgid "by"
|
203 |
-
msgstr "par"
|
204 |
-
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: FEEDZY RSS Feeds by b*web v2.2\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2015-01-13 19:51:14+0000\n"
|
7 |
+
"Last-Translator: superadminopl <brice.capobianco@openlog.fr>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: French\n"
|
15 |
+
"X-Poedit-Country: FRANCE\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: \n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: feedzy-rss-feeds-shortcode.php:120
|
24 |
+
#@ feedzy_rss_translate
|
25 |
+
msgid "Sorry, this feed is currently unavailable or does not exists anymore."
|
26 |
+
msgstr "Désolé, ce flux est actuellement indisponible ou n'existe plus."
|
27 |
+
|
28 |
+
#: feedzy-rss-feeds-shortcode.php:298
|
29 |
+
#@ feedzy_rss_translate
|
30 |
+
msgid "on"
|
31 |
+
msgstr "le"
|
32 |
+
|
33 |
+
#: feedzy-rss-feeds-shortcode.php:298
|
34 |
+
#@ feedzy_rss_translate
|
35 |
+
msgid "at"
|
36 |
+
msgstr "à"
|
37 |
+
|
38 |
+
#: feedzy-rss-feed.php:37
|
39 |
+
#@ feedzy_rss_translate
|
40 |
+
msgid "Documentation and examples"
|
41 |
+
msgstr "Documentation et exemples"
|
42 |
+
|
43 |
+
#: feedzy-rss-feed.php:38
|
44 |
+
#@ feedzy_rss_translate
|
45 |
+
msgid "More b*web Plugins"
|
46 |
+
msgstr "Plus de plugins b*web"
|
47 |
+
|
48 |
+
#: feedzy-rss-feeds-ui-lang.php:19
|
49 |
+
#@ feedzy_rss_translate
|
50 |
+
msgid "Insert FEEDZY RSS Feeds Shortcode"
|
51 |
+
msgstr "Insérer un shortcode FEEDZY RSS Feeds"
|
52 |
+
|
53 |
+
#: feedzy-rss-feeds-ui-lang.php:21
|
54 |
+
#: feedzy-rss-feeds-widget.php:69
|
55 |
+
#@ feedzy_rss_translate
|
56 |
+
msgid "Number of items to display."
|
57 |
+
msgstr "Nombre d’éléments à remonter."
|
58 |
+
|
59 |
+
#: feedzy-rss-feeds-ui-lang.php:23
|
60 |
+
#: feedzy-rss-feeds-widget.php:73
|
61 |
+
#@ feedzy_rss_translate
|
62 |
+
msgid "Links may be opened in the same window or a new tab."
|
63 |
+
msgstr "Les liens peuvent être ouverts dans la même fenêtre ou dans un nouvel onglet."
|
64 |
+
|
65 |
+
#: feedzy-rss-feeds-ui-lang.php:24
|
66 |
+
#: feedzy-rss-feeds-widget.php:84
|
67 |
+
#@ feedzy_rss_translate
|
68 |
+
msgid "Trim the title of the item after X characters."
|
69 |
+
msgstr "Rogner le titre de l’élément après X caractères."
|
70 |
+
|
71 |
+
#: feedzy-rss-feeds-ui-lang.php:25
|
72 |
+
#: feedzy-rss-feeds-widget.php:89
|
73 |
+
#@ feedzy_rss_translate
|
74 |
+
msgid "Should we display the date of publication and the author name?"
|
75 |
+
msgstr "Doit-on afficher la date de publication ainsi que le nom de l’auteur de l’élément ?"
|
76 |
+
|
77 |
+
#: feedzy-rss-feeds-ui-lang.php:26
|
78 |
+
#: feedzy-rss-feeds-widget.php:93
|
79 |
+
#@ feedzy_rss_translate
|
80 |
+
msgid "Should we display a description (abstract) of the retrieved item?"
|
81 |
+
msgstr "Doit-on afficher la description (le résumé) de l’élément ?"
|
82 |
+
|
83 |
+
#: feedzy-rss-feeds-ui-lang.php:27
|
84 |
+
#: feedzy-rss-feeds-widget.php:96
|
85 |
+
#@ feedzy_rss_translate
|
86 |
+
msgid "Crop description (summary) of the element after X characters."
|
87 |
+
msgstr "Rogner la description (le résumé) de l’élément après X caractères."
|
88 |
+
|
89 |
+
#: feedzy-rss-feeds-ui-lang.php:28
|
90 |
+
#: feedzy-rss-feeds-widget.php:101
|
91 |
+
#@ feedzy_rss_translate
|
92 |
+
msgid "Should we display the first image of the content if it is available?"
|
93 |
+
msgstr "Doit-on afficher la première image du contenu si elle est disponible ?"
|
94 |
+
|
95 |
+
#: feedzy-rss-feeds-ui-lang.php:29
|
96 |
+
#: feedzy-rss-feeds-widget.php:104
|
97 |
+
#@ feedzy_rss_translate
|
98 |
+
msgid "Default thumbnail URL if no image is found."
|
99 |
+
msgstr "URL de la miniature par défaut si aucune image n’est trouvée."
|
100 |
+
|
101 |
+
#: feedzy-rss-feeds-ui-lang.php:30
|
102 |
+
#: feedzy-rss-feeds-widget.php:108
|
103 |
+
#@ feedzy_rss_translate
|
104 |
+
msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
|
105 |
+
msgstr "Dimensions de la miniature. Ne pas inclure “px”. Ex : 150"
|
106 |
+
|
107 |
+
#: feedzy-rss-feeds-ui-lang.php:31
|
108 |
+
#: feedzy-rss-feeds-widget.php:112
|
109 |
+
#@ feedzy_rss_translate
|
110 |
+
msgid "Only display item if title contains specific keyword(s) (comma-separated list/case sensitive)."
|
111 |
+
msgstr "Afficher un élément seulement si son titre contient l’un des mots clés spécifiés (liste séparée par des virgules/sensible à la case)"
|
112 |
+
|
113 |
+
#: feedzy-rss-feeds-ui-lang.php:32
|
114 |
+
#@ feedzy_rss_translate
|
115 |
+
msgid "Do not specify"
|
116 |
+
msgstr "Ne pas préciser"
|
117 |
+
|
118 |
+
#: feedzy-rss-feeds-ui-lang.php:33
|
119 |
+
#@ feedzy_rss_translate
|
120 |
+
msgid "No"
|
121 |
+
msgstr "Non"
|
122 |
+
|
123 |
+
#: feedzy-rss-feeds-ui-lang.php:34
|
124 |
+
#@ feedzy_rss_translate
|
125 |
+
msgid "Yes"
|
126 |
+
msgstr "Oui"
|
127 |
+
|
128 |
+
#: feedzy-rss-feeds-ui-lang.php:20
|
129 |
+
#: feedzy-rss-feeds-widget.php:65
|
130 |
+
#@ feedzy_rss_translate
|
131 |
+
msgid "The feed(s) URL (comma-separated list)."
|
132 |
+
msgstr "URL(s) du(des) flux RSS (liste séparée par des virgules)."
|
133 |
+
|
134 |
+
#: feedzy-rss-feeds-ui-lang.php:22
|
135 |
+
#@ feedzy_rss_translate
|
136 |
+
msgid "Should we display the RSS title?"
|
137 |
+
msgstr "Doit-on afficher le titre du flux RSS ?"
|
138 |
+
|
139 |
+
#. translators: plugin header field 'Name'
|
140 |
+
#: feedzy-rss-feed.php:0
|
141 |
+
#@ feedzy_rss_translate
|
142 |
+
msgid "FEEDZY RSS Feeds by b*web"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#. translators: plugin header field 'Description'
|
146 |
+
#: feedzy-rss-feed.php:0
|
147 |
+
#@ feedzy_rss_translate
|
148 |
+
msgid "FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes."
|
149 |
+
msgstr "FEEDZY RSS Feeds est un petit plugin léger, rapide et très simple d'utilisation qui vous permet d'agréger des flux RSS dans votre site WordPress grâce à des shortcodes entièrement paramétrables."
|
150 |
+
|
151 |
+
#. translators: plugin header field 'Author'
|
152 |
+
#: feedzy-rss-feed.php:0
|
153 |
+
#@ feedzy_rss_translate
|
154 |
+
msgid "Brice CAPOBIANCO"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#. translators: plugin header field 'AuthorURI'
|
158 |
+
#: feedzy-rss-feed.php:0
|
159 |
+
#@ feedzy_rss_translate
|
160 |
+
msgid "http://b-website.com/"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#. translators: plugin header field 'PluginURI'
|
164 |
+
#: feedzy-rss-feed.php:0
|
165 |
+
#@ feedzy_rss_translate
|
166 |
+
msgid "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
167 |
+
msgstr "http://b-website.com/feedzy-rss-feeds-plugin-wordpress-gratuit-utilisant-simplepie"
|
168 |
+
|
169 |
+
#: feedzy-rss-feeds-widget.php:18
|
170 |
+
#@ feedzy_wp_widget
|
171 |
+
msgid "Feedzy RSS Feeds"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: feedzy-rss-feeds-widget.php:57
|
175 |
+
#@ feedzy_rss_translate
|
176 |
+
msgid "Widget Title"
|
177 |
+
msgstr "Titre du Widget"
|
178 |
+
|
179 |
+
#: feedzy-rss-feeds-widget.php:61
|
180 |
+
#@ feedzy_rss_translate
|
181 |
+
msgid "Intro text"
|
182 |
+
msgstr "Texte d'intro"
|
183 |
+
|
184 |
+
#: feedzy-rss-feed.php:39
|
185 |
+
#@ default
|
186 |
+
msgid "Donate to this plugin »"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#. translators: plugin header field 'Version'
|
190 |
+
#: feedzy-rss-feed.php:0
|
191 |
+
#@ feedzy_rss_translate
|
192 |
+
msgid "2.2"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: feedzy-rss-feeds-shortcode.php:289
|
196 |
+
#@ feedzy_rss_translate
|
197 |
+
msgid "Posted"
|
198 |
+
msgstr "Posté"
|
199 |
+
|
200 |
+
#: feedzy-rss-feeds-shortcode.php:294
|
201 |
+
#@ feedzy_rss_translate
|
202 |
+
msgid "by"
|
203 |
+
msgstr "par"
|
204 |
+
|
langs/feedzy_rss_translate-sr_RS.po
CHANGED
@@ -1,204 +1,204 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: FEEDZY RSS Feeds by b*web v2.2.1\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2015-01-13 19:54:39+0000\n"
|
7 |
-
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
-
"Language-Team: \n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
-
"X-Generator: Poedit 1.5.4\n"
|
14 |
-
"X-Poedit-Language: \n"
|
15 |
-
"X-Poedit-Country: \n"
|
16 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
-
"X-Poedit-Basepath: \n"
|
19 |
-
"X-Poedit-Bookmarks: \n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
"X-Textdomain-Support: yes"
|
22 |
-
|
23 |
-
#: feedzy-rss-feeds-shortcode.php:120
|
24 |
-
#@ feedzy_rss_translate
|
25 |
-
msgid "Sorry, this feed is currently unavailable or does not exists anymore."
|
26 |
-
msgstr "Žao nam je, ovo polje trenutno nije dostupno ili više ne postoji."
|
27 |
-
|
28 |
-
#: feedzy-rss-feeds-shortcode.php:298
|
29 |
-
#@ feedzy_rss_translate
|
30 |
-
msgid "on"
|
31 |
-
msgstr "na"
|
32 |
-
|
33 |
-
#: feedzy-rss-feeds-shortcode.php:298
|
34 |
-
#@ feedzy_rss_translate
|
35 |
-
msgid "at"
|
36 |
-
msgstr "u"
|
37 |
-
|
38 |
-
#: feedzy-rss-feed.php:37
|
39 |
-
#@ feedzy_rss_translate
|
40 |
-
msgid "Documentation and examples"
|
41 |
-
msgstr "Dokumentacija i primeri"
|
42 |
-
|
43 |
-
#: feedzy-rss-feed.php:38
|
44 |
-
#@ feedzy_rss_translate
|
45 |
-
msgid "More b*web Plugins"
|
46 |
-
msgstr "Više b*web Plugin-ova"
|
47 |
-
|
48 |
-
#: feedzy-rss-feeds-ui-lang.php:19
|
49 |
-
#@ feedzy_rss_translate
|
50 |
-
msgid "Insert FEEDZY RSS Feeds Shortcode"
|
51 |
-
msgstr "Unesite FEEDZY RSS Feeds Shortcode"
|
52 |
-
|
53 |
-
#: feedzy-rss-feeds-ui-lang.php:21
|
54 |
-
#: feedzy-rss-feeds-widget.php:69
|
55 |
-
#@ feedzy_rss_translate
|
56 |
-
msgid "Number of items to display."
|
57 |
-
msgstr "Broj stavki za prikazivanje"
|
58 |
-
|
59 |
-
#: feedzy-rss-feeds-ui-lang.php:23
|
60 |
-
#: feedzy-rss-feeds-widget.php:73
|
61 |
-
#@ feedzy_rss_translate
|
62 |
-
msgid "Links may be opened in the same window or a new tab."
|
63 |
-
msgstr "Linkovi mogu biti otvoreni u istom prozoru ili u novom tabulatoru."
|
64 |
-
|
65 |
-
#: feedzy-rss-feeds-ui-lang.php:24
|
66 |
-
#: feedzy-rss-feeds-widget.php:84
|
67 |
-
#@ feedzy_rss_translate
|
68 |
-
msgid "Trim the title of the item after X characters."
|
69 |
-
msgstr "Skratite naslov stavke posle X karaktera."
|
70 |
-
|
71 |
-
#: feedzy-rss-feeds-ui-lang.php:25
|
72 |
-
#: feedzy-rss-feeds-widget.php:89
|
73 |
-
#@ feedzy_rss_translate
|
74 |
-
msgid "Should we display the date of publication and the author name?"
|
75 |
-
msgstr "Treba li da prikažemo datum publikacije i ime autora?"
|
76 |
-
|
77 |
-
#: feedzy-rss-feeds-ui-lang.php:26
|
78 |
-
#: feedzy-rss-feeds-widget.php:93
|
79 |
-
#@ feedzy_rss_translate
|
80 |
-
msgid "Should we display a description (abstract) of the retrieved item?"
|
81 |
-
msgstr "Treba li da prikažemo opis (siže) dobavljene stavke?"
|
82 |
-
|
83 |
-
#: feedzy-rss-feeds-ui-lang.php:27
|
84 |
-
#: feedzy-rss-feeds-widget.php:96
|
85 |
-
#@ feedzy_rss_translate
|
86 |
-
msgid "Crop description (summary) of the element after X characters."
|
87 |
-
msgstr "Kropuj opis (siže) elementa posle X karaktera."
|
88 |
-
|
89 |
-
#: feedzy-rss-feeds-ui-lang.php:28
|
90 |
-
#: feedzy-rss-feeds-widget.php:101
|
91 |
-
#@ feedzy_rss_translate
|
92 |
-
msgid "Should we display the first image of the content if it is available?"
|
93 |
-
msgstr "Treba li da prikažemo prvu sliku sadržaja ako je raspoloživa?"
|
94 |
-
|
95 |
-
#: feedzy-rss-feeds-ui-lang.php:29
|
96 |
-
#: feedzy-rss-feeds-widget.php:104
|
97 |
-
#@ feedzy_rss_translate
|
98 |
-
msgid "Default thumbnail URL if no image is found."
|
99 |
-
msgstr "URL podrazumevane sličice ako nije pronađena nijedna slika."
|
100 |
-
|
101 |
-
#: feedzy-rss-feeds-ui-lang.php:30
|
102 |
-
#: feedzy-rss-feeds-widget.php:108
|
103 |
-
#@ feedzy_rss_translate
|
104 |
-
msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
|
105 |
-
msgstr "Dimenzije sličice. Nemojte unositi \"px\". Npr. 150"
|
106 |
-
|
107 |
-
#: feedzy-rss-feeds-ui-lang.php:31
|
108 |
-
#: feedzy-rss-feeds-widget.php:112
|
109 |
-
#@ feedzy_rss_translate
|
110 |
-
msgid "Only display item if title contains specific keyword(s) (comma-separated list/case sensitive)."
|
111 |
-
msgstr "Prikaži stavku samo ako naslov sadrži specifične ključne reči (odvojene zarezima/osetljive na velika i mala slova)."
|
112 |
-
|
113 |
-
#: feedzy-rss-feeds-ui-lang.php:32
|
114 |
-
#@ feedzy_rss_translate
|
115 |
-
msgid "Do not specify"
|
116 |
-
msgstr "Nemoj određivati"
|
117 |
-
|
118 |
-
#: feedzy-rss-feeds-ui-lang.php:33
|
119 |
-
#@ feedzy_rss_translate
|
120 |
-
msgid "No"
|
121 |
-
msgstr "Ne"
|
122 |
-
|
123 |
-
#: feedzy-rss-feeds-ui-lang.php:34
|
124 |
-
#@ feedzy_rss_translate
|
125 |
-
msgid "Yes"
|
126 |
-
msgstr "Da"
|
127 |
-
|
128 |
-
#: feedzy-rss-feeds-ui-lang.php:20
|
129 |
-
#: feedzy-rss-feeds-widget.php:65
|
130 |
-
#@ feedzy_rss_translate
|
131 |
-
msgid "The feed(s) URL (comma-separated list)."
|
132 |
-
msgstr "URL feed-ova (odvojenih zarezima ako je lista)."
|
133 |
-
|
134 |
-
#: feedzy-rss-feeds-ui-lang.php:22
|
135 |
-
#@ feedzy_rss_translate
|
136 |
-
msgid "Should we display the RSS title?"
|
137 |
-
msgstr "Treba li da prikažemo RSS naslov?"
|
138 |
-
|
139 |
-
#. translators: plugin header field 'Name'
|
140 |
-
#: feedzy-rss-feed.php:0
|
141 |
-
#@ feedzy_rss_translate
|
142 |
-
msgid "FEEDZY RSS Feeds by b*web"
|
143 |
-
msgstr "FEEDZY RSS Feeds, autor b*web"
|
144 |
-
|
145 |
-
#. translators: plugin header field 'Description'
|
146 |
-
#: feedzy-rss-feed.php:0
|
147 |
-
#@ feedzy_rss_translate
|
148 |
-
msgid "FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes."
|
149 |
-
msgstr "FEEDZY RSS Feeds je mali i lagan plugin. Brz i jednostavan za upotrebu, sakuplja RSS feed-ove na vaš WordPress site uz pomoć jednostavnih shortcode-ova."
|
150 |
-
|
151 |
-
#. translators: plugin header field 'Author'
|
152 |
-
#: feedzy-rss-feed.php:0
|
153 |
-
#@ feedzy_rss_translate
|
154 |
-
msgid "Brice CAPOBIANCO"
|
155 |
-
msgstr "Brice CAPOBIANCO"
|
156 |
-
|
157 |
-
#. translators: plugin header field 'AuthorURI'
|
158 |
-
#: feedzy-rss-feed.php:0
|
159 |
-
#@ feedzy_rss_translate
|
160 |
-
msgid "http://b-website.com/"
|
161 |
-
msgstr "http://b-website.com/"
|
162 |
-
|
163 |
-
#. translators: plugin header field 'PluginURI'
|
164 |
-
#: feedzy-rss-feed.php:0
|
165 |
-
#@ feedzy_rss_translate
|
166 |
-
msgid "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
167 |
-
msgstr "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
168 |
-
|
169 |
-
#. translators: plugin header field 'Version'
|
170 |
-
#: feedzy-rss-feed.php:0
|
171 |
-
#@ feedzy_rss_translate
|
172 |
-
msgid "2.2.1"
|
173 |
-
msgstr ""
|
174 |
-
|
175 |
-
#: feedzy-rss-feed.php:39
|
176 |
-
#@ default
|
177 |
-
msgid "Donate to this plugin »"
|
178 |
-
msgstr ""
|
179 |
-
|
180 |
-
#: feedzy-rss-feeds-shortcode.php:289
|
181 |
-
#@ feedzy_rss_translate
|
182 |
-
msgid "Posted"
|
183 |
-
msgstr "Objavljeno"
|
184 |
-
|
185 |
-
#: feedzy-rss-feeds-shortcode.php:294
|
186 |
-
#@ feedzy_rss_translate
|
187 |
-
msgid "by"
|
188 |
-
msgstr "po"
|
189 |
-
|
190 |
-
#: feedzy-rss-feeds-widget.php:18
|
191 |
-
#@ feedzy_wp_widget
|
192 |
-
msgid "Feedzy RSS Feeds"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: feedzy-rss-feeds-widget.php:57
|
196 |
-
#@ feedzy_rss_translate
|
197 |
-
msgid "Widget Title"
|
198 |
-
msgstr "dodatak Naslov"
|
199 |
-
|
200 |
-
#: feedzy-rss-feeds-widget.php:61
|
201 |
-
#@ feedzy_rss_translate
|
202 |
-
msgid "Intro text"
|
203 |
-
msgstr "Uvodni tekst"
|
204 |
-
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: FEEDZY RSS Feeds by b*web v2.2.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2015-01-13 19:54:39+0000\n"
|
7 |
+
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: Poedit 1.5.4\n"
|
14 |
+
"X-Poedit-Language: \n"
|
15 |
+
"X-Poedit-Country: \n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: \n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: feedzy-rss-feeds-shortcode.php:120
|
24 |
+
#@ feedzy_rss_translate
|
25 |
+
msgid "Sorry, this feed is currently unavailable or does not exists anymore."
|
26 |
+
msgstr "Žao nam je, ovo polje trenutno nije dostupno ili više ne postoji."
|
27 |
+
|
28 |
+
#: feedzy-rss-feeds-shortcode.php:298
|
29 |
+
#@ feedzy_rss_translate
|
30 |
+
msgid "on"
|
31 |
+
msgstr "na"
|
32 |
+
|
33 |
+
#: feedzy-rss-feeds-shortcode.php:298
|
34 |
+
#@ feedzy_rss_translate
|
35 |
+
msgid "at"
|
36 |
+
msgstr "u"
|
37 |
+
|
38 |
+
#: feedzy-rss-feed.php:37
|
39 |
+
#@ feedzy_rss_translate
|
40 |
+
msgid "Documentation and examples"
|
41 |
+
msgstr "Dokumentacija i primeri"
|
42 |
+
|
43 |
+
#: feedzy-rss-feed.php:38
|
44 |
+
#@ feedzy_rss_translate
|
45 |
+
msgid "More b*web Plugins"
|
46 |
+
msgstr "Više b*web Plugin-ova"
|
47 |
+
|
48 |
+
#: feedzy-rss-feeds-ui-lang.php:19
|
49 |
+
#@ feedzy_rss_translate
|
50 |
+
msgid "Insert FEEDZY RSS Feeds Shortcode"
|
51 |
+
msgstr "Unesite FEEDZY RSS Feeds Shortcode"
|
52 |
+
|
53 |
+
#: feedzy-rss-feeds-ui-lang.php:21
|
54 |
+
#: feedzy-rss-feeds-widget.php:69
|
55 |
+
#@ feedzy_rss_translate
|
56 |
+
msgid "Number of items to display."
|
57 |
+
msgstr "Broj stavki za prikazivanje"
|
58 |
+
|
59 |
+
#: feedzy-rss-feeds-ui-lang.php:23
|
60 |
+
#: feedzy-rss-feeds-widget.php:73
|
61 |
+
#@ feedzy_rss_translate
|
62 |
+
msgid "Links may be opened in the same window or a new tab."
|
63 |
+
msgstr "Linkovi mogu biti otvoreni u istom prozoru ili u novom tabulatoru."
|
64 |
+
|
65 |
+
#: feedzy-rss-feeds-ui-lang.php:24
|
66 |
+
#: feedzy-rss-feeds-widget.php:84
|
67 |
+
#@ feedzy_rss_translate
|
68 |
+
msgid "Trim the title of the item after X characters."
|
69 |
+
msgstr "Skratite naslov stavke posle X karaktera."
|
70 |
+
|
71 |
+
#: feedzy-rss-feeds-ui-lang.php:25
|
72 |
+
#: feedzy-rss-feeds-widget.php:89
|
73 |
+
#@ feedzy_rss_translate
|
74 |
+
msgid "Should we display the date of publication and the author name?"
|
75 |
+
msgstr "Treba li da prikažemo datum publikacije i ime autora?"
|
76 |
+
|
77 |
+
#: feedzy-rss-feeds-ui-lang.php:26
|
78 |
+
#: feedzy-rss-feeds-widget.php:93
|
79 |
+
#@ feedzy_rss_translate
|
80 |
+
msgid "Should we display a description (abstract) of the retrieved item?"
|
81 |
+
msgstr "Treba li da prikažemo opis (siže) dobavljene stavke?"
|
82 |
+
|
83 |
+
#: feedzy-rss-feeds-ui-lang.php:27
|
84 |
+
#: feedzy-rss-feeds-widget.php:96
|
85 |
+
#@ feedzy_rss_translate
|
86 |
+
msgid "Crop description (summary) of the element after X characters."
|
87 |
+
msgstr "Kropuj opis (siže) elementa posle X karaktera."
|
88 |
+
|
89 |
+
#: feedzy-rss-feeds-ui-lang.php:28
|
90 |
+
#: feedzy-rss-feeds-widget.php:101
|
91 |
+
#@ feedzy_rss_translate
|
92 |
+
msgid "Should we display the first image of the content if it is available?"
|
93 |
+
msgstr "Treba li da prikažemo prvu sliku sadržaja ako je raspoloživa?"
|
94 |
+
|
95 |
+
#: feedzy-rss-feeds-ui-lang.php:29
|
96 |
+
#: feedzy-rss-feeds-widget.php:104
|
97 |
+
#@ feedzy_rss_translate
|
98 |
+
msgid "Default thumbnail URL if no image is found."
|
99 |
+
msgstr "URL podrazumevane sličice ako nije pronađena nijedna slika."
|
100 |
+
|
101 |
+
#: feedzy-rss-feeds-ui-lang.php:30
|
102 |
+
#: feedzy-rss-feeds-widget.php:108
|
103 |
+
#@ feedzy_rss_translate
|
104 |
+
msgid "Thumblails dimension. Do not include \"px\". Eg: 150"
|
105 |
+
msgstr "Dimenzije sličice. Nemojte unositi \"px\". Npr. 150"
|
106 |
+
|
107 |
+
#: feedzy-rss-feeds-ui-lang.php:31
|
108 |
+
#: feedzy-rss-feeds-widget.php:112
|
109 |
+
#@ feedzy_rss_translate
|
110 |
+
msgid "Only display item if title contains specific keyword(s) (comma-separated list/case sensitive)."
|
111 |
+
msgstr "Prikaži stavku samo ako naslov sadrži specifične ključne reči (odvojene zarezima/osetljive na velika i mala slova)."
|
112 |
+
|
113 |
+
#: feedzy-rss-feeds-ui-lang.php:32
|
114 |
+
#@ feedzy_rss_translate
|
115 |
+
msgid "Do not specify"
|
116 |
+
msgstr "Nemoj određivati"
|
117 |
+
|
118 |
+
#: feedzy-rss-feeds-ui-lang.php:33
|
119 |
+
#@ feedzy_rss_translate
|
120 |
+
msgid "No"
|
121 |
+
msgstr "Ne"
|
122 |
+
|
123 |
+
#: feedzy-rss-feeds-ui-lang.php:34
|
124 |
+
#@ feedzy_rss_translate
|
125 |
+
msgid "Yes"
|
126 |
+
msgstr "Da"
|
127 |
+
|
128 |
+
#: feedzy-rss-feeds-ui-lang.php:20
|
129 |
+
#: feedzy-rss-feeds-widget.php:65
|
130 |
+
#@ feedzy_rss_translate
|
131 |
+
msgid "The feed(s) URL (comma-separated list)."
|
132 |
+
msgstr "URL feed-ova (odvojenih zarezima ako je lista)."
|
133 |
+
|
134 |
+
#: feedzy-rss-feeds-ui-lang.php:22
|
135 |
+
#@ feedzy_rss_translate
|
136 |
+
msgid "Should we display the RSS title?"
|
137 |
+
msgstr "Treba li da prikažemo RSS naslov?"
|
138 |
+
|
139 |
+
#. translators: plugin header field 'Name'
|
140 |
+
#: feedzy-rss-feed.php:0
|
141 |
+
#@ feedzy_rss_translate
|
142 |
+
msgid "FEEDZY RSS Feeds by b*web"
|
143 |
+
msgstr "FEEDZY RSS Feeds, autor b*web"
|
144 |
+
|
145 |
+
#. translators: plugin header field 'Description'
|
146 |
+
#: feedzy-rss-feed.php:0
|
147 |
+
#@ feedzy_rss_translate
|
148 |
+
msgid "FEEDZY RSS Feeds is a small and lightweight plugin. Fast and easy to use, it aggregates RSS feeds into your WordPress site through simple shortcodes."
|
149 |
+
msgstr "FEEDZY RSS Feeds je mali i lagan plugin. Brz i jednostavan za upotrebu, sakuplja RSS feed-ove na vaš WordPress site uz pomoć jednostavnih shortcode-ova."
|
150 |
+
|
151 |
+
#. translators: plugin header field 'Author'
|
152 |
+
#: feedzy-rss-feed.php:0
|
153 |
+
#@ feedzy_rss_translate
|
154 |
+
msgid "Brice CAPOBIANCO"
|
155 |
+
msgstr "Brice CAPOBIANCO"
|
156 |
+
|
157 |
+
#. translators: plugin header field 'AuthorURI'
|
158 |
+
#: feedzy-rss-feed.php:0
|
159 |
+
#@ feedzy_rss_translate
|
160 |
+
msgid "http://b-website.com/"
|
161 |
+
msgstr "http://b-website.com/"
|
162 |
+
|
163 |
+
#. translators: plugin header field 'PluginURI'
|
164 |
+
#: feedzy-rss-feed.php:0
|
165 |
+
#@ feedzy_rss_translate
|
166 |
+
msgid "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
167 |
+
msgstr "http://b-website.com/feedzy-rss-feeds-wordpress-plugin-using-simplepie"
|
168 |
+
|
169 |
+
#. translators: plugin header field 'Version'
|
170 |
+
#: feedzy-rss-feed.php:0
|
171 |
+
#@ feedzy_rss_translate
|
172 |
+
msgid "2.2.1"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: feedzy-rss-feed.php:39
|
176 |
+
#@ default
|
177 |
+
msgid "Donate to this plugin »"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: feedzy-rss-feeds-shortcode.php:289
|
181 |
+
#@ feedzy_rss_translate
|
182 |
+
msgid "Posted"
|
183 |
+
msgstr "Objavljeno"
|
184 |
+
|
185 |
+
#: feedzy-rss-feeds-shortcode.php:294
|
186 |
+
#@ feedzy_rss_translate
|
187 |
+
msgid "by"
|
188 |
+
msgstr "po"
|
189 |
+
|
190 |
+
#: feedzy-rss-feeds-widget.php:18
|
191 |
+
#@ feedzy_wp_widget
|
192 |
+
msgid "Feedzy RSS Feeds"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: feedzy-rss-feeds-widget.php:57
|
196 |
+
#@ feedzy_rss_translate
|
197 |
+
msgid "Widget Title"
|
198 |
+
msgstr "dodatak Naslov"
|
199 |
+
|
200 |
+
#: feedzy-rss-feeds-widget.php:61
|
201 |
+
#@ feedzy_rss_translate
|
202 |
+
msgid "Intro text"
|
203 |
+
msgstr "Uvodni tekst"
|
204 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 2.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -105,6 +105,12 @@ Yes it is.
|
|
105 |
|
106 |
== Changelog ==
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
= 2.4 =
|
109 |
* New feature: 'auto' thumbs option added
|
110 |
* New hook: feedzy_thumb_sizes
|
4 |
Tags: RSS, SimplePie, shortcode, feed, thumbnail, image, rss feeds, aggregator, tinyMCE, WYSIWYG, MCE, UI, flux, plugin, WordPress, widget, importer, XML, ATOM, API, parser
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 2.4.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 2.4.1 =
|
109 |
+
* Fix an issue on img url encode
|
110 |
+
* Retrive img url in url parameters
|
111 |
+
* Fix minor PHP warning
|
112 |
+
* New hook: feedzy_add_classes_item
|
113 |
+
|
114 |
= 2.4 =
|
115 |
* New feature: 'auto' thumbs option added
|
116 |
* New hook: feedzy_thumb_sizes
|