Version Description
Updated the language .pot file. A few new text items have been added and some modified. Fixed location searches that contain commas
Download this release
Release Info
Developer | halgatewood |
Plugin | Awesome Weather Widget |
Version | 1.5.7 |
Comparing to | |
See all releases |
Code changes from version 1.5.6.2 to 1.5.7
- awesome-weather-settings.php +3 -2
- awesome-weather-widget.js → awesome-weather-widget-admin.js +0 -0
- awesome-weather.php +62 -290
- languages/awesome-weather-ar.mo +0 -0
- languages/awesome-weather-ar.po +198 -86
- languages/awesome-weather-de_DE.mo +0 -0
- languages/awesome-weather-de_DE.po +193 -85
- languages/awesome-weather-el.mo +0 -0
- languages/awesome-weather-el.po +324 -212
- languages/awesome-weather-es_ES.mo +0 -0
- languages/awesome-weather-es_ES.po +322 -216
- languages/awesome-weather-fi.mo +0 -0
- languages/awesome-weather-fi.po +324 -216
- languages/awesome-weather-fr_FR.mo +0 -0
- languages/awesome-weather-fr_FR.po +320 -212
- languages/awesome-weather-hr.mo +0 -0
- languages/awesome-weather-hr.po +325 -215
- languages/awesome-weather-hu_HU.mo +0 -0
- languages/awesome-weather-hu_HU.po +324 -214
- languages/awesome-weather-it_IT.mo +0 -0
- languages/awesome-weather-it_IT.po +324 -217
- languages/awesome-weather-nl_NL.mo +0 -0
- languages/awesome-weather-nl_NL.po +197 -85
- languages/awesome-weather-pl_PL.mo +0 -0
- languages/awesome-weather-pl_PL.po +325 -213
- languages/awesome-weather-pt_PT.mo +0 -0
- languages/awesome-weather-pt_PT.po +322 -211
- languages/awesome-weather-ru_RU.mo +0 -0
- languages/awesome-weather-ru_RU.po +321 -215
- languages/awesome-weather-sv_SE.mo +0 -0
- languages/awesome-weather-sv_SE.po +324 -216
- languages/awesome-weather-tr_TR.mo +0 -0
- languages/awesome-weather-tr_TR.po +324 -240
- languages/awesome-weather.pot +64 -68
- readme.txt +13 -11
- widget.php +224 -0
awesome-weather-settings.php
CHANGED
@@ -35,7 +35,7 @@ function awesome_weather_page()
|
|
35 |
// SET SETTINGS LINK ON PLUGIN PAGE
|
36 |
function awesome_weather_plugin_action_links( $links, $file )
|
37 |
{
|
38 |
-
$appid = apply_filters('awesome_weather_appid',
|
39 |
|
40 |
if( $appid )
|
41 |
{
|
@@ -45,6 +45,7 @@ function awesome_weather_plugin_action_links( $links, $file )
|
|
45 |
{
|
46 |
$settings_link = '<a href="' . admin_url( 'options-general.php?page=awesome-weather' ) . '">' . esc_html__( 'API Key Required', 'awesome-weather' ) . '</a>';
|
47 |
}
|
|
|
48 |
if( $file == 'awesome-weather/awesome-weather.php' ) array_unshift( $links, $settings_link );
|
49 |
|
50 |
$donate_link = '<a href="https://halgatewood.com/donate" target="_blank">' . esc_html__( 'Donate', 'awesome-weather' ) . '</a>';
|
@@ -109,7 +110,7 @@ function awesome_weather_openweather_key()
|
|
109 |
$setting = esc_attr( apply_filters('awesome_weather_appid', get_option( 'open-weather-key' )) );
|
110 |
echo "<input type='text' name='open-weather-key' value='$setting' style='width:70%;' />";
|
111 |
echo "<p>";
|
112 |
-
echo __("As of October 2015,
|
113 |
echo " <a href='http://openweathermap.org/appid' target='_blank'>";
|
114 |
echo __('Get your APPID', 'awesome-weather');
|
115 |
echo "</a>";
|
35 |
// SET SETTINGS LINK ON PLUGIN PAGE
|
36 |
function awesome_weather_plugin_action_links( $links, $file )
|
37 |
{
|
38 |
+
$appid = apply_filters( 'awesome_weather_appid', awe_get_appid() );
|
39 |
|
40 |
if( $appid )
|
41 |
{
|
45 |
{
|
46 |
$settings_link = '<a href="' . admin_url( 'options-general.php?page=awesome-weather' ) . '">' . esc_html__( 'API Key Required', 'awesome-weather' ) . '</a>';
|
47 |
}
|
48 |
+
|
49 |
if( $file == 'awesome-weather/awesome-weather.php' ) array_unshift( $links, $settings_link );
|
50 |
|
51 |
$donate_link = '<a href="https://halgatewood.com/donate" target="_blank">' . esc_html__( 'Donate', 'awesome-weather' ) . '</a>';
|
110 |
$setting = esc_attr( apply_filters('awesome_weather_appid', get_option( 'open-weather-key' )) );
|
111 |
echo "<input type='text' name='open-weather-key' value='$setting' style='width:70%;' />";
|
112 |
echo "<p>";
|
113 |
+
echo __("As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data.", 'awesome-weather');
|
114 |
echo " <a href='http://openweathermap.org/appid' target='_blank'>";
|
115 |
echo __('Get your APPID', 'awesome-weather');
|
116 |
echo "</a>";
|
awesome-weather-widget.js → awesome-weather-widget-admin.js
RENAMED
File without changes
|
awesome-weather.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://halgatewood.com/awesome-weather
|
|
5 |
Description: A weather widget that actually looks cool
|
6 |
Author: Hal Gatewood
|
7 |
Author URI: https://www.halgatewood.com
|
8 |
-
Version: 1.5.
|
9 |
Text Domain: awesome-weather
|
10 |
Domain Path: /languages
|
11 |
|
@@ -112,18 +112,18 @@ function awesome_weather_logic( $atts )
|
|
112 |
//FIND AND CACHE CITY ID
|
113 |
if( $owm_city_id )
|
114 |
{
|
115 |
-
$city_name_slug = sanitize_title( $location )
|
116 |
$api_query = "id=" . $owm_city_id;
|
117 |
}
|
118 |
else if( is_numeric($location) )
|
119 |
{
|
120 |
-
$city_name_slug = sanitize_title( $location )
|
121 |
-
$api_query = "id=" . $location;
|
122 |
}
|
123 |
else
|
124 |
{
|
125 |
$city_name_slug = sanitize_title( $location );
|
126 |
-
$api_query = "q=" . $location;
|
127 |
}
|
128 |
|
129 |
|
@@ -159,7 +159,7 @@ function awesome_weather_logic( $atts )
|
|
159 |
// NOW
|
160 |
$now_ping = "http://api.openweathermap.org/data/2.5/weather?" . $api_query . "&lang=" . $locale . "&units=" . $units . $appid_string;
|
161 |
$now_ping_get = wp_remote_get( $now_ping );
|
162 |
-
|
163 |
|
164 |
// PING URL ERROR
|
165 |
if( is_wp_error( $now_ping_get ) ) return awesome_weather_error( $now_ping_get->get_error_message() );
|
@@ -183,7 +183,7 @@ function awesome_weather_logic( $atts )
|
|
183 |
{
|
184 |
$forecast_ping = "http://api.openweathermap.org/data/2.5/forecast/daily?" . $api_query . "&lang=" . $locale . "&units=" . $units ."&cnt=7" . $appid_string;
|
185 |
$forecast_ping_get = wp_remote_get( $forecast_ping );
|
186 |
-
|
187 |
if( is_wp_error( $forecast_ping_get ) )
|
188 |
{
|
189 |
return awesome_weather_error( $forecast_ping_get->get_error_message() );
|
@@ -203,22 +203,23 @@ function awesome_weather_logic( $atts )
|
|
203 |
|
204 |
if($weather_data['now'] OR $weather_data['forecast'])
|
205 |
{
|
206 |
-
// SET THE TRANSIENT, CACHE FOR A LITTLE OVER THREE HOURS
|
207 |
set_transient( $weather_transient_name, $weather_data, apply_filters( 'awesome_weather_cache', 1800 ) );
|
208 |
}
|
209 |
}
|
210 |
-
|
211 |
-
|
212 |
|
213 |
// NO WEATHER
|
214 |
if( !$weather_data OR !isset($weather_data['now'])) return awesome_weather_error();
|
215 |
|
|
|
216 |
|
217 |
// TODAYS TEMPS
|
218 |
$today = $weather_data['now'];
|
219 |
-
$today_temp = round($today->main->temp);
|
220 |
-
$today_high = round($today->main->temp_max);
|
221 |
-
$today_low = round($today->main->temp_min);
|
|
|
222 |
|
223 |
// TEXT COLOR
|
224 |
if( substr(trim($text_color), 0, 1) != "#" ) $text_color = "#" . $text_color;
|
@@ -237,7 +238,7 @@ function awesome_weather_logic( $atts )
|
|
237 |
$inline_style .= " background-color: {$custom_bg_color}; ";
|
238 |
$background_classes[] = "awe_custom";
|
239 |
}
|
240 |
-
else
|
241 |
{
|
242 |
// COLOR OF WIDGET
|
243 |
if($units == "imperial")
|
@@ -265,13 +266,14 @@ function awesome_weather_logic( $atts )
|
|
265 |
// DATA
|
266 |
$header_title = $override_title ? $override_title : $today->name;
|
267 |
|
268 |
-
$today->main->humidity = round($today->main->humidity);
|
269 |
-
$today->wind->speed = round($today->wind->speed);
|
270 |
|
|
|
271 |
$wind_label = array ( __('N', 'awesome-weather'), __('NNE', 'awesome-weather'), __('NE', 'awesome-weather'), __('ENE', 'awesome-weather'), __('E', 'awesome-weather'), __('ESE', 'awesome-weather'), __('SE', 'awesome-weather'), __('SSE', 'awesome-weather'), __('S', 'awesome-weather'), __('SSW', 'awesome-weather'), __('SW', 'awesome-weather'), __('WSW', 'awesome-weather'), __('W', 'awesome-weather'), __('WNW', 'awesome-weather'), __('NW', 'awesome-weather'), __('NNW', 'awesome-weather') );
|
272 |
|
273 |
-
$wind_direction =
|
274 |
-
|
|
|
|
|
275 |
$background_classes[] = ($show_stats) ? "awe_with_stats" : "awe_without_stats";
|
276 |
|
277 |
|
@@ -343,24 +345,26 @@ function awesome_weather_logic( $atts )
|
|
343 |
if( !$background_by_weather) $rtn .= "<div class=\"awesome-weather-darken\">";
|
344 |
}
|
345 |
|
346 |
-
$rtn .= "
|
347 |
-
|
348 |
-
<div class=\"awesome-weather-current-temp\">
|
349 |
-
<strong>$today_temp<sup>{$units_display_symbol}</sup></strong>
|
350 |
-
</div><!-- /.awesome-weather-current-temp -->";
|
351 |
|
352 |
-
if($show_stats)
|
353 |
{
|
354 |
-
$wind_speed = (
|
355 |
-
|
356 |
-
|
357 |
-
$
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
|
|
|
|
|
|
|
|
|
|
364 |
}
|
365 |
|
366 |
if($days_to_show != "hide")
|
@@ -370,20 +374,18 @@ function awesome_weather_logic( $atts )
|
|
370 |
$dt_today = date( 'Ymd', current_time( 'timestamp', 0 ) );
|
371 |
$forecast = $weather_data['forecast'];
|
372 |
$days_to_show = (int) $days_to_show;
|
|
|
373 |
|
374 |
foreach( (array) $forecast->list as $forecast )
|
375 |
{
|
376 |
if( $dt_today >= date('Ymd', $forecast->dt)) continue;
|
377 |
-
$days_of_week = array( __('Sun' ,'awesome-weather'), __('Mon' ,'awesome-weather'), __('Tue' ,'awesome-weather'), __('Wed' ,'awesome-weather'), __('Thu' ,'awesome-weather'), __('Fri' ,'awesome-weather'), __('Sat' ,'awesome-weather') );
|
378 |
-
|
379 |
$forecast->temp = (int) $forecast->temp->day;
|
380 |
$day_of_week = $days_of_week[ date('w', $forecast->dt) ];
|
381 |
$rtn .= "
|
382 |
<div class=\"awesome-weather-forecast-day\">
|
383 |
<div class=\"awesome-weather-forecast-day-temp\">{$forecast->temp}<sup>{$units_display_symbol}</sup></div>
|
384 |
-
<div class=\"awesome-weather-forecast-day-abbr\"
|
385 |
-
</div>
|
386 |
-
";
|
387 |
if($c == $days_to_show) break;
|
388 |
$c++;
|
389 |
}
|
@@ -392,17 +394,17 @@ function awesome_weather_logic( $atts )
|
|
392 |
|
393 |
if($show_link AND isset($today->id))
|
394 |
{
|
395 |
-
$show_link_text
|
396 |
-
|
397 |
$rtn .= "<div class=\"awesome-weather-more-weather-link\">";
|
398 |
-
$rtn .= "<a href=\"http://openweathermap.org/city/{$today->id}\" target=\"
|
399 |
$rtn .= "</div> <!-- /.awesome-weather-more-weather-link -->";
|
400 |
}
|
401 |
|
402 |
if($background)
|
403 |
{
|
404 |
-
if( !$background_by_weather) $rtn .= "</div
|
405 |
-
$rtn .= "</div
|
406 |
}
|
407 |
|
408 |
$rtn .= "</div> <!-- /.awesome-weather-wrap -->";
|
@@ -422,13 +424,13 @@ function awesome_weather_error( $msg = false )
|
|
422 |
// DISPLAY ADMIN
|
423 |
if ( current_user_can( 'manage_options' ) )
|
424 |
{
|
425 |
-
|
426 |
}
|
427 |
}
|
428 |
else if( $error_handling == "display-all")
|
429 |
{
|
430 |
// DISPLAY ALL
|
431 |
-
|
432 |
}
|
433 |
else
|
434 |
{
|
@@ -447,8 +449,7 @@ function awesome_weather_admin_scripts( $hook )
|
|
447 |
wp_enqueue_style('wp-color-picker');
|
448 |
wp_enqueue_script('wp-color-picker');
|
449 |
|
450 |
-
wp_enqueue_script( 'awesome_weather_admin_script', plugin_dir_url( __FILE__ ) . '/awesome-weather-widget.js', array('jquery','underscore') );
|
451 |
-
|
452 |
|
453 |
wp_localize_script( 'awesome_weather_admin_script', 'awe_script', array(
|
454 |
'no_owm_city' => esc_attr(__("No city found in OpenWeatherMap.", 'awesome-weather')),
|
@@ -462,250 +463,10 @@ function awesome_weather_admin_scripts( $hook )
|
|
462 |
add_action( 'admin_enqueue_scripts', 'awesome_weather_admin_scripts' );
|
463 |
|
464 |
|
465 |
-
|
466 |
-
// AWESOME WEATHER WIDGET, WIDGET CLASS, SO MANY WIDGETS
|
467 |
-
class AwesomeWeatherWidget extends WP_Widget
|
468 |
-
{
|
469 |
-
function AwesomeWeatherWidget() { parent::__construct(false, $name = 'Awesome Weather Widget'); }
|
470 |
-
|
471 |
-
function widget($args, $instance)
|
472 |
-
{
|
473 |
-
extract( $args );
|
474 |
-
|
475 |
-
$location = isset($instance['location']) ? $instance['location'] : false;
|
476 |
-
$owm_city_id = isset($instance['owm_city_id']) ? $instance['owm_city_id'] : false;
|
477 |
-
$override_title = isset($instance['override_title']) ? $instance['override_title'] : false;
|
478 |
-
$widget_title = isset($instance['widget_title']) ? $instance['widget_title'] : false;
|
479 |
-
$units = isset($instance['units']) ? $instance['units'] : false;
|
480 |
-
$size = isset($instance['size']) ? $instance['size'] : false;
|
481 |
-
$forecast_days = isset($instance['forecast_days']) ? $instance['forecast_days'] : false;
|
482 |
-
$hide_stats = (isset($instance['hide_stats']) AND $instance['hide_stats'] == 1) ? 1 : 0;
|
483 |
-
$show_link = (isset($instance['show_link']) AND $instance['show_link'] == 1) ? 1 : 0;
|
484 |
-
$background_by_weather = (isset($instance['background_by_weather']) AND $instance['background_by_weather'] == 1) ? 1 : 0;
|
485 |
-
$background = isset($instance['background']) ? $instance['background'] : false;
|
486 |
-
$custom_bg_color = isset($instance['custom_bg_color']) ? $instance['custom_bg_color'] : false;
|
487 |
-
$text_color = isset($instance['text_color']) ? $instance['text_color'] : "#ffffff";
|
488 |
-
|
489 |
-
echo $before_widget;
|
490 |
-
if($widget_title != "") echo $before_title . $widget_title . $after_title;
|
491 |
-
echo awesome_weather_logic( array(
|
492 |
-
'location' => $location,
|
493 |
-
'owm_city_id' => $owm_city_id,
|
494 |
-
'override_title' => $override_title,
|
495 |
-
'size' => $size,
|
496 |
-
'units' => $units,
|
497 |
-
'forecast_days' => $forecast_days,
|
498 |
-
'hide_stats' => $hide_stats,
|
499 |
-
'show_link' => $show_link,
|
500 |
-
'background' => $background,
|
501 |
-
'custom_bg_color' => $custom_bg_color,
|
502 |
-
'background_by_weather' => $background_by_weather,
|
503 |
-
'text_color' => $text_color
|
504 |
-
));
|
505 |
-
echo $after_widget;
|
506 |
-
}
|
507 |
-
|
508 |
-
function update($new_instance, $old_instance)
|
509 |
-
{
|
510 |
-
$instance = $old_instance;
|
511 |
-
$instance['location'] = strip_tags($new_instance['location']);
|
512 |
-
$instance['owm_city_id'] = strip_tags($new_instance['owm_city_id']);
|
513 |
-
$instance['override_title'] = strip_tags($new_instance['override_title']);
|
514 |
-
$instance['widget_title'] = strip_tags($new_instance['widget_title']);
|
515 |
-
$instance['units'] = strip_tags($new_instance['units']);
|
516 |
-
$instance['size'] = strip_tags($new_instance['size']);
|
517 |
-
$instance['forecast_days'] = strip_tags($new_instance['forecast_days']);
|
518 |
-
$instance['background'] = strip_tags($new_instance['background']);
|
519 |
-
$instance['custom_bg_color'] = strip_tags($new_instance['custom_bg_color']);
|
520 |
-
$instance['text_color'] = strip_tags($new_instance['text_color']);
|
521 |
-
$instance['background_by_weather'] = (isset($new_instance['background_by_weather']) AND $new_instance['background_by_weather'] == 1) ? 1 : 0;
|
522 |
-
$instance['hide_stats'] = (isset($new_instance['hide_stats']) AND $new_instance['hide_stats'] == 1) ? 1 : 0;
|
523 |
-
$instance['show_link'] = (isset($new_instance['show_link']) AND $new_instance['show_link'] == 1) ? 1 : 0;
|
524 |
-
return $instance;
|
525 |
-
}
|
526 |
-
|
527 |
-
function form($instance)
|
528 |
-
{
|
529 |
-
global $awesome_weather_sizes;
|
530 |
-
|
531 |
-
$location = isset($instance['location']) ? esc_attr($instance['location']) : "";
|
532 |
-
$owm_city_id = isset($instance['owm_city_id']) ? esc_attr($instance['owm_city_id']) : "";
|
533 |
-
$override_title = isset($instance['override_title']) ? esc_attr($instance['override_title']) : "";
|
534 |
-
$widget_title = isset($instance['widget_title']) ? esc_attr($instance['widget_title']) : "";
|
535 |
-
$selected_size = isset($instance['size']) ? esc_attr($instance['size']) : "wide";
|
536 |
-
$units = (isset($instance['units']) AND strtoupper($instance['units']) == "C") ? "C" : "F";
|
537 |
-
$forecast_days = isset($instance['forecast_days']) ? esc_attr($instance['forecast_days']) : 5;
|
538 |
-
$hide_stats = (isset($instance['hide_stats']) AND $instance['hide_stats'] == 1) ? 1 : 0;
|
539 |
-
$background_by_weather = (isset($instance['background_by_weather']) AND $instance['background_by_weather'] == 1) ? 1 : 0;
|
540 |
-
$show_link = (isset($instance['show_link']) AND $instance['show_link'] == 1) ? 1 : 0;
|
541 |
-
$background = isset($instance['background']) ? esc_attr($instance['background']) : "";
|
542 |
-
$custom_bg_color = isset($instance['custom_bg_color']) ? esc_attr($instance['custom_bg_color']) : "";
|
543 |
-
$text_color = isset($instance['text_color']) ? esc_attr($instance['text_color']) : "#ffffff";
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
$appid = apply_filters( 'awesome_weather_appid', awe_get_appid() );
|
548 |
-
|
549 |
-
$wp_theme = wp_get_theme();
|
550 |
-
$wp_theme = $wp_theme->get('TextDomain');
|
551 |
-
?>
|
552 |
-
|
553 |
-
<style>
|
554 |
-
.awe-suggest { font-size: 0.9em; border-bottom: solid 1px #ccc; padding: 5px 1px; font-weight: bold; }
|
555 |
-
.awe-size-options { padding: 1px 10px; background: #efefef; }
|
556 |
-
</style>
|
557 |
-
|
558 |
-
|
559 |
-
<?php if(!$appid) { ?>
|
560 |
-
<div style="background: #dc3232; color: #fff; padding: 10px; margin: 10px;">
|
561 |
-
<?php
|
562 |
-
echo __("As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data.", 'awesome-weather');
|
563 |
-
echo " <a href='http://openweathermap.org/appid' target='_blank' style='color: #fff;'>";
|
564 |
-
echo __('Get your APPID', 'awesome-weather');
|
565 |
-
echo "</a> ";
|
566 |
-
echo __("and add it to the new settings page.");
|
567 |
-
?>
|
568 |
-
</div>
|
569 |
-
<?php } ?>
|
570 |
-
|
571 |
-
<p>
|
572 |
-
<label for="<?php echo $this->get_field_id('location'); ?>">
|
573 |
-
<?php _e('Search for Your Location:', 'awesome-weather'); ?><br />
|
574 |
-
<small><?php _e('(i.e: London,UK or New York City,NY)', 'awesome-weather'); ?></small>
|
575 |
-
</label>
|
576 |
-
<input data-cityidfield="<?php echo $this->get_field_id('owm_city_id'); ?>" data-unitsfield="<?php echo $this->get_field_id('units'); ?>" class="widefat awe-location-search-field-openweathermaps" style="margin-top: 4px;" id="<?php echo $this->get_field_id('location'); ?>" name="<?php echo $this->get_field_name('location'); ?>" type="text" value="<?php echo $location; ?>" />
|
577 |
-
</p>
|
578 |
-
|
579 |
-
<p>
|
580 |
-
<label for="<?php echo $this->get_field_id('owm_city_id'); ?>">
|
581 |
-
<?php _e('OpenWeatherMap City ID:', 'awesome-weather-pro'); ?><br>
|
582 |
-
<small><?php _e('(use the field above to find the ID for your city)', 'awesome-weather'); ?></small>
|
583 |
-
</label>
|
584 |
-
<input class="widefat" style="margin-top: 4px; line-height: 1.5em;" id="<?php echo $this->get_field_id('owm_city_id'); ?>" name="<?php echo $this->get_field_name('owm_city_id'); ?>" type="text" value="<?php echo $owm_city_id; ?>" />
|
585 |
-
</p>
|
586 |
-
|
587 |
-
<span id="awe-owm-spinner-<?php echo $this->get_field_id('location'); ?>" class="hidden"><img src="/wp-admin/images/spinner.gif"></span>
|
588 |
-
<div id="owmid-selector-<?php echo $this->get_field_id('location'); ?>"></div>
|
589 |
-
|
590 |
-
<?php if( !$owm_city_id ) { ?>
|
591 |
-
<script>jQuery('#<?php echo $this->get_field_id('location'); ?>').trigger('keyup');</script>
|
592 |
-
<?php } ?>
|
593 |
-
|
594 |
-
<p>
|
595 |
-
<label for="<?php echo $this->get_field_id('override_title'); ?>"><?php _e('Override Title:', 'awesome-weather'); ?></label>
|
596 |
-
<input class="widefat" id="<?php echo $this->get_field_id('override_title'); ?>" name="<?php echo $this->get_field_name('override_title'); ?>" type="text" value="<?php echo $override_title; ?>" />
|
597 |
-
</p>
|
598 |
-
|
599 |
-
<p>
|
600 |
-
<label for="<?php echo $this->get_field_id('units'); ?>"><?php _e('Units:', 'awesome-weather'); ?></label>
|
601 |
-
<input id="<?php echo $this->get_field_id('units'); ?>" name="<?php echo $this->get_field_name('units'); ?>" type="radio" value="F" <?php if($units == "F") echo ' checked="checked"'; ?> /> F
|
602 |
-
<input id="<?php echo $this->get_field_id('units'); ?>" name="<?php echo $this->get_field_name('units'); ?>" type="radio" value="C" <?php if($units == "C") echo ' checked="checked"'; ?> /> C
|
603 |
-
</p>
|
604 |
-
|
605 |
-
<div class="awe-size-options">
|
606 |
-
|
607 |
-
<?php if( $wp_theme == "twentytwelve") { ?><div class="awe-suggest"> Suggested settings: Wide, 5 Days</div><?php } ?>
|
608 |
-
<?php if( $wp_theme == "twentythirteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 4 Days</div><?php } ?>
|
609 |
-
<?php if( $wp_theme == "twentyfourteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 3 Days</div><?php } ?>
|
610 |
-
<?php if( $wp_theme == "twentyfifteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 4 Days</div><?php } ?>
|
611 |
-
<?php if( $wp_theme == "twentysixteen") { ?><div class="awe-suggest"> Suggested settings: Wide, 5 Days</div><?php } ?>
|
612 |
-
|
613 |
-
<p>
|
614 |
-
<label for="<?php echo $this->get_field_id('size'); ?>"><?php _e('Size:', 'awesome-weather'); ?></label>
|
615 |
-
<select class="widefat" id="<?php echo $this->get_field_id('size'); ?>" name="<?php echo $this->get_field_name('size'); ?>">
|
616 |
-
<?php foreach($awesome_weather_sizes as $size) { ?>
|
617 |
-
<option value="<?php echo $size; ?>"<?php if($selected_size == $size) echo " selected=\"selected\""; ?>><?php echo $size; ?></option>
|
618 |
-
<?php } ?>
|
619 |
-
</select>
|
620 |
-
</p>
|
621 |
-
|
622 |
-
<p>
|
623 |
-
<label for="<?php echo $this->get_field_id('forecast_days'); ?>"><?php _e('Forecast:', 'awesome-weather'); ?></label>
|
624 |
-
<select class="widefat" id="<?php echo $this->get_field_id('forecast_days'); ?>" name="<?php echo $this->get_field_name('forecast_days'); ?>">
|
625 |
-
<option value="5"<?php if($forecast_days == 5) echo " selected=\"selected\""; ?>>5 Days</option>
|
626 |
-
<option value="4"<?php if($forecast_days == 4) echo " selected=\"selected\""; ?>>4 Days</option>
|
627 |
-
<option value="3"<?php if($forecast_days == 3) echo " selected=\"selected\""; ?>>3 Days</option>
|
628 |
-
<option value="2"<?php if($forecast_days == 2) echo " selected=\"selected\""; ?>>2 Days</option>
|
629 |
-
<option value="1"<?php if($forecast_days == 1) echo " selected=\"selected\""; ?>>1 Days</option>
|
630 |
-
<option value="hide"<?php if($forecast_days == 'hide') echo " selected=\"selected\""; ?>>Don't Show</option>
|
631 |
-
</select>
|
632 |
-
</p>
|
633 |
-
|
634 |
-
</div>
|
635 |
-
|
636 |
-
<p>
|
637 |
-
<label for="<?php echo $this->get_field_id('background'); ?>"><?php _e('Background Image:', 'awesome-weather'); ?></label>
|
638 |
-
<input class="widefat" id="<?php echo $this->get_field_id('background'); ?>" name="<?php echo $this->get_field_name('background'); ?>" type="text" value="<?php echo $background; ?>" />
|
639 |
-
</p>
|
640 |
-
|
641 |
-
<p>
|
642 |
-
<input id="<?php echo $this->get_field_id('background_by_weather'); ?>" name="<?php echo $this->get_field_name('background_by_weather'); ?>" type="checkbox" value="1" <?php if($background_by_weather) echo ' checked="checked"'; ?> />
|
643 |
-
<label for="<?php echo $this->get_field_id('background_by_weather'); ?>"><?php _e('Use Different Background Images Based on Weather', 'awesome-weather'); ?></label> <a href="https://halgatewood.com/docs/plugins/awesome-weather-widget/creating-different-backgrounds-for-different-weather" target="_blank">(?)</a>
|
644 |
-
</p>
|
645 |
-
|
646 |
-
<p>
|
647 |
-
<label for="<?php echo $this->get_field_id('custom_bg_color'); ?>"><?php _e('Custom Background Color:', 'awesome-weather'); ?></label><br />
|
648 |
-
<small><?php _e('overrides color changing', 'awesome-weather'); ?>: #7fb761 or rgba(0,0,0,0.5)</small>
|
649 |
-
<input class="widefat" id="<?php echo $this->get_field_id('custom_bg_color'); ?>" name="<?php echo $this->get_field_name('custom_bg_color'); ?>" type="text" value="<?php echo $custom_bg_color; ?>" />
|
650 |
-
</p>
|
651 |
-
|
652 |
-
<p>
|
653 |
-
<label for="<?php echo $this->get_field_id( 'text_color' ); ?>" style="display:block;"><?php _e( 'Text Color', 'awesome-weather' ); ?></label>
|
654 |
-
<input class="widefat color-picker" id="<?php echo $this->get_field_id( 'text_color' ); ?>" name="<?php echo $this->get_field_name( 'text_color' ); ?>" type="text" value="<?php echo esc_attr( $text_color ); ?>" />
|
655 |
-
</p>
|
656 |
-
|
657 |
-
<script type="text/javascript">
|
658 |
-
jQuery(document).ready(function($)
|
659 |
-
{
|
660 |
-
jQuery('#<?php echo $this->get_field_id( 'text_color' ); ?>').on('focus', function(){
|
661 |
-
var parent = jQuery(this).parent();
|
662 |
-
jQuery(this).wpColorPicker()
|
663 |
-
parent.find('.wp-color-result').click();
|
664 |
-
});
|
665 |
-
|
666 |
-
jQuery('#<?php echo $this->get_field_id( 'text_color' ); ?>').wpColorPicker()
|
667 |
-
});
|
668 |
-
</script>
|
669 |
-
|
670 |
-
<p>
|
671 |
-
<input id="<?php echo $this->get_field_id('hide_stats'); ?>" name="<?php echo $this->get_field_name('hide_stats'); ?>" type="checkbox" value="1" <?php if($hide_stats) echo ' checked="checked"'; ?> />
|
672 |
-
<label for="<?php echo $this->get_field_id('hide_stats'); ?>"><?php _e('Hide Stats', 'awesome-weather'); ?></label>
|
673 |
-
|
674 |
-
</p>
|
675 |
-
|
676 |
-
<p>
|
677 |
-
<input id="<?php echo $this->get_field_id('show_link'); ?>" name="<?php echo $this->get_field_name('show_link'); ?>" type="checkbox" value="1" <?php if($show_link) echo ' checked="checked"'; ?> />
|
678 |
-
<label for="<?php echo $this->get_field_id('show_link'); ?>"><?php _e('Link to OpenWeatherMap', 'awesome-weather'); ?></label>
|
679 |
-
</p>
|
680 |
-
|
681 |
-
<p>
|
682 |
-
<label for="<?php echo $this->get_field_id('widget_title'); ?>"><?php _e('Widget Title: (optional)', 'awesome-weather'); ?></label>
|
683 |
-
<input class="widefat" id="<?php echo $this->get_field_id('widget_title'); ?>" name="<?php echo $this->get_field_name('widget_title'); ?>" type="text" value="<?php echo $widget_title; ?>" />
|
684 |
-
</p>
|
685 |
-
<?php
|
686 |
-
}
|
687 |
-
}
|
688 |
-
|
689 |
-
add_action( 'widgets_init', create_function('', 'return register_widget("AwesomeWeatherWidget");') );
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
// SETTINGS
|
694 |
-
require_once( dirname(__FILE__) . "/awesome-weather-settings.php");
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
// GET APPID
|
699 |
function awe_get_appid()
|
700 |
{
|
701 |
-
|
702 |
-
{
|
703 |
-
return AWESOME_WEATHER_APPID;
|
704 |
-
}
|
705 |
-
else
|
706 |
-
{
|
707 |
-
return get_option( 'open-weather-key' );
|
708 |
-
}
|
709 |
}
|
710 |
|
711 |
|
@@ -718,9 +479,10 @@ function awe_ping_owm_for_id( )
|
|
718 |
if($appid) $appid_string = '&APPID=' . $appid;
|
719 |
|
720 |
$location = urlencode($_GET['location']);
|
721 |
-
$units = $_GET['
|
722 |
$owm_ping = "http://api.openweathermap.org/data/2.5/find?q=" . $location ."&units=" . $units . "&mode=json" . $appid_string;
|
723 |
$owm_ping_get = wp_remote_get( $owm_ping );
|
|
|
724 |
echo $owm_ping_get['body'];
|
725 |
die;
|
726 |
}
|
@@ -745,3 +507,13 @@ function awesome_weather_preset_condition_names_openweathermaps( $weather_code )
|
|
745 |
else if( $weather_code == 951 ) return "calm";
|
746 |
else if( $weather_code > 951 AND $weather_code < 962 ) return "breeze";
|
747 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
Description: A weather widget that actually looks cool
|
6 |
Author: Hal Gatewood
|
7 |
Author URI: https://www.halgatewood.com
|
8 |
+
Version: 1.5.7
|
9 |
Text Domain: awesome-weather
|
10 |
Domain Path: /languages
|
11 |
|
112 |
//FIND AND CACHE CITY ID
|
113 |
if( $owm_city_id )
|
114 |
{
|
115 |
+
$city_name_slug = sanitize_title( $location );
|
116 |
$api_query = "id=" . $owm_city_id;
|
117 |
}
|
118 |
else if( is_numeric($location) )
|
119 |
{
|
120 |
+
$city_name_slug = sanitize_title( $location );
|
121 |
+
$api_query = "id=" . urlencode($location);
|
122 |
}
|
123 |
else
|
124 |
{
|
125 |
$city_name_slug = sanitize_title( $location );
|
126 |
+
$api_query = "q=" . urlencode($location);
|
127 |
}
|
128 |
|
129 |
|
159 |
// NOW
|
160 |
$now_ping = "http://api.openweathermap.org/data/2.5/weather?" . $api_query . "&lang=" . $locale . "&units=" . $units . $appid_string;
|
161 |
$now_ping_get = wp_remote_get( $now_ping );
|
162 |
+
|
163 |
|
164 |
// PING URL ERROR
|
165 |
if( is_wp_error( $now_ping_get ) ) return awesome_weather_error( $now_ping_get->get_error_message() );
|
183 |
{
|
184 |
$forecast_ping = "http://api.openweathermap.org/data/2.5/forecast/daily?" . $api_query . "&lang=" . $locale . "&units=" . $units ."&cnt=7" . $appid_string;
|
185 |
$forecast_ping_get = wp_remote_get( $forecast_ping );
|
186 |
+
|
187 |
if( is_wp_error( $forecast_ping_get ) )
|
188 |
{
|
189 |
return awesome_weather_error( $forecast_ping_get->get_error_message() );
|
203 |
|
204 |
if($weather_data['now'] OR $weather_data['forecast'])
|
205 |
{
|
|
|
206 |
set_transient( $weather_transient_name, $weather_data, apply_filters( 'awesome_weather_cache', 1800 ) );
|
207 |
}
|
208 |
}
|
209 |
+
|
210 |
+
|
211 |
|
212 |
// NO WEATHER
|
213 |
if( !$weather_data OR !isset($weather_data['now'])) return awesome_weather_error();
|
214 |
|
215 |
+
|
216 |
|
217 |
// TODAYS TEMPS
|
218 |
$today = $weather_data['now'];
|
219 |
+
$today_temp = isset($today->main->temp) ? round($today->main->temp) : false;
|
220 |
+
$today_high = isset($today->main->temp_max) ? round($today->main->temp_max) : false;
|
221 |
+
$today_low = isset($today->main->temp_min) ? round($today->main->temp_min) : false;
|
222 |
+
|
223 |
|
224 |
// TEXT COLOR
|
225 |
if( substr(trim($text_color), 0, 1) != "#" ) $text_color = "#" . $text_color;
|
238 |
$inline_style .= " background-color: {$custom_bg_color}; ";
|
239 |
$background_classes[] = "awe_custom";
|
240 |
}
|
241 |
+
else if( $today_temp )
|
242 |
{
|
243 |
// COLOR OF WIDGET
|
244 |
if($units == "imperial")
|
266 |
// DATA
|
267 |
$header_title = $override_title ? $override_title : $today->name;
|
268 |
|
|
|
|
|
269 |
|
270 |
+
// WIND
|
271 |
$wind_label = array ( __('N', 'awesome-weather'), __('NNE', 'awesome-weather'), __('NE', 'awesome-weather'), __('ENE', 'awesome-weather'), __('E', 'awesome-weather'), __('ESE', 'awesome-weather'), __('SE', 'awesome-weather'), __('SSE', 'awesome-weather'), __('S', 'awesome-weather'), __('SSW', 'awesome-weather'), __('SW', 'awesome-weather'), __('WSW', 'awesome-weather'), __('W', 'awesome-weather'), __('WNW', 'awesome-weather'), __('NW', 'awesome-weather'), __('NNW', 'awesome-weather') );
|
272 |
|
273 |
+
$wind_direction = false;
|
274 |
+
if( isset($today->wind->deg) ) $wind_direction = apply_filters('awesome_weather_wind_direction', $wind_label[ fmod((($today->wind->deg + 11) / 22.5),16) ]);
|
275 |
+
|
276 |
+
|
277 |
$background_classes[] = ($show_stats) ? "awe_with_stats" : "awe_without_stats";
|
278 |
|
279 |
|
345 |
if( !$background_by_weather) $rtn .= "<div class=\"awesome-weather-darken\">";
|
346 |
}
|
347 |
|
348 |
+
$rtn .= "<div class=\"awesome-weather-header\">{$header_title}</div>";
|
349 |
+
$rtn .= "<div class=\"awesome-weather-current-temp\"><strong>{$today_temp}<sup>{$units_display_symbol}</sup></strong></div><!-- /.awesome-weather-current-temp -->";
|
|
|
|
|
|
|
350 |
|
351 |
+
if($show_stats AND isset($today->main) )
|
352 |
{
|
353 |
+
$wind_speed = isset($today->wind->speed) ? $today->wind->speed : false;
|
354 |
+
|
355 |
+
$wind_speed_text = ( $units == "imperial" ) ? __('mph', 'awesome-weather') : __('m/s', 'awesome-weather');
|
356 |
+
$wind_speed_obj = apply_filters('awesome_weather_wind_speed', array(
|
357 |
+
'text' => apply_filters('awesome_weather_wind_speed_text', $wind_speed_text),
|
358 |
+
'speed' => round($wind_speed),
|
359 |
+
'direction' => $wind_direction ), $wind_speed, $wind_direction );
|
360 |
+
|
361 |
+
// CURRENT WEATHER STATS
|
362 |
+
$rtn .= '<div class="awesome-weather-todays-stats">';
|
363 |
+
if( isset($today->weather[0]->description) ) $rtn .= '<div class="awe_desc">' . $today->weather[0]->description . '</div>';
|
364 |
+
if( isset($today->main->humidity) ) $rtn .= '<div class="awe_humidty">' . __('humidity:', 'awesome-weather') . " " . $today->main->humidity . '%</div>';
|
365 |
+
if( $wind_speed AND $wind_direction) $rtn .= '<div class="awe_wind">' . __('wind:', 'awesome-weather') . ' ' .$wind_speed_obj['speed'] . $wind_speed_obj['text'] . ' ' .$wind_speed_obj['direction'] . '</div>';
|
366 |
+
if( $today_high AND $today_low) $rtn .= '<div class="awe_highlow">' . __('H', 'awesome-weather') . ' ' . $today_high . ' • ' . __('L', 'awesome-weather') . ' ' . $today_low . '</div>';
|
367 |
+
$rtn .= '</div><!-- /.awesome-weather-todays-stats -->';
|
368 |
}
|
369 |
|
370 |
if($days_to_show != "hide")
|
374 |
$dt_today = date( 'Ymd', current_time( 'timestamp', 0 ) );
|
375 |
$forecast = $weather_data['forecast'];
|
376 |
$days_to_show = (int) $days_to_show;
|
377 |
+
$days_of_week = apply_filters( 'awesome_weather_days_of_week', array( __('Sun' ,'awesome-weather'), __('Mon' ,'awesome-weather'), __('Tue' ,'awesome-weather'), __('Wed' ,'awesome-weather'), __('Thu' ,'awesome-weather'), __('Fri' ,'awesome-weather'), __('Sat' ,'awesome-weather') ) );
|
378 |
|
379 |
foreach( (array) $forecast->list as $forecast )
|
380 |
{
|
381 |
if( $dt_today >= date('Ymd', $forecast->dt)) continue;
|
|
|
|
|
382 |
$forecast->temp = (int) $forecast->temp->day;
|
383 |
$day_of_week = $days_of_week[ date('w', $forecast->dt) ];
|
384 |
$rtn .= "
|
385 |
<div class=\"awesome-weather-forecast-day\">
|
386 |
<div class=\"awesome-weather-forecast-day-temp\">{$forecast->temp}<sup>{$units_display_symbol}</sup></div>
|
387 |
+
<div class=\"awesome-weather-forecast-day-abbr\">{$day_of_week}</div>
|
388 |
+
</div>";
|
|
|
389 |
if($c == $days_to_show) break;
|
390 |
$c++;
|
391 |
}
|
394 |
|
395 |
if($show_link AND isset($today->id))
|
396 |
{
|
397 |
+
$show_link_text = apply_filters('awesome_weather_extended_forecast_text' , __('extended forecast', 'awesome-weather'));
|
398 |
+
$extended_url_target = apply_filters('awesome_weather_extended_url_target', '_blank');
|
399 |
$rtn .= "<div class=\"awesome-weather-more-weather-link\">";
|
400 |
+
$rtn .= "<a href=\"http://openweathermap.org/city/{$today->id}\" target=\"{$extended_url_target}\">{$show_link_text}</a>";
|
401 |
$rtn .= "</div> <!-- /.awesome-weather-more-weather-link -->";
|
402 |
}
|
403 |
|
404 |
if($background)
|
405 |
{
|
406 |
+
if( !$background_by_weather) $rtn .= "</div><!-- /.awesome-weather-darken -->";
|
407 |
+
$rtn .= "</div><!-- /.awesome-weather-cover -->";
|
408 |
}
|
409 |
|
410 |
$rtn .= "</div> <!-- /.awesome-weather-wrap -->";
|
424 |
// DISPLAY ADMIN
|
425 |
if ( current_user_can( 'manage_options' ) )
|
426 |
{
|
427 |
+
return "<div class='awesome-weather-error'>" . $msg . "</div>";
|
428 |
}
|
429 |
}
|
430 |
else if( $error_handling == "display-all")
|
431 |
{
|
432 |
// DISPLAY ALL
|
433 |
+
return "<div class='awesome-weather-error'>" . $msg . "</div>";
|
434 |
}
|
435 |
else
|
436 |
{
|
449 |
wp_enqueue_style('wp-color-picker');
|
450 |
wp_enqueue_script('wp-color-picker');
|
451 |
|
452 |
+
wp_enqueue_script( 'awesome_weather_admin_script', plugin_dir_url( __FILE__ ) . '/awesome-weather-widget-admin.js', array('jquery','underscore') );
|
|
|
453 |
|
454 |
wp_localize_script( 'awesome_weather_admin_script', 'awe_script', array(
|
455 |
'no_owm_city' => esc_attr(__("No city found in OpenWeatherMap.", 'awesome-weather')),
|
463 |
add_action( 'admin_enqueue_scripts', 'awesome_weather_admin_scripts' );
|
464 |
|
465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
// GET APPID
|
467 |
function awe_get_appid()
|
468 |
{
|
469 |
+
return defined('AWESOME_WEATHER_APPID') ? AWESOME_WEATHER_APPID : get_option( 'open-weather-key' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
}
|
471 |
|
472 |
|
479 |
if($appid) $appid_string = '&APPID=' . $appid;
|
480 |
|
481 |
$location = urlencode($_GET['location']);
|
482 |
+
$units = $_GET['units'] == "C" ? "metric" : "imperial";
|
483 |
$owm_ping = "http://api.openweathermap.org/data/2.5/find?q=" . $location ."&units=" . $units . "&mode=json" . $appid_string;
|
484 |
$owm_ping_get = wp_remote_get( $owm_ping );
|
485 |
+
header("Content-Type: application/json");
|
486 |
echo $owm_ping_get['body'];
|
487 |
die;
|
488 |
}
|
507 |
else if( $weather_code == 951 ) return "calm";
|
508 |
else if( $weather_code > 951 AND $weather_code < 962 ) return "breeze";
|
509 |
}
|
510 |
+
|
511 |
+
|
512 |
+
|
513 |
+
|
514 |
+
// WIDGET
|
515 |
+
require_once( dirname(__FILE__) . "/widget.php");
|
516 |
+
|
517 |
+
|
518 |
+
// SETTINGS
|
519 |
+
require_once( dirname(__FILE__) . "/awesome-weather-settings.php");
|
languages/awesome-weather-ar.mo
CHANGED
Binary file
|
languages/awesome-weather-ar.po
CHANGED
@@ -1,204 +1,321 @@
|
|
1 |
-
# Copyright (C) 2013 Awesome Weather Widget
|
2 |
-
# This file is distributed under the same license as the Awesome Weather Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Awesome Weather Widget 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
7 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "C"
|
20 |
msgstr "C"
|
21 |
|
22 |
-
#: awesome-weather.php:
|
23 |
msgid "F"
|
24 |
msgstr "F"
|
25 |
|
26 |
-
#: awesome-weather.php:
|
27 |
msgid "N"
|
28 |
msgstr "N"
|
29 |
|
30 |
-
#: awesome-weather.php:
|
31 |
msgid "NNE"
|
32 |
msgstr "NNE"
|
33 |
|
34 |
-
#: awesome-weather.php:
|
35 |
msgid "NE"
|
36 |
msgstr "NE"
|
37 |
|
38 |
-
#: awesome-weather.php:
|
39 |
msgid "ENE"
|
40 |
msgstr "ENE"
|
41 |
|
42 |
-
#: awesome-weather.php:
|
43 |
msgid "E"
|
44 |
msgstr "E"
|
45 |
|
46 |
-
#: awesome-weather.php:
|
47 |
msgid "ESE"
|
48 |
msgstr "ESE"
|
49 |
|
50 |
-
#: awesome-weather.php:
|
51 |
msgid "SE"
|
52 |
msgstr "SE"
|
53 |
|
54 |
-
#: awesome-weather.php:
|
55 |
msgid "SSE"
|
56 |
msgstr "SSE"
|
57 |
|
58 |
-
#: awesome-weather.php:
|
59 |
msgid "S"
|
60 |
msgstr "S"
|
61 |
|
62 |
-
#: awesome-weather.php:
|
63 |
msgid "SSW"
|
64 |
msgstr "SSW"
|
65 |
|
66 |
-
#: awesome-weather.php:
|
67 |
msgid "SW"
|
68 |
msgstr "SW"
|
69 |
|
70 |
-
#: awesome-weather.php:
|
71 |
msgid "WSW"
|
72 |
msgstr "WSW"
|
73 |
|
74 |
-
#: awesome-weather.php:
|
75 |
msgid "W"
|
76 |
msgstr "W"
|
77 |
|
78 |
-
#: awesome-weather.php:
|
79 |
msgid "WNW"
|
80 |
msgstr "WNW"
|
81 |
|
82 |
-
#: awesome-weather.php:
|
83 |
msgid "NW"
|
84 |
msgstr "NW"
|
85 |
|
86 |
-
#: awesome-weather.php:
|
87 |
msgid "NNW"
|
88 |
msgstr "NNW"
|
89 |
|
90 |
-
#: awesome-weather.php:
|
91 |
-
msgid "km/h"
|
92 |
-
msgstr "كم / ساعة"
|
93 |
-
|
94 |
-
#: awesome-weather.php:280
|
95 |
msgid "mph"
|
96 |
msgstr "ميل في الساعة"
|
97 |
|
98 |
-
#: awesome-weather.php:
|
99 |
msgid "humidity:"
|
100 |
msgstr "الرطوبة:"
|
101 |
|
102 |
-
#: awesome-weather.php:
|
103 |
msgid "wind:"
|
104 |
msgstr "الرياح:"
|
105 |
|
106 |
-
#: awesome-weather.php:
|
107 |
msgid "H"
|
108 |
msgstr "H"
|
109 |
|
110 |
-
#: awesome-weather.php:
|
111 |
msgid "L"
|
112 |
msgstr "L"
|
113 |
|
114 |
-
#: awesome-weather.php:
|
115 |
msgid "Sun"
|
116 |
msgstr "أحد"
|
117 |
|
118 |
-
#: awesome-weather.php:
|
119 |
msgid "Mon"
|
120 |
msgstr "الإثنين"
|
121 |
|
122 |
-
#: awesome-weather.php:
|
123 |
msgid "Tue"
|
124 |
msgstr "الثلاثاء"
|
125 |
|
126 |
-
#: awesome-weather.php:
|
127 |
msgid "Wed"
|
128 |
msgstr "الأربعاء"
|
129 |
|
130 |
-
#: awesome-weather.php:
|
131 |
msgid "Thu"
|
132 |
msgstr "الخميس"
|
133 |
|
134 |
-
#: awesome-weather.php:
|
135 |
msgid "Fri"
|
136 |
msgstr "الجمعة"
|
137 |
|
138 |
-
#: awesome-weather.php:
|
139 |
msgid "Sat"
|
140 |
msgstr "السبت"
|
141 |
|
142 |
-
#: awesome-weather.php:
|
143 |
msgid "extended forecast"
|
144 |
msgstr "توقعات موسعة"
|
145 |
|
146 |
-
#: awesome-weather.php:
|
147 |
msgid "No weather information available"
|
148 |
msgstr "لا توجد معلومات الطقس المتاحة"
|
149 |
|
150 |
-
#:
|
151 |
-
msgid "Location:"
|
152 |
-
msgstr "الموقع:"
|
153 |
-
|
154 |
-
#: awesome-weather.php:406
|
155 |
-
msgid "(i.e: London,UK or New York City,NY)"
|
156 |
-
msgstr "(أي: لندن، المملكة المتحدة أو مدينة نيويورك، NY)"
|
157 |
-
|
158 |
-
#: awesome-weather.php:412
|
159 |
msgid "Override Title:"
|
160 |
msgstr "تجاوز العنوان:"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Units:"
|
164 |
msgstr "الوحدات:"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Size:"
|
168 |
msgstr "الحجم:"
|
169 |
|
170 |
-
#:
|
171 |
msgid "Forecast:"
|
172 |
msgstr "توقعات:"
|
173 |
|
174 |
-
#:
|
175 |
msgid "Background Image:"
|
176 |
msgstr "صورة الخلفية:"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Custom Background Color:"
|
180 |
msgstr "مخصص لون الخلفية:"
|
181 |
|
182 |
-
#: awesome-weather.php:450
|
183 |
-
msgid "(overrides color changing, use hex #7fb761)"
|
184 |
-
msgstr "(يتجاوز تغيير لون، واستخدام عرافة # 7fb761)"
|
185 |
-
|
186 |
-
#: awesome-weather.php:455
|
187 |
-
msgid "Hide Stats:"
|
188 |
-
msgstr "إخفاء إحصائيات:"
|
189 |
-
|
190 |
-
#: awesome-weather.php:460
|
191 |
-
msgid "Link to OpenWeatherMap:"
|
192 |
-
msgstr "رابط إلى OpenWeatherMap:"
|
193 |
-
|
194 |
-
#. Plugin Name of the plugin/theme
|
195 |
-
msgid "Awesome Weather Widget"
|
196 |
-
msgstr "رهيبة الطقس القطعة"
|
197 |
-
|
198 |
-
#. Plugin URI of the plugin/theme
|
199 |
-
msgid "http://halgatewood.com/awesome-weather"
|
200 |
-
msgstr "http://halgatewood.com/awesome-weather"
|
201 |
-
|
202 |
#. Description of the plugin/theme
|
203 |
msgid "A weather widget that actually looks cool"
|
204 |
msgstr " الطقس"
|
@@ -206,8 +323,3 @@ msgstr " الطقس"
|
|
206 |
#. Author of the plugin/theme
|
207 |
msgid "Hal Gatewood"
|
208 |
msgstr "Hal Gatewood"
|
209 |
-
|
210 |
-
#. Author URI of the plugin/theme
|
211 |
-
msgid "http://www.halgatewood.com"
|
212 |
-
msgstr "http://www.halgatewood.com"
|
213 |
-
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:35:47 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Arabic\n"
|
10 |
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100 >= 3 "
|
11 |
+
"&& n%100<=10 ? 3 : n%100 >= 11 && n%100<=99 ? 4 : 5\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: ar_AE"
|
25 |
+
|
26 |
+
#: awesome-weather-settings.php:17
|
27 |
+
msgid "Weather Widget Cache Cleared"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: awesome-weather-settings.php:28
|
31 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: awesome-weather-settings.php:42
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: awesome-weather-settings.php:46
|
39 |
+
msgid "API Key Required"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: awesome-weather-settings.php:51
|
43 |
+
msgid "Donate"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: awesome-weather-settings.php:54
|
47 |
+
msgid "Upgrade"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: awesome-weather-settings.php:69
|
51 |
+
msgid "OpenWeatherMaps APPID"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: awesome-weather-settings.php:70
|
55 |
+
msgid "Error Handling"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: awesome-weather-settings.php:106
|
59 |
+
msgid "Defined in wp-config"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: awesome-weather-settings.php:113
|
63 |
+
msgid ""
|
64 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
65 |
+
"weather data."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
69 |
+
msgid "Get your APPID"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: awesome-weather-settings.php:126
|
73 |
+
msgid "Hidden in Source"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: awesome-weather-settings.php:127
|
77 |
+
msgid "Display if Admin"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: awesome-weather-settings.php:128
|
81 |
+
msgid "Display for Anyone"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: awesome-weather-settings.php:131
|
85 |
+
msgid "What should the plugin do when there is an error?"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: awesome-weather.php:355
|
89 |
+
msgid "m/s"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: awesome-weather.php:455
|
93 |
+
msgid "No city found in OpenWeatherMap."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: awesome-weather.php:456
|
97 |
+
msgid "Only one location found. The ID has been set automatically above."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: awesome-weather.php:457
|
101 |
+
msgid "Please confirm your city: "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: widget.php:97
|
105 |
+
msgid ""
|
106 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
107 |
+
"weather data."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: widget.php:101
|
111 |
+
msgid "and add it to the new settings page."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: widget.php:108
|
115 |
+
msgid "Search for Your Location:"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: widget.php:109
|
119 |
+
msgid "(i.e: London or New York City)"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: widget.php:116
|
123 |
+
msgid "OpenWeatherMap City ID:"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: widget.php:117
|
127 |
+
msgid "(use the field above to find the ID for your city)"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: widget.php:178
|
131 |
+
msgid "Use Different Background Images Based on Weather"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: widget.php:183
|
135 |
+
msgid "overrides color changing"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: widget.php:188
|
139 |
+
msgid "Text Color"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: widget.php:207
|
143 |
+
msgid "Hide Current Condition Stats"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: widget.php:213
|
147 |
+
msgid "Link to OpenWeatherMap"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: widget.php:217
|
151 |
+
msgid "Widget Title: (optional)"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#. Plugin URI of the plugin/theme
|
155 |
+
msgid "https://halgatewood.com/awesome-weather"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#. Author URI of the plugin/theme
|
159 |
+
msgid "https://www.halgatewood.com"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#. Plugin Name of the plugin/theme
|
163 |
+
#: awesome-weather-settings.php:13
|
164 |
+
msgid "Awesome Weather Widget"
|
165 |
+
msgstr "رهيبة الطقس القطعة"
|
166 |
+
|
167 |
+
#: awesome-weather.php:75
|
168 |
msgid "C"
|
169 |
msgstr "C"
|
170 |
|
171 |
+
#: awesome-weather.php:75
|
172 |
msgid "F"
|
173 |
msgstr "F"
|
174 |
|
175 |
+
#: awesome-weather.php:271
|
176 |
msgid "N"
|
177 |
msgstr "N"
|
178 |
|
179 |
+
#: awesome-weather.php:271
|
180 |
msgid "NNE"
|
181 |
msgstr "NNE"
|
182 |
|
183 |
+
#: awesome-weather.php:271
|
184 |
msgid "NE"
|
185 |
msgstr "NE"
|
186 |
|
187 |
+
#: awesome-weather.php:271
|
188 |
msgid "ENE"
|
189 |
msgstr "ENE"
|
190 |
|
191 |
+
#: awesome-weather.php:271
|
192 |
msgid "E"
|
193 |
msgstr "E"
|
194 |
|
195 |
+
#: awesome-weather.php:271
|
196 |
msgid "ESE"
|
197 |
msgstr "ESE"
|
198 |
|
199 |
+
#: awesome-weather.php:271
|
200 |
msgid "SE"
|
201 |
msgstr "SE"
|
202 |
|
203 |
+
#: awesome-weather.php:271
|
204 |
msgid "SSE"
|
205 |
msgstr "SSE"
|
206 |
|
207 |
+
#: awesome-weather.php:271
|
208 |
msgid "S"
|
209 |
msgstr "S"
|
210 |
|
211 |
+
#: awesome-weather.php:271
|
212 |
msgid "SSW"
|
213 |
msgstr "SSW"
|
214 |
|
215 |
+
#: awesome-weather.php:271
|
216 |
msgid "SW"
|
217 |
msgstr "SW"
|
218 |
|
219 |
+
#: awesome-weather.php:271
|
220 |
msgid "WSW"
|
221 |
msgstr "WSW"
|
222 |
|
223 |
+
#: awesome-weather.php:271
|
224 |
msgid "W"
|
225 |
msgstr "W"
|
226 |
|
227 |
+
#: awesome-weather.php:271
|
228 |
msgid "WNW"
|
229 |
msgstr "WNW"
|
230 |
|
231 |
+
#: awesome-weather.php:271
|
232 |
msgid "NW"
|
233 |
msgstr "NW"
|
234 |
|
235 |
+
#: awesome-weather.php:271
|
236 |
msgid "NNW"
|
237 |
msgstr "NNW"
|
238 |
|
239 |
+
#: awesome-weather.php:355
|
|
|
|
|
|
|
|
|
240 |
msgid "mph"
|
241 |
msgstr "ميل في الساعة"
|
242 |
|
243 |
+
#: awesome-weather.php:364
|
244 |
msgid "humidity:"
|
245 |
msgstr "الرطوبة:"
|
246 |
|
247 |
+
#: awesome-weather.php:365
|
248 |
msgid "wind:"
|
249 |
msgstr "الرياح:"
|
250 |
|
251 |
+
#: awesome-weather.php:366
|
252 |
msgid "H"
|
253 |
msgstr "H"
|
254 |
|
255 |
+
#: awesome-weather.php:366
|
256 |
msgid "L"
|
257 |
msgstr "L"
|
258 |
|
259 |
+
#: awesome-weather.php:377
|
260 |
msgid "Sun"
|
261 |
msgstr "أحد"
|
262 |
|
263 |
+
#: awesome-weather.php:377
|
264 |
msgid "Mon"
|
265 |
msgstr "الإثنين"
|
266 |
|
267 |
+
#: awesome-weather.php:377
|
268 |
msgid "Tue"
|
269 |
msgstr "الثلاثاء"
|
270 |
|
271 |
+
#: awesome-weather.php:377
|
272 |
msgid "Wed"
|
273 |
msgstr "الأربعاء"
|
274 |
|
275 |
+
#: awesome-weather.php:377
|
276 |
msgid "Thu"
|
277 |
msgstr "الخميس"
|
278 |
|
279 |
+
#: awesome-weather.php:377
|
280 |
msgid "Fri"
|
281 |
msgstr "الجمعة"
|
282 |
|
283 |
+
#: awesome-weather.php:377
|
284 |
msgid "Sat"
|
285 |
msgstr "السبت"
|
286 |
|
287 |
+
#: awesome-weather.php:397
|
288 |
msgid "extended forecast"
|
289 |
msgstr "توقعات موسعة"
|
290 |
|
291 |
+
#: awesome-weather.php:420
|
292 |
msgid "No weather information available"
|
293 |
msgstr "لا توجد معلومات الطقس المتاحة"
|
294 |
|
295 |
+
#: widget.php:130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgid "Override Title:"
|
297 |
msgstr "تجاوز العنوان:"
|
298 |
|
299 |
+
#: widget.php:135
|
300 |
msgid "Units:"
|
301 |
msgstr "الوحدات:"
|
302 |
|
303 |
+
#: widget.php:149
|
304 |
msgid "Size:"
|
305 |
msgstr "الحجم:"
|
306 |
|
307 |
+
#: widget.php:158
|
308 |
msgid "Forecast:"
|
309 |
msgstr "توقعات:"
|
310 |
|
311 |
+
#: widget.php:172
|
312 |
msgid "Background Image:"
|
313 |
msgstr "صورة الخلفية:"
|
314 |
|
315 |
+
#: widget.php:182
|
316 |
msgid "Custom Background Color:"
|
317 |
msgstr "مخصص لون الخلفية:"
|
318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
#. Description of the plugin/theme
|
320 |
msgid "A weather widget that actually looks cool"
|
321 |
msgstr " الطقس"
|
323 |
#. Author of the plugin/theme
|
324 |
msgid "Hal Gatewood"
|
325 |
msgstr "Hal Gatewood"
|
|
|
|
|
|
|
|
|
|
languages/awesome-weather-de_DE.mo
CHANGED
Binary file
|
languages/awesome-weather-de_DE.po
CHANGED
@@ -1,204 +1,316 @@
|
|
1 |
-
# Copyright (C) 2013 Awesome Weather Widget
|
2 |
-
# This file is distributed under the same license as the Awesome Weather Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Awesome Weather Widget 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
7 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "C"
|
20 |
msgstr "C"
|
21 |
|
22 |
-
#: awesome-weather.php:
|
23 |
msgid "F"
|
24 |
msgstr "F"
|
25 |
|
26 |
-
#: awesome-weather.php:
|
27 |
msgid "N"
|
28 |
msgstr "N"
|
29 |
|
30 |
-
#: awesome-weather.php:
|
31 |
msgid "NNE"
|
32 |
msgstr "NNO"
|
33 |
|
34 |
-
#: awesome-weather.php:
|
35 |
msgid "NE"
|
36 |
msgstr "NO"
|
37 |
|
38 |
-
#: awesome-weather.php:
|
39 |
msgid "ENE"
|
40 |
msgstr "ONO"
|
41 |
|
42 |
-
#: awesome-weather.php:
|
43 |
msgid "E"
|
44 |
msgstr "O"
|
45 |
|
46 |
-
#: awesome-weather.php:
|
47 |
msgid "ESE"
|
48 |
msgstr "OSO"
|
49 |
|
50 |
-
#: awesome-weather.php:
|
51 |
msgid "SE"
|
52 |
msgstr "SO"
|
53 |
|
54 |
-
#: awesome-weather.php:
|
55 |
msgid "SSE"
|
56 |
msgstr "SSO"
|
57 |
|
58 |
-
#: awesome-weather.php:
|
59 |
msgid "S"
|
60 |
msgstr "S"
|
61 |
|
62 |
-
#: awesome-weather.php:
|
63 |
msgid "SSW"
|
64 |
msgstr "SSW"
|
65 |
|
66 |
-
#: awesome-weather.php:
|
67 |
msgid "SW"
|
68 |
msgstr "SW"
|
69 |
|
70 |
-
#: awesome-weather.php:
|
71 |
msgid "WSW"
|
72 |
msgstr "WSW"
|
73 |
|
74 |
-
#: awesome-weather.php:
|
75 |
msgid "W"
|
76 |
msgstr "W"
|
77 |
|
78 |
-
#: awesome-weather.php:
|
79 |
msgid "WNW"
|
80 |
msgstr "WNW"
|
81 |
|
82 |
-
#: awesome-weather.php:
|
83 |
msgid "NW"
|
84 |
msgstr "NW"
|
85 |
|
86 |
-
#: awesome-weather.php:
|
87 |
msgid "NNW"
|
88 |
msgstr "NNW"
|
89 |
|
90 |
-
#: awesome-weather.php:
|
91 |
-
msgid "km/h"
|
92 |
-
msgstr "km/h"
|
93 |
-
|
94 |
-
#: awesome-weather.php:280
|
95 |
msgid "mph"
|
96 |
msgstr "mph"
|
97 |
|
98 |
-
#: awesome-weather.php:
|
99 |
msgid "humidity:"
|
100 |
msgstr "Luftfeuchtigkeit:"
|
101 |
|
102 |
-
#: awesome-weather.php:
|
103 |
msgid "wind:"
|
104 |
msgstr "Windstärke:"
|
105 |
|
106 |
-
#: awesome-weather.php:
|
107 |
msgid "H"
|
108 |
msgstr "MAX"
|
109 |
|
110 |
-
#: awesome-weather.php:
|
111 |
msgid "L"
|
112 |
msgstr "MIN"
|
113 |
|
114 |
-
#: awesome-weather.php:
|
115 |
msgid "Sun"
|
116 |
msgstr "SO"
|
117 |
|
118 |
-
#: awesome-weather.php:
|
119 |
msgid "Mon"
|
120 |
msgstr "MO"
|
121 |
|
122 |
-
#: awesome-weather.php:
|
123 |
msgid "Tue"
|
124 |
msgstr "DIE"
|
125 |
|
126 |
-
#: awesome-weather.php:
|
127 |
msgid "Wed"
|
128 |
msgstr "MI"
|
129 |
|
130 |
-
#: awesome-weather.php:
|
131 |
msgid "Thu"
|
132 |
msgstr "DO"
|
133 |
|
134 |
-
#: awesome-weather.php:
|
135 |
msgid "Fri"
|
136 |
msgstr "FR"
|
137 |
|
138 |
-
#: awesome-weather.php:
|
139 |
msgid "Sat"
|
140 |
msgstr "SA"
|
141 |
|
142 |
-
#: awesome-weather.php:
|
143 |
msgid "extended forecast"
|
144 |
msgstr "langfristige Vorhersage"
|
145 |
|
146 |
-
#: awesome-weather.php:
|
147 |
msgid "No weather information available"
|
148 |
msgstr "Keine Wetterdaten verfügbar."
|
149 |
|
150 |
-
#:
|
151 |
-
msgid "Location:"
|
152 |
-
msgstr "Ort:"
|
153 |
-
|
154 |
-
#: awesome-weather.php:406
|
155 |
-
msgid "(i.e: London,UK or New York City,NY)"
|
156 |
-
msgstr "(d. h.: London/UK oder New York City, NY)"
|
157 |
-
|
158 |
-
#: awesome-weather.php:412
|
159 |
msgid "Override Title:"
|
160 |
msgstr "Titel ändern:"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Units:"
|
164 |
msgstr "Einheiten:"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Size:"
|
168 |
msgstr "Größe:"
|
169 |
|
170 |
-
#:
|
171 |
msgid "Forecast:"
|
172 |
msgstr "Vorhersage:"
|
173 |
|
174 |
-
#:
|
175 |
msgid "Background Image:"
|
176 |
msgstr "Hintergrundbild"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Custom Background Color:"
|
180 |
msgstr "benutzerspezifische Hintergrundfarbe:"
|
181 |
|
182 |
-
#: awesome-weather.php:450
|
183 |
-
msgid "(overrides color changing, use hex #7fb761)"
|
184 |
-
msgstr "(schaltet Farbwechsel aus, verwenden Sie hex #7fb761)"
|
185 |
-
|
186 |
-
#: awesome-weather.php:455
|
187 |
-
msgid "Hide Stats:"
|
188 |
-
msgstr "Statistik verbergen"
|
189 |
-
|
190 |
-
#: awesome-weather.php:460
|
191 |
-
msgid "Link to OpenWeatherMap:"
|
192 |
-
msgstr "Link zu OpenWeatherMap:"
|
193 |
-
|
194 |
-
#. Plugin Name of the plugin/theme
|
195 |
-
msgid "Awesome Weather Widget"
|
196 |
-
msgstr "Awesome Weather Widget"
|
197 |
-
|
198 |
-
#. Plugin URI of the plugin/theme
|
199 |
-
msgid "http://halgatewood.com/awesome-weather"
|
200 |
-
msgstr "http://halgatewood.com/awesome-weather"
|
201 |
-
|
202 |
#. Description of the plugin/theme
|
203 |
msgid "A weather widget that actually looks cool"
|
204 |
msgstr "Ein Wetter-Widget, das tatsächlich cool aussieht"
|
@@ -206,7 +318,3 @@ msgstr "Ein Wetter-Widget, das tatsächlich cool aussieht"
|
|
206 |
#. Author of the plugin/theme
|
207 |
msgid "Hal Gatewood"
|
208 |
msgstr "Hal Gatewood"
|
209 |
-
|
210 |
-
#. Author URI of the plugin/theme
|
211 |
-
msgid "http://www.halgatewood.com"
|
212 |
-
msgstr "http://www.halgatewood.com"
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:53:42 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: German\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: de_DE"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:69
|
26 |
+
msgid "OpenWeatherMaps APPID"
|
27 |
+
msgstr "Openweathermap APPID"
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:70
|
30 |
+
msgid "Error Handling"
|
31 |
+
msgstr "Fehlerbehandlung"
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:106
|
34 |
+
msgid "Defined in wp-config"
|
35 |
+
msgstr "Definiert in: wpconfig.php"
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
38 |
+
msgid ""
|
39 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
40 |
+
"weather data."
|
41 |
+
msgstr ""
|
42 |
+
"Ab Oktober 2015 OpenWeatherMaps benötigt diesen Schlüssel, um ihre "
|
43 |
+
"Wetterdaten zugreifen."
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
46 |
+
msgid "Get your APPID"
|
47 |
+
msgstr "Holen Sie sich Ihre APPID"
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:126
|
50 |
+
msgid "Hidden in Source"
|
51 |
+
msgstr "In Quelle verborgen"
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:127
|
54 |
+
msgid "Display if Admin"
|
55 |
+
msgstr "Display für admin"
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:128
|
58 |
+
msgid "Display for Anyone"
|
59 |
+
msgstr "Display für alle"
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:131
|
62 |
+
msgid "What should the plugin do when there is an error?"
|
63 |
+
msgstr "Was soll das Plugin zu tun, wenn es ein Fehler?"
|
64 |
+
|
65 |
+
#: awesome-weather.php:355
|
66 |
+
msgid "m/s"
|
67 |
+
msgstr "m/s"
|
68 |
+
|
69 |
+
#: awesome-weather.php:455
|
70 |
+
msgid "No city found in OpenWeatherMap."
|
71 |
+
msgstr "Keine Stadt in Openweathermap gefunden."
|
72 |
+
|
73 |
+
#: awesome-weather.php:456
|
74 |
+
msgid "Only one location found. The ID has been set automatically above."
|
75 |
+
msgstr "Nur an einer Stelle gefunden. Die ID ist automatisch oben gesetzt."
|
76 |
+
|
77 |
+
#: awesome-weather.php:457
|
78 |
+
msgid "Please confirm your city: "
|
79 |
+
msgstr "Bitte bestätigen Sie Ihre Stadt:"
|
80 |
+
|
81 |
+
#: widget.php:101
|
82 |
+
msgid "and add it to the new settings page."
|
83 |
+
msgstr "und es um die neuen Einstellungen Seite hinzufügen."
|
84 |
+
|
85 |
+
#: widget.php:108
|
86 |
+
msgid "Search for Your Location:"
|
87 |
+
msgstr "Suchen Sie Ihren Standort:"
|
88 |
+
|
89 |
+
#: widget.php:109
|
90 |
+
msgid "(i.e: London or New York City)"
|
91 |
+
msgstr "(das heißt: London oder New York City)"
|
92 |
+
|
93 |
+
#: widget.php:116
|
94 |
+
msgid "OpenWeatherMap City ID:"
|
95 |
+
msgstr "Openweathermap Stadt ID:"
|
96 |
+
|
97 |
+
#: widget.php:117
|
98 |
+
msgid "(use the field above to find the ID for your city)"
|
99 |
+
msgstr "(verwenden Sie das Feld oben, um die ID für Ihre Stadt zu finden)"
|
100 |
+
|
101 |
+
#: widget.php:178
|
102 |
+
msgid "Use Different Background Images Based on Weather"
|
103 |
+
msgstr "Verwenden Sie unterschiedliche Hintergrundbilder Basierend auf Wetter"
|
104 |
+
|
105 |
+
#: widget.php:183
|
106 |
+
msgid "overrides color changing"
|
107 |
+
msgstr "schreibt Farbwechsel"
|
108 |
+
|
109 |
+
#: widget.php:188
|
110 |
+
msgid "Text Color"
|
111 |
+
msgstr "Textfarbe"
|
112 |
+
|
113 |
+
#: widget.php:207
|
114 |
+
msgid "Hide Current Condition Stats"
|
115 |
+
msgstr "Ausblenden Aktuelle Zustand Stats"
|
116 |
+
|
117 |
+
#: widget.php:213
|
118 |
+
msgid "Link to OpenWeatherMap"
|
119 |
+
msgstr "Link zu Openweathermap"
|
120 |
+
|
121 |
+
#: widget.php:217
|
122 |
+
msgid "Widget Title: (optional)"
|
123 |
+
msgstr "Widget Titel: (optional)"
|
124 |
+
|
125 |
+
#. Plugin URI of the plugin/theme
|
126 |
+
msgid "https://halgatewood.com/awesome-weather"
|
127 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
128 |
+
|
129 |
+
#. Author URI of the plugin/theme
|
130 |
+
msgid "https://www.halgatewood.com"
|
131 |
+
msgstr "https://www.halgatewood.com"
|
132 |
+
|
133 |
+
#. Plugin Name of the plugin/theme
|
134 |
+
#: awesome-weather-settings.php:13
|
135 |
+
msgid "Awesome Weather Widget"
|
136 |
+
msgstr "Awesome Weather Widget"
|
137 |
+
|
138 |
+
#: awesome-weather-settings.php:17
|
139 |
+
msgid "Weather Widget Cache Cleared"
|
140 |
+
msgstr "Im Cache Gelöscht"
|
141 |
+
|
142 |
+
#: awesome-weather-settings.php:28
|
143 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
144 |
+
msgstr "Alle löschen Wetter Cache"
|
145 |
+
|
146 |
+
#: awesome-weather-settings.php:42
|
147 |
+
msgid "Settings"
|
148 |
+
msgstr "Einstellungen"
|
149 |
+
|
150 |
+
#: awesome-weather-settings.php:46
|
151 |
+
msgid "API Key Required"
|
152 |
+
msgstr "API-Schlüssel erforderlich"
|
153 |
+
|
154 |
+
#: awesome-weather-settings.php:51
|
155 |
+
msgid "Donate"
|
156 |
+
msgstr "Spenden"
|
157 |
+
|
158 |
+
#: awesome-weather-settings.php:54
|
159 |
+
msgid "Upgrade"
|
160 |
+
msgstr "Aktualisierung"
|
161 |
+
|
162 |
+
#: awesome-weather.php:75
|
163 |
msgid "C"
|
164 |
msgstr "C"
|
165 |
|
166 |
+
#: awesome-weather.php:75
|
167 |
msgid "F"
|
168 |
msgstr "F"
|
169 |
|
170 |
+
#: awesome-weather.php:271
|
171 |
msgid "N"
|
172 |
msgstr "N"
|
173 |
|
174 |
+
#: awesome-weather.php:271
|
175 |
msgid "NNE"
|
176 |
msgstr "NNO"
|
177 |
|
178 |
+
#: awesome-weather.php:271
|
179 |
msgid "NE"
|
180 |
msgstr "NO"
|
181 |
|
182 |
+
#: awesome-weather.php:271
|
183 |
msgid "ENE"
|
184 |
msgstr "ONO"
|
185 |
|
186 |
+
#: awesome-weather.php:271
|
187 |
msgid "E"
|
188 |
msgstr "O"
|
189 |
|
190 |
+
#: awesome-weather.php:271
|
191 |
msgid "ESE"
|
192 |
msgstr "OSO"
|
193 |
|
194 |
+
#: awesome-weather.php:271
|
195 |
msgid "SE"
|
196 |
msgstr "SO"
|
197 |
|
198 |
+
#: awesome-weather.php:271
|
199 |
msgid "SSE"
|
200 |
msgstr "SSO"
|
201 |
|
202 |
+
#: awesome-weather.php:271
|
203 |
msgid "S"
|
204 |
msgstr "S"
|
205 |
|
206 |
+
#: awesome-weather.php:271
|
207 |
msgid "SSW"
|
208 |
msgstr "SSW"
|
209 |
|
210 |
+
#: awesome-weather.php:271
|
211 |
msgid "SW"
|
212 |
msgstr "SW"
|
213 |
|
214 |
+
#: awesome-weather.php:271
|
215 |
msgid "WSW"
|
216 |
msgstr "WSW"
|
217 |
|
218 |
+
#: awesome-weather.php:271
|
219 |
msgid "W"
|
220 |
msgstr "W"
|
221 |
|
222 |
+
#: awesome-weather.php:271
|
223 |
msgid "WNW"
|
224 |
msgstr "WNW"
|
225 |
|
226 |
+
#: awesome-weather.php:271
|
227 |
msgid "NW"
|
228 |
msgstr "NW"
|
229 |
|
230 |
+
#: awesome-weather.php:271
|
231 |
msgid "NNW"
|
232 |
msgstr "NNW"
|
233 |
|
234 |
+
#: awesome-weather.php:355
|
|
|
|
|
|
|
|
|
235 |
msgid "mph"
|
236 |
msgstr "mph"
|
237 |
|
238 |
+
#: awesome-weather.php:364
|
239 |
msgid "humidity:"
|
240 |
msgstr "Luftfeuchtigkeit:"
|
241 |
|
242 |
+
#: awesome-weather.php:365
|
243 |
msgid "wind:"
|
244 |
msgstr "Windstärke:"
|
245 |
|
246 |
+
#: awesome-weather.php:366
|
247 |
msgid "H"
|
248 |
msgstr "MAX"
|
249 |
|
250 |
+
#: awesome-weather.php:366
|
251 |
msgid "L"
|
252 |
msgstr "MIN"
|
253 |
|
254 |
+
#: awesome-weather.php:377
|
255 |
msgid "Sun"
|
256 |
msgstr "SO"
|
257 |
|
258 |
+
#: awesome-weather.php:377
|
259 |
msgid "Mon"
|
260 |
msgstr "MO"
|
261 |
|
262 |
+
#: awesome-weather.php:377
|
263 |
msgid "Tue"
|
264 |
msgstr "DIE"
|
265 |
|
266 |
+
#: awesome-weather.php:377
|
267 |
msgid "Wed"
|
268 |
msgstr "MI"
|
269 |
|
270 |
+
#: awesome-weather.php:377
|
271 |
msgid "Thu"
|
272 |
msgstr "DO"
|
273 |
|
274 |
+
#: awesome-weather.php:377
|
275 |
msgid "Fri"
|
276 |
msgstr "FR"
|
277 |
|
278 |
+
#: awesome-weather.php:377
|
279 |
msgid "Sat"
|
280 |
msgstr "SA"
|
281 |
|
282 |
+
#: awesome-weather.php:397
|
283 |
msgid "extended forecast"
|
284 |
msgstr "langfristige Vorhersage"
|
285 |
|
286 |
+
#: awesome-weather.php:420
|
287 |
msgid "No weather information available"
|
288 |
msgstr "Keine Wetterdaten verfügbar."
|
289 |
|
290 |
+
#: widget.php:130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
msgid "Override Title:"
|
292 |
msgstr "Titel ändern:"
|
293 |
|
294 |
+
#: widget.php:135
|
295 |
msgid "Units:"
|
296 |
msgstr "Einheiten:"
|
297 |
|
298 |
+
#: widget.php:149
|
299 |
msgid "Size:"
|
300 |
msgstr "Größe:"
|
301 |
|
302 |
+
#: widget.php:158
|
303 |
msgid "Forecast:"
|
304 |
msgstr "Vorhersage:"
|
305 |
|
306 |
+
#: widget.php:172
|
307 |
msgid "Background Image:"
|
308 |
msgstr "Hintergrundbild"
|
309 |
|
310 |
+
#: widget.php:182
|
311 |
msgid "Custom Background Color:"
|
312 |
msgstr "benutzerspezifische Hintergrundfarbe:"
|
313 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
#. Description of the plugin/theme
|
315 |
msgid "A weather widget that actually looks cool"
|
316 |
msgstr "Ein Wetter-Widget, das tatsächlich cool aussieht"
|
318 |
#. Author of the plugin/theme
|
319 |
msgid "Hal Gatewood"
|
320 |
msgstr "Hal Gatewood"
|
|
|
|
|
|
|
|
languages/awesome-weather-el.mo
CHANGED
Binary file
|
languages/awesome-weather-el.po
CHANGED
@@ -1,212 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
#: awesome-weather.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:36:12 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Greek\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: el_GR"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: awesome-weather.php:455
|
92 |
+
msgid "No city found in OpenWeatherMap."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: awesome-weather.php:456
|
96 |
+
msgid "Only one location found. The ID has been set automatically above."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: awesome-weather.php:457
|
100 |
+
msgid "Please confirm your city: "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: widget.php:97
|
104 |
+
msgid ""
|
105 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
106 |
+
"weather data."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:101
|
110 |
+
msgid "and add it to the new settings page."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: widget.php:108
|
114 |
+
msgid "Search for Your Location:"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: widget.php:109
|
118 |
+
msgid "(i.e: London or New York City)"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: widget.php:116
|
122 |
+
msgid "OpenWeatherMap City ID:"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: widget.php:117
|
126 |
+
msgid "(use the field above to find the ID for your city)"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: widget.php:178
|
130 |
+
msgid "Use Different Background Images Based on Weather"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: widget.php:183
|
134 |
+
msgid "overrides color changing"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: widget.php:188
|
138 |
+
msgid "Text Color"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: widget.php:207
|
142 |
+
msgid "Hide Current Condition Stats"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: widget.php:213
|
146 |
+
msgid "Link to OpenWeatherMap"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: widget.php:217
|
150 |
+
msgid "Widget Title: (optional)"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#. Plugin URI of the plugin/theme
|
154 |
+
msgid "https://halgatewood.com/awesome-weather"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#. Author URI of the plugin/theme
|
158 |
+
msgid "https://www.halgatewood.com"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#. Plugin Name of the plugin/theme
|
162 |
+
#: awesome-weather-settings.php:13
|
163 |
+
msgid "Awesome Weather Widget"
|
164 |
+
msgstr "Awesome Weather Widget"
|
165 |
+
|
166 |
+
#: awesome-weather.php:75
|
167 |
+
msgid "C"
|
168 |
+
msgstr "C"
|
169 |
+
|
170 |
+
#: awesome-weather.php:75
|
171 |
+
msgid "F"
|
172 |
+
msgstr "F"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "N"
|
176 |
+
msgstr "Β"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "NNE"
|
180 |
+
msgstr "Β-ΒΑ"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "NE"
|
184 |
+
msgstr "ΒΑ"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "ENE"
|
188 |
+
msgstr "Α-ΒΑ"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "E"
|
192 |
+
msgstr "Α"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "ESE"
|
196 |
+
msgstr "Α-ΝΑ"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "SE"
|
200 |
+
msgstr "ΝΑ"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "SSE"
|
204 |
+
msgstr "Ν-ΝΑ"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "S"
|
208 |
+
msgstr "Ν"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "SSW"
|
212 |
+
msgstr "Ν-ΝΔ"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "SW"
|
216 |
+
msgstr "ΝΔ"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "WSW"
|
220 |
+
msgstr "Δ-ΝΔ"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "W"
|
224 |
+
msgstr "Δ"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "WNW"
|
228 |
+
msgstr "Δ-ΒΔ"
|
229 |
+
|
230 |
+
#: awesome-weather.php:271
|
231 |
+
msgid "NW"
|
232 |
+
msgstr "ΒΔ"
|
233 |
+
|
234 |
+
#: awesome-weather.php:271
|
235 |
+
msgid "NNW"
|
236 |
+
msgstr "Β-ΒΔ"
|
237 |
+
|
238 |
+
#: awesome-weather.php:355
|
239 |
+
msgid "mph"
|
240 |
+
msgstr "mph"
|
241 |
+
|
242 |
+
#: awesome-weather.php:364
|
243 |
+
msgid "humidity:"
|
244 |
+
msgstr "Υγρασία:"
|
245 |
+
|
246 |
+
#: awesome-weather.php:365
|
247 |
+
msgid "wind:"
|
248 |
+
msgstr "Άνεμος:"
|
249 |
+
|
250 |
+
#: awesome-weather.php:366
|
251 |
+
msgid "H"
|
252 |
+
msgstr "Ανώτερη"
|
253 |
+
|
254 |
+
#: awesome-weather.php:366
|
255 |
+
msgid "L"
|
256 |
+
msgstr "Κατώτερη"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Sun"
|
260 |
+
msgstr "ΚΥ"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Mon"
|
264 |
+
msgstr "ΔΕ"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Tue"
|
268 |
+
msgstr "ΤΡ"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Wed"
|
272 |
+
msgstr "ΤΕ"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Thu"
|
276 |
+
msgstr "ΠΕ"
|
277 |
+
|
278 |
+
#: awesome-weather.php:377
|
279 |
+
msgid "Fri"
|
280 |
+
msgstr "ΠΑ"
|
281 |
+
|
282 |
+
#: awesome-weather.php:377
|
283 |
+
msgid "Sat"
|
284 |
+
msgstr "ΣΑ"
|
285 |
+
|
286 |
+
#: awesome-weather.php:397
|
287 |
+
msgid "extended forecast"
|
288 |
+
msgstr "Εκτεταμένη πρόγνωση"
|
289 |
+
|
290 |
+
#: awesome-weather.php:420
|
291 |
+
msgid "No weather information available"
|
292 |
+
msgstr "Δεν υπάρχει διαθέσιμη πρόγνωση καιρού"
|
293 |
+
|
294 |
+
#: widget.php:130
|
295 |
+
msgid "Override Title:"
|
296 |
+
msgstr "Βάλτε άλλον τίτλο:"
|
297 |
+
|
298 |
+
#: widget.php:135
|
299 |
+
msgid "Units:"
|
300 |
+
msgstr "Μονάδες:"
|
301 |
+
|
302 |
+
#: widget.php:149
|
303 |
+
msgid "Size:"
|
304 |
+
msgstr "Μέγεθος:"
|
305 |
+
|
306 |
+
#: widget.php:158
|
307 |
+
msgid "Forecast:"
|
308 |
+
msgstr "Πρόγνωση:"
|
309 |
+
|
310 |
+
#: widget.php:172
|
311 |
+
msgid "Background Image:"
|
312 |
+
msgstr "Εικόνα Φόντου:"
|
313 |
+
|
314 |
+
#: widget.php:182
|
315 |
+
msgid "Custom Background Color:"
|
316 |
+
msgstr "Επιλόγη διαφορετικού χρώματος φόντου:"
|
317 |
+
|
318 |
+
#. Description of the plugin/theme
|
319 |
+
msgid "A weather widget that actually looks cool"
|
320 |
+
msgstr "Ένα widget καιρού που είναι πραγματικά ωραίο"
|
321 |
+
|
322 |
+
#. Author of the plugin/theme
|
323 |
+
msgid "Hal Gatewood"
|
324 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-es_ES.mo
CHANGED
Binary file
|
languages/awesome-weather-es_ES.po
CHANGED
@@ -1,216 +1,322 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#: awesome-weather.php:
|
79 |
-
msgid "
|
80 |
-
msgstr "
|
81 |
-
|
82 |
-
#: awesome-weather.php:
|
83 |
-
msgid "
|
84 |
-
msgstr "
|
85 |
-
|
86 |
-
#: awesome-weather.php:
|
87 |
-
msgid "
|
88 |
-
msgstr "
|
89 |
-
|
90 |
-
#: awesome-weather.php:
|
91 |
-
msgid "
|
92 |
-
msgstr "
|
93 |
-
|
94 |
-
#: awesome-weather.php:
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
-
|
98 |
-
#: awesome-weather.php:
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
101 |
-
|
102 |
-
#: awesome-weather.php:
|
103 |
-
msgid "
|
104 |
-
msgstr "
|
105 |
-
|
106 |
-
#: awesome-weather.php:
|
107 |
-
msgid "
|
108 |
-
msgstr "
|
109 |
-
|
110 |
-
#: awesome-weather.php:
|
111 |
-
msgid "
|
112 |
-
msgstr "
|
113 |
-
|
114 |
-
#: awesome-weather.php:
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
-
|
118 |
-
#: awesome-weather.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
-
|
122 |
-
#: awesome-weather.php:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
-
|
126 |
-
#: awesome-weather.php:
|
127 |
-
msgid "
|
128 |
-
msgstr "
|
129 |
-
|
130 |
-
#: awesome-weather.php:
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
133 |
-
|
134 |
-
#: awesome-weather.php:
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
-
|
138 |
-
#: awesome-weather.php:
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
-
|
142 |
-
#: awesome-weather.php:
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
#: awesome-weather.php:
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
-
|
150 |
-
#: awesome-weather.php:
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
-
|
154 |
-
#: awesome-weather.php:
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
#: awesome-weather.php:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: awesome-weather.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: awesome-weather.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
-
|
214 |
-
|
215 |
-
msgid "
|
216 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:49:53 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Spanish (Spain)\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: es_ES"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
26 |
+
msgid ""
|
27 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
28 |
+
"weather data."
|
29 |
+
msgstr ""
|
30 |
+
"A partir de octubre de 2015, OpenWeatherMaps requiere esta tecla para "
|
31 |
+
"acceder a sus datos meteorológicos."
|
32 |
+
|
33 |
+
#: widget.php:101
|
34 |
+
msgid "and add it to the new settings page."
|
35 |
+
msgstr "y añadir a la nueva página de configuración."
|
36 |
+
|
37 |
+
#: widget.php:108
|
38 |
+
msgid "Search for Your Location:"
|
39 |
+
msgstr "Encuentre el local:"
|
40 |
+
|
41 |
+
#: widget.php:109
|
42 |
+
msgid "(i.e: London or New York City)"
|
43 |
+
msgstr "(es decir: Londres o Nueva York)"
|
44 |
+
|
45 |
+
#: widget.php:116
|
46 |
+
msgid "OpenWeatherMap City ID:"
|
47 |
+
msgstr "OpenWeatherMap City ID:"
|
48 |
+
|
49 |
+
#: widget.php:117
|
50 |
+
msgid "(use the field above to find the ID for your city)"
|
51 |
+
msgstr "(utilice el campo de arriba para encontrar el ID de tu ciudad)"
|
52 |
+
|
53 |
+
#: widget.php:178
|
54 |
+
msgid "Use Different Background Images Based on Weather"
|
55 |
+
msgstr "Utilice diferentes imágenes de fondo Basada en El Tiempo"
|
56 |
+
|
57 |
+
#: widget.php:188
|
58 |
+
msgid "Text Color"
|
59 |
+
msgstr "Color de texto"
|
60 |
+
|
61 |
+
#: widget.php:207
|
62 |
+
msgid "Hide Current Condition Stats"
|
63 |
+
msgstr "Ocultar Condiciones actuales hoy"
|
64 |
+
|
65 |
+
#: widget.php:213
|
66 |
+
msgid "Link to OpenWeatherMap"
|
67 |
+
msgstr "Enlace a OpenWeatherMap"
|
68 |
+
|
69 |
+
#. Plugin URI of the plugin/theme
|
70 |
+
msgid "https://halgatewood.com/awesome-weather"
|
71 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
72 |
+
|
73 |
+
#. Author URI of the plugin/theme
|
74 |
+
msgid "https://www.halgatewood.com"
|
75 |
+
msgstr "https://www.halgatewood.com"
|
76 |
+
|
77 |
+
#. Plugin Name of the plugin/theme
|
78 |
+
#: awesome-weather-settings.php:13
|
79 |
+
msgid "Awesome Weather Widget"
|
80 |
+
msgstr "Awesome Weather Widget"
|
81 |
+
|
82 |
+
#: awesome-weather-settings.php:17
|
83 |
+
msgid "Weather Widget Cache Cleared"
|
84 |
+
msgstr "En caché borrado"
|
85 |
+
|
86 |
+
#: awesome-weather-settings.php:28
|
87 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
88 |
+
msgstr "Borrar todos Tiempo caché"
|
89 |
+
|
90 |
+
#: awesome-weather-settings.php:42
|
91 |
+
msgid "Settings"
|
92 |
+
msgstr "Ajustes"
|
93 |
+
|
94 |
+
#: awesome-weather-settings.php:46
|
95 |
+
msgid "API Key Required"
|
96 |
+
msgstr "API Key Obligatorio"
|
97 |
+
|
98 |
+
#: awesome-weather-settings.php:51
|
99 |
+
msgid "Donate"
|
100 |
+
msgstr "Donar"
|
101 |
+
|
102 |
+
#: awesome-weather-settings.php:54
|
103 |
+
msgid "Upgrade"
|
104 |
+
msgstr "Mejorar"
|
105 |
+
|
106 |
+
#: awesome-weather-settings.php:69
|
107 |
+
msgid "OpenWeatherMaps APPID"
|
108 |
+
msgstr "OpenWeatherMap APPID"
|
109 |
+
|
110 |
+
#: awesome-weather-settings.php:70
|
111 |
+
msgid "Error Handling"
|
112 |
+
msgstr "Manejo de errores"
|
113 |
+
|
114 |
+
#: awesome-weather-settings.php:106
|
115 |
+
msgid "Defined in wp-config"
|
116 |
+
msgstr "Definido en: wpconfig.php"
|
117 |
+
|
118 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
119 |
+
msgid "Get your APPID"
|
120 |
+
msgstr "Obtenga su APPID"
|
121 |
+
|
122 |
+
#: awesome-weather-settings.php:126
|
123 |
+
msgid "Hidden in Source"
|
124 |
+
msgstr "Escondido en fuente"
|
125 |
+
|
126 |
+
#: awesome-weather-settings.php:127
|
127 |
+
msgid "Display if Admin"
|
128 |
+
msgstr "Pantalla para admin"
|
129 |
+
|
130 |
+
#: awesome-weather-settings.php:128
|
131 |
+
msgid "Display for Anyone"
|
132 |
+
msgstr "Pantalla para todo el mundo"
|
133 |
+
|
134 |
+
#: awesome-weather-settings.php:131
|
135 |
+
msgid "What should the plugin do when there is an error?"
|
136 |
+
msgstr "¿Qué debe hacer cuando el plugin hay un error?"
|
137 |
+
|
138 |
+
#: awesome-weather.php:75
|
139 |
+
msgid "C"
|
140 |
+
msgstr "ºC"
|
141 |
+
|
142 |
+
#: awesome-weather.php:75
|
143 |
+
msgid "F"
|
144 |
+
msgstr "ºF"
|
145 |
+
|
146 |
+
#: awesome-weather.php:271
|
147 |
+
msgid "N"
|
148 |
+
msgstr "N"
|
149 |
+
|
150 |
+
#: awesome-weather.php:271
|
151 |
+
msgid "NNE"
|
152 |
+
msgstr "NNE"
|
153 |
+
|
154 |
+
#: awesome-weather.php:271
|
155 |
+
msgid "NE"
|
156 |
+
msgstr "NE"
|
157 |
+
|
158 |
+
#: awesome-weather.php:271
|
159 |
+
msgid "ENE"
|
160 |
+
msgstr "ENE"
|
161 |
+
|
162 |
+
#: awesome-weather.php:271
|
163 |
+
msgid "E"
|
164 |
+
msgstr "E"
|
165 |
+
|
166 |
+
#: awesome-weather.php:271
|
167 |
+
msgid "ESE"
|
168 |
+
msgstr "ESE"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "SE"
|
172 |
+
msgstr "SE"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "SSE"
|
176 |
+
msgstr "SSE"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "S"
|
180 |
+
msgstr "S"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "SSW"
|
184 |
+
msgstr "SSO"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "SW"
|
188 |
+
msgstr "SO"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "WSW"
|
192 |
+
msgstr "OSO"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "W"
|
196 |
+
msgstr "O"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "WNW"
|
200 |
+
msgstr "ONO"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "NW"
|
204 |
+
msgstr "NO"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "NNW"
|
208 |
+
msgstr "NNO"
|
209 |
+
|
210 |
+
#: awesome-weather.php:355
|
211 |
+
msgid "mph"
|
212 |
+
msgstr "mph"
|
213 |
+
|
214 |
+
#: awesome-weather.php:355
|
215 |
+
msgid "m/s"
|
216 |
+
msgstr "m/s"
|
217 |
+
|
218 |
+
#: awesome-weather.php:364
|
219 |
+
msgid "humidity:"
|
220 |
+
msgstr "Humedad:"
|
221 |
+
|
222 |
+
#: awesome-weather.php:365
|
223 |
+
msgid "wind:"
|
224 |
+
msgstr "Viento:"
|
225 |
+
|
226 |
+
#: awesome-weather.php:366
|
227 |
+
msgid "H"
|
228 |
+
msgstr "Máx:"
|
229 |
+
|
230 |
+
#: awesome-weather.php:366
|
231 |
+
msgid "L"
|
232 |
+
msgstr "Mín:"
|
233 |
+
|
234 |
+
#: awesome-weather.php:377
|
235 |
+
msgid "Sun"
|
236 |
+
msgstr "Dom"
|
237 |
+
|
238 |
+
#: awesome-weather.php:377
|
239 |
+
msgid "Mon"
|
240 |
+
msgstr "Lun"
|
241 |
+
|
242 |
+
#: awesome-weather.php:377
|
243 |
+
msgid "Tue"
|
244 |
+
msgstr "Mar"
|
245 |
+
|
246 |
+
#: awesome-weather.php:377
|
247 |
+
msgid "Wed"
|
248 |
+
msgstr "Mie"
|
249 |
+
|
250 |
+
#: awesome-weather.php:377
|
251 |
+
msgid "Thu"
|
252 |
+
msgstr "Jue"
|
253 |
+
|
254 |
+
#: awesome-weather.php:377
|
255 |
+
msgid "Fri"
|
256 |
+
msgstr "Vie"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Sat"
|
260 |
+
msgstr "Sab"
|
261 |
+
|
262 |
+
#: awesome-weather.php:397
|
263 |
+
msgid "extended forecast"
|
264 |
+
msgstr "pronóstico extendido"
|
265 |
+
|
266 |
+
#: awesome-weather.php:420
|
267 |
+
msgid "No weather information available"
|
268 |
+
msgstr "Predicción meteorológica no disponible"
|
269 |
+
|
270 |
+
#: awesome-weather.php:455
|
271 |
+
msgid "No city found in OpenWeatherMap."
|
272 |
+
msgstr "No hay resultados en OpenWeatherMap ciudad."
|
273 |
+
|
274 |
+
#: awesome-weather.php:456
|
275 |
+
msgid "Only one location found. The ID has been set automatically above."
|
276 |
+
msgstr ""
|
277 |
+
"Sólo una ubicación encontrada. La ID se ha establecido de forma automática "
|
278 |
+
"arriba."
|
279 |
+
|
280 |
+
#: awesome-weather.php:457
|
281 |
+
msgid "Please confirm your city: "
|
282 |
+
msgstr "Confirme su ciudad:"
|
283 |
+
|
284 |
+
#: widget.php:130
|
285 |
+
msgid "Override Title:"
|
286 |
+
msgstr "Sobrescribir Título"
|
287 |
+
|
288 |
+
#: widget.php:135
|
289 |
+
msgid "Units:"
|
290 |
+
msgstr "Unidades:"
|
291 |
+
|
292 |
+
#: widget.php:149
|
293 |
+
msgid "Size:"
|
294 |
+
msgstr "Tamaño:"
|
295 |
+
|
296 |
+
#: widget.php:158
|
297 |
+
msgid "Forecast:"
|
298 |
+
msgstr "Pronóstico:"
|
299 |
+
|
300 |
+
#: widget.php:172
|
301 |
+
msgid "Background Image:"
|
302 |
+
msgstr "Imagen de fondo:"
|
303 |
+
|
304 |
+
#: widget.php:182
|
305 |
+
msgid "Custom Background Color:"
|
306 |
+
msgstr "Color de fondo personalizado:"
|
307 |
+
|
308 |
+
#: widget.php:183
|
309 |
+
msgid "overrides color changing"
|
310 |
+
msgstr "Sobreescribir color"
|
311 |
+
|
312 |
+
#: widget.php:217
|
313 |
+
msgid "Widget Title: (optional)"
|
314 |
+
msgstr "Título del Widget: (optional)"
|
315 |
+
|
316 |
+
#. Description of the plugin/theme
|
317 |
+
msgid "A weather widget that actually looks cool"
|
318 |
+
msgstr "Un widget del tiempo que realmente se ve bien"
|
319 |
+
|
320 |
+
#. Author of the plugin/theme
|
321 |
+
msgid "Hal Gatewood"
|
322 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-fi.mo
CHANGED
Binary file
|
languages/awesome-weather-fi.po
CHANGED
@@ -1,216 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
#: awesome-weather.php:
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
#: awesome-weather.php:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: awesome-weather.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: awesome-weather.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
-
|
214 |
-
|
215 |
-
msgid "
|
216 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:39:07 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Finnish\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: fi_FI"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: awesome-weather.php:455
|
92 |
+
msgid "No city found in OpenWeatherMap."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: awesome-weather.php:456
|
96 |
+
msgid "Only one location found. The ID has been set automatically above."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: awesome-weather.php:457
|
100 |
+
msgid "Please confirm your city: "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: widget.php:97
|
104 |
+
msgid ""
|
105 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
106 |
+
"weather data."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:101
|
110 |
+
msgid "and add it to the new settings page."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: widget.php:108
|
114 |
+
msgid "Search for Your Location:"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: widget.php:109
|
118 |
+
msgid "(i.e: London or New York City)"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: widget.php:116
|
122 |
+
msgid "OpenWeatherMap City ID:"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: widget.php:117
|
126 |
+
msgid "(use the field above to find the ID for your city)"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: widget.php:178
|
130 |
+
msgid "Use Different Background Images Based on Weather"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: widget.php:188
|
134 |
+
msgid "Text Color"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: widget.php:207
|
138 |
+
msgid "Hide Current Condition Stats"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: widget.php:213
|
142 |
+
msgid "Link to OpenWeatherMap"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#. Plugin URI of the plugin/theme
|
146 |
+
msgid "https://halgatewood.com/awesome-weather"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#. Author URI of the plugin/theme
|
150 |
+
msgid "https://www.halgatewood.com"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#. Plugin Name of the plugin/theme
|
154 |
+
#: awesome-weather-settings.php:13
|
155 |
+
msgid "Awesome Weather Widget"
|
156 |
+
msgstr "Awesome Weather Widget"
|
157 |
+
|
158 |
+
#: awesome-weather.php:75
|
159 |
+
msgid "C"
|
160 |
+
msgstr "C"
|
161 |
+
|
162 |
+
#: awesome-weather.php:75
|
163 |
+
msgid "F"
|
164 |
+
msgstr "F"
|
165 |
+
|
166 |
+
#: awesome-weather.php:271
|
167 |
+
msgid "N"
|
168 |
+
msgstr "P"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "NNE"
|
172 |
+
msgstr "NNE"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "NE"
|
176 |
+
msgstr "NE"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "ENE"
|
180 |
+
msgstr "ENE"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "E"
|
184 |
+
msgstr "I"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "ESE"
|
188 |
+
msgstr "ESE"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "SE"
|
192 |
+
msgstr "SE"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "SSE"
|
196 |
+
msgstr "SSE"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "S"
|
200 |
+
msgstr "E"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "SSW"
|
204 |
+
msgstr "SSW"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "SW"
|
208 |
+
msgstr "SW"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "WSW"
|
212 |
+
msgstr "WSW"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "W"
|
216 |
+
msgstr "L"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "WNW"
|
220 |
+
msgstr "WNW"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "NW"
|
224 |
+
msgstr "NW"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "NNW"
|
228 |
+
msgstr "NNW"
|
229 |
+
|
230 |
+
#: awesome-weather.php:355
|
231 |
+
msgid "mph"
|
232 |
+
msgstr "mph"
|
233 |
+
|
234 |
+
#: awesome-weather.php:364
|
235 |
+
msgid "humidity:"
|
236 |
+
msgstr "kosteus:"
|
237 |
+
|
238 |
+
#: awesome-weather.php:365
|
239 |
+
msgid "wind:"
|
240 |
+
msgstr "tuuli:"
|
241 |
+
|
242 |
+
#: awesome-weather.php:366
|
243 |
+
msgid "H"
|
244 |
+
msgstr "H"
|
245 |
+
|
246 |
+
#: awesome-weather.php:366
|
247 |
+
msgid "L"
|
248 |
+
msgstr "L"
|
249 |
+
|
250 |
+
#: awesome-weather.php:377
|
251 |
+
msgid "Sun"
|
252 |
+
msgstr "Su"
|
253 |
+
|
254 |
+
#: awesome-weather.php:377
|
255 |
+
msgid "Mon"
|
256 |
+
msgstr "Ma"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Tue"
|
260 |
+
msgstr "Ti"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Wed"
|
264 |
+
msgstr "Ke"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Thu"
|
268 |
+
msgstr "To"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Fri"
|
272 |
+
msgstr "Pe"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Sat"
|
276 |
+
msgstr "La"
|
277 |
+
|
278 |
+
#: awesome-weather.php:397
|
279 |
+
msgid "extended forecast"
|
280 |
+
msgstr "laajennettu ennuste"
|
281 |
+
|
282 |
+
#: awesome-weather.php:420
|
283 |
+
msgid "No weather information available"
|
284 |
+
msgstr "Säätietoja ei saatavilla"
|
285 |
+
|
286 |
+
#: widget.php:130
|
287 |
+
msgid "Override Title:"
|
288 |
+
msgstr "Korvaa otsikko:"
|
289 |
+
|
290 |
+
#: widget.php:135
|
291 |
+
msgid "Units:"
|
292 |
+
msgstr "Yksiköt:"
|
293 |
+
|
294 |
+
#: widget.php:149
|
295 |
+
msgid "Size:"
|
296 |
+
msgstr "Koko:"
|
297 |
+
|
298 |
+
#: widget.php:158
|
299 |
+
msgid "Forecast:"
|
300 |
+
msgstr "Ennuste:"
|
301 |
+
|
302 |
+
#: widget.php:172
|
303 |
+
msgid "Background Image:"
|
304 |
+
msgstr "Taustakuva:"
|
305 |
+
|
306 |
+
#: widget.php:182
|
307 |
+
msgid "Custom Background Color:"
|
308 |
+
msgstr "Muokattu taustaväli:"
|
309 |
+
|
310 |
+
#: widget.php:183
|
311 |
+
msgid "overrides color changing"
|
312 |
+
msgstr "Korvaa värisävy"
|
313 |
+
|
314 |
+
#: widget.php:217
|
315 |
+
msgid "Widget Title: (optional)"
|
316 |
+
msgstr "Vimpaimen otsikko: (valinnainen)"
|
317 |
+
|
318 |
+
#. Description of the plugin/theme
|
319 |
+
msgid "A weather widget that actually looks cool"
|
320 |
+
msgstr "Vimpain säätiedoille, joka näyttää oikeasti hyvältä"
|
321 |
+
|
322 |
+
#. Author of the plugin/theme
|
323 |
+
msgid "Hal Gatewood"
|
324 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-fr_FR.mo
CHANGED
Binary file
|
languages/awesome-weather-fr_FR.po
CHANGED
@@ -1,212 +1,320 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
#: awesome-weather.php:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: awesome-weather.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:46:06 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: French (France)\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n > 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: fr_FR"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr "Cache effacé"
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr "Effacer tout cache pour : Awesome Weather Widget"
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr "Paramètres"
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr "API clé requise"
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr "Donner\n"
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr "Amélioration"
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr "OpenWeatherMap APPID"
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr "La gestion des erreurs"
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr "Défini dans: wpconfig.php"
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
"En Octobre 2015, OpenWeatherMaps exige cette touche pour accéder à leurs "
|
67 |
+
"données météorologiques."
|
68 |
+
|
69 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
70 |
+
msgid "Get your APPID"
|
71 |
+
msgstr "Obtenez votre APPID"
|
72 |
+
|
73 |
+
#: awesome-weather-settings.php:126
|
74 |
+
msgid "Hidden in Source"
|
75 |
+
msgstr "Caché dans source"
|
76 |
+
|
77 |
+
#: awesome-weather-settings.php:127
|
78 |
+
msgid "Display if Admin"
|
79 |
+
msgstr "Affichage de l'admin"
|
80 |
+
|
81 |
+
#: awesome-weather-settings.php:128
|
82 |
+
msgid "Display for Anyone"
|
83 |
+
msgstr "Affichage pour tout le monde"
|
84 |
+
|
85 |
+
#: awesome-weather-settings.php:131
|
86 |
+
msgid "What should the plugin do when there is an error?"
|
87 |
+
msgstr "Qu'est-ce que le plugin devrait faire quand il ya une erreur?"
|
88 |
+
|
89 |
+
#: awesome-weather.php:355
|
90 |
+
msgid "m/s"
|
91 |
+
msgstr "m/s"
|
92 |
+
|
93 |
+
#: awesome-weather.php:455
|
94 |
+
msgid "No city found in OpenWeatherMap."
|
95 |
+
msgstr "Aucune ville trouvé dans OpenWeatherMap."
|
96 |
+
|
97 |
+
#: awesome-weather.php:456
|
98 |
+
msgid "Only one location found. The ID has been set automatically above."
|
99 |
+
msgstr "Un seul emplacement trouvé. L'ID a été mis automatiquement au-dessus."
|
100 |
+
|
101 |
+
#: awesome-weather.php:457
|
102 |
+
msgid "Please confirm your city: "
|
103 |
+
msgstr "Confirmer votre ville:"
|
104 |
+
|
105 |
+
#: widget.php:101
|
106 |
+
msgid "and add it to the new settings page."
|
107 |
+
msgstr "et l'ajouter à la nouvelle page des paramètres."
|
108 |
+
|
109 |
+
#: widget.php:108
|
110 |
+
msgid "Search for Your Location:"
|
111 |
+
msgstr "Rechercher votre lieu:"
|
112 |
+
|
113 |
+
#: widget.php:109
|
114 |
+
msgid "(i.e: London or New York City)"
|
115 |
+
msgstr "(à savoir: Londres ou New York City)"
|
116 |
+
|
117 |
+
#: widget.php:116
|
118 |
+
msgid "OpenWeatherMap City ID:"
|
119 |
+
msgstr "OpenWeatherMap Ville ID:"
|
120 |
+
|
121 |
+
#: widget.php:117
|
122 |
+
msgid "(use the field above to find the ID for your city)"
|
123 |
+
msgstr "(utiliser le champ ci-dessus pour trouver l'ID de votre ville)"
|
124 |
+
|
125 |
+
#: widget.php:178
|
126 |
+
msgid "Use Different Background Images Based on Weather"
|
127 |
+
msgstr "Utilisez fond différent images basées sur météo"
|
128 |
+
|
129 |
+
#: widget.php:183
|
130 |
+
msgid "overrides color changing"
|
131 |
+
msgstr "remplace changement de couleur"
|
132 |
+
|
133 |
+
#: widget.php:188
|
134 |
+
msgid "Text Color"
|
135 |
+
msgstr "Couleur du texte"
|
136 |
+
|
137 |
+
#: widget.php:207
|
138 |
+
msgid "Hide Current Condition Stats"
|
139 |
+
msgstr "Cacher état actuel stats"
|
140 |
+
|
141 |
+
#: widget.php:213
|
142 |
+
msgid "Link to OpenWeatherMap"
|
143 |
+
msgstr "Lien vers OpenWeatherMap"
|
144 |
+
|
145 |
+
#: widget.php:217
|
146 |
+
msgid "Widget Title: (optional)"
|
147 |
+
msgstr "Titre Widget: (facultatif)"
|
148 |
+
|
149 |
+
#. Plugin URI of the plugin/theme
|
150 |
+
msgid "https://halgatewood.com/awesome-weather"
|
151 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
152 |
+
|
153 |
+
#. Author URI of the plugin/theme
|
154 |
+
msgid "https://www.halgatewood.com"
|
155 |
+
msgstr "https://www.halgatewood.com"
|
156 |
+
|
157 |
+
#. Plugin Name of the plugin/theme
|
158 |
+
#: awesome-weather-settings.php:13
|
159 |
+
msgid "Awesome Weather Widget"
|
160 |
+
msgstr "Awesome Weather Widget"
|
161 |
+
|
162 |
+
#: awesome-weather.php:75
|
163 |
+
msgid "C"
|
164 |
+
msgstr "C"
|
165 |
+
|
166 |
+
#: awesome-weather.php:75
|
167 |
+
msgid "F"
|
168 |
+
msgstr "F"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "N"
|
172 |
+
msgstr "N"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "NNE"
|
176 |
+
msgstr "NNO"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "NE"
|
180 |
+
msgstr "NO"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "ENE"
|
184 |
+
msgstr "ONO"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "E"
|
188 |
+
msgstr "O"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "ESE"
|
192 |
+
msgstr "OSO"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "SE"
|
196 |
+
msgstr "SO"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "SSE"
|
200 |
+
msgstr "SSO"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "S"
|
204 |
+
msgstr "S"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "SSW"
|
208 |
+
msgstr "SSO"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "SW"
|
212 |
+
msgstr "SO"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "WSW"
|
216 |
+
msgstr "OSO"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "W"
|
220 |
+
msgstr "O"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "WNW"
|
224 |
+
msgstr "ONO"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "NW"
|
228 |
+
msgstr "NO"
|
229 |
+
|
230 |
+
#: awesome-weather.php:271
|
231 |
+
msgid "NNW"
|
232 |
+
msgstr "NNO"
|
233 |
+
|
234 |
+
#: awesome-weather.php:355
|
235 |
+
msgid "mph"
|
236 |
+
msgstr "mph"
|
237 |
+
|
238 |
+
#: awesome-weather.php:364
|
239 |
+
msgid "humidity:"
|
240 |
+
msgstr "humidité:"
|
241 |
+
|
242 |
+
#: awesome-weather.php:365
|
243 |
+
msgid "wind:"
|
244 |
+
msgstr "vent:"
|
245 |
+
|
246 |
+
#: awesome-weather.php:366
|
247 |
+
msgid "H"
|
248 |
+
msgstr "MAX"
|
249 |
+
|
250 |
+
#: awesome-weather.php:366
|
251 |
+
msgid "L"
|
252 |
+
msgstr "MIN"
|
253 |
+
|
254 |
+
#: awesome-weather.php:377
|
255 |
+
msgid "Sun"
|
256 |
+
msgstr "Dim"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Mon"
|
260 |
+
msgstr "Lun"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Tue"
|
264 |
+
msgstr "Mar"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Wed"
|
268 |
+
msgstr "Mer"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Thu"
|
272 |
+
msgstr "Jeu"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Fri"
|
276 |
+
msgstr "Ven"
|
277 |
+
|
278 |
+
#: awesome-weather.php:377
|
279 |
+
msgid "Sat"
|
280 |
+
msgstr "Sam"
|
281 |
+
|
282 |
+
#: awesome-weather.php:397
|
283 |
+
msgid "extended forecast"
|
284 |
+
msgstr "Prévisions à long terme"
|
285 |
+
|
286 |
+
#: awesome-weather.php:420
|
287 |
+
msgid "No weather information available"
|
288 |
+
msgstr "Pas d'information météo disponible"
|
289 |
+
|
290 |
+
#: widget.php:130
|
291 |
+
msgid "Override Title:"
|
292 |
+
msgstr "Remplacer le titre:"
|
293 |
+
|
294 |
+
#: widget.php:135
|
295 |
+
msgid "Units:"
|
296 |
+
msgstr "Unités:"
|
297 |
+
|
298 |
+
#: widget.php:149
|
299 |
+
msgid "Size:"
|
300 |
+
msgstr "Taille:"
|
301 |
+
|
302 |
+
#: widget.php:158
|
303 |
+
msgid "Forecast:"
|
304 |
+
msgstr "Prévision:"
|
305 |
+
|
306 |
+
#: widget.php:172
|
307 |
+
msgid "Background Image:"
|
308 |
+
msgstr "Image de fond"
|
309 |
+
|
310 |
+
#: widget.php:182
|
311 |
+
msgid "Custom Background Color:"
|
312 |
+
msgstr "Couleur de fond personnalisée:"
|
313 |
+
|
314 |
+
#. Description of the plugin/theme
|
315 |
+
msgid "A weather widget that actually looks cool"
|
316 |
+
msgstr "Un widget Météo qui est cool"
|
317 |
+
|
318 |
+
#. Author of the plugin/theme
|
319 |
+
msgid "Hal Gatewood"
|
320 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-hr.mo
CHANGED
Binary file
|
languages/awesome-weather-hr.po
CHANGED
@@ -1,215 +1,325 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:40:06 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Croatian\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: hr_HR"
|
25 |
+
|
26 |
+
#: awesome-weather-settings.php:17
|
27 |
+
msgid "Weather Widget Cache Cleared"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: awesome-weather-settings.php:28
|
31 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: awesome-weather-settings.php:42
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: awesome-weather-settings.php:46
|
39 |
+
msgid "API Key Required"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: awesome-weather-settings.php:51
|
43 |
+
msgid "Donate"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: awesome-weather-settings.php:54
|
47 |
+
msgid "Upgrade"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: awesome-weather-settings.php:69
|
51 |
+
msgid "OpenWeatherMaps APPID"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: awesome-weather-settings.php:70
|
55 |
+
msgid "Error Handling"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: awesome-weather-settings.php:106
|
59 |
+
msgid "Defined in wp-config"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: awesome-weather-settings.php:113
|
63 |
+
msgid ""
|
64 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
65 |
+
"weather data."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
69 |
+
msgid "Get your APPID"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: awesome-weather-settings.php:126
|
73 |
+
msgid "Hidden in Source"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: awesome-weather-settings.php:127
|
77 |
+
msgid "Display if Admin"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: awesome-weather-settings.php:128
|
81 |
+
msgid "Display for Anyone"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: awesome-weather-settings.php:131
|
85 |
+
msgid "What should the plugin do when there is an error?"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: awesome-weather.php:355
|
89 |
+
msgid "m/s"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: awesome-weather.php:455
|
93 |
+
msgid "No city found in OpenWeatherMap."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: awesome-weather.php:456
|
97 |
+
msgid "Only one location found. The ID has been set automatically above."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: awesome-weather.php:457
|
101 |
+
msgid "Please confirm your city: "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: widget.php:97
|
105 |
+
msgid ""
|
106 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
107 |
+
"weather data."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: widget.php:101
|
111 |
+
msgid "and add it to the new settings page."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: widget.php:108
|
115 |
+
msgid "Search for Your Location:"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: widget.php:109
|
119 |
+
msgid "(i.e: London or New York City)"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: widget.php:116
|
123 |
+
msgid "OpenWeatherMap City ID:"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: widget.php:117
|
127 |
+
msgid "(use the field above to find the ID for your city)"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: widget.php:178
|
131 |
+
msgid "Use Different Background Images Based on Weather"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: widget.php:188
|
135 |
+
msgid "Text Color"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: widget.php:207
|
139 |
+
msgid "Hide Current Condition Stats"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: widget.php:213
|
143 |
+
msgid "Link to OpenWeatherMap"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#. Plugin URI of the plugin/theme
|
147 |
+
msgid "https://halgatewood.com/awesome-weather"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#. Author URI of the plugin/theme
|
151 |
+
msgid "https://www.halgatewood.com"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#. Plugin Name of the plugin/theme
|
155 |
+
#: awesome-weather-settings.php:13
|
156 |
+
msgid "Awesome Weather Widget"
|
157 |
+
msgstr "Awesome Weather Widget"
|
158 |
+
|
159 |
+
#: awesome-weather.php:75
|
160 |
+
msgid "C"
|
161 |
+
msgstr "C"
|
162 |
+
|
163 |
+
#: awesome-weather.php:75
|
164 |
+
msgid "F"
|
165 |
+
msgstr "F"
|
166 |
+
|
167 |
+
#: awesome-weather.php:271
|
168 |
+
msgid "N"
|
169 |
+
msgstr "S"
|
170 |
+
|
171 |
+
#: awesome-weather.php:271
|
172 |
+
msgid "NNE"
|
173 |
+
msgstr "SSI"
|
174 |
+
|
175 |
+
#: awesome-weather.php:271
|
176 |
+
msgid "NE"
|
177 |
+
msgstr "SO"
|
178 |
+
|
179 |
+
#: awesome-weather.php:271
|
180 |
+
msgid "ENE"
|
181 |
+
msgstr "ISI"
|
182 |
+
|
183 |
+
#: awesome-weather.php:271
|
184 |
+
msgid "E"
|
185 |
+
msgstr "I"
|
186 |
+
|
187 |
+
#: awesome-weather.php:271
|
188 |
+
msgid "ESE"
|
189 |
+
msgstr "IJI"
|
190 |
+
|
191 |
+
#: awesome-weather.php:271
|
192 |
+
msgid "SE"
|
193 |
+
msgstr "JI"
|
194 |
+
|
195 |
+
#: awesome-weather.php:271
|
196 |
+
msgid "SSE"
|
197 |
+
msgstr "JJI"
|
198 |
+
|
199 |
+
#: awesome-weather.php:271
|
200 |
+
msgid "S"
|
201 |
+
msgstr "J"
|
202 |
+
|
203 |
+
#: awesome-weather.php:271
|
204 |
+
msgid "SSW"
|
205 |
+
msgstr "JJZ"
|
206 |
+
|
207 |
+
#: awesome-weather.php:271
|
208 |
+
msgid "SW"
|
209 |
+
msgstr "JZ"
|
210 |
+
|
211 |
+
#: awesome-weather.php:271
|
212 |
+
msgid "WSW"
|
213 |
+
msgstr "ZJZ"
|
214 |
+
|
215 |
+
#: awesome-weather.php:271
|
216 |
+
msgid "W"
|
217 |
+
msgstr "Z"
|
218 |
+
|
219 |
+
#: awesome-weather.php:271
|
220 |
+
msgid "WNW"
|
221 |
+
msgstr "ZSZ"
|
222 |
+
|
223 |
+
#: awesome-weather.php:271
|
224 |
+
msgid "NW"
|
225 |
+
msgstr "SZ"
|
226 |
+
|
227 |
+
#: awesome-weather.php:271
|
228 |
+
msgid "NNW"
|
229 |
+
msgstr "SSZ"
|
230 |
+
|
231 |
+
#: awesome-weather.php:355
|
232 |
+
msgid "mph"
|
233 |
+
msgstr "mph"
|
234 |
+
|
235 |
+
#: awesome-weather.php:364
|
236 |
+
msgid "humidity:"
|
237 |
+
msgstr "vlaga:"
|
238 |
+
|
239 |
+
#: awesome-weather.php:365
|
240 |
+
msgid "wind:"
|
241 |
+
msgstr "vjetar:"
|
242 |
+
|
243 |
+
#: awesome-weather.php:366
|
244 |
+
msgid "H"
|
245 |
+
msgstr "Maks."
|
246 |
+
|
247 |
+
#: awesome-weather.php:366
|
248 |
+
msgid "L"
|
249 |
+
msgstr "Min."
|
250 |
+
|
251 |
+
#: awesome-weather.php:377
|
252 |
+
msgid "Sun"
|
253 |
+
msgstr "Ned"
|
254 |
+
|
255 |
+
#: awesome-weather.php:377
|
256 |
+
msgid "Mon"
|
257 |
+
msgstr "Pon"
|
258 |
+
|
259 |
+
#: awesome-weather.php:377
|
260 |
+
msgid "Tue"
|
261 |
+
msgstr "Uto"
|
262 |
+
|
263 |
+
#: awesome-weather.php:377
|
264 |
+
msgid "Wed"
|
265 |
+
msgstr "Sri"
|
266 |
+
|
267 |
+
#: awesome-weather.php:377
|
268 |
+
msgid "Thu"
|
269 |
+
msgstr "Čet"
|
270 |
+
|
271 |
+
#: awesome-weather.php:377
|
272 |
+
msgid "Fri"
|
273 |
+
msgstr "Pet"
|
274 |
+
|
275 |
+
#: awesome-weather.php:377
|
276 |
+
msgid "Sat"
|
277 |
+
msgstr "Sub"
|
278 |
+
|
279 |
+
#: awesome-weather.php:397
|
280 |
+
msgid "extended forecast"
|
281 |
+
msgstr "detaljna prognoza"
|
282 |
+
|
283 |
+
#: awesome-weather.php:420
|
284 |
+
msgid "No weather information available"
|
285 |
+
msgstr "Podaci nisu dostupni"
|
286 |
+
|
287 |
+
#: widget.php:130
|
288 |
+
msgid "Override Title:"
|
289 |
+
msgstr "Prilagođeni naslov"
|
290 |
+
|
291 |
+
#: widget.php:135
|
292 |
+
msgid "Units:"
|
293 |
+
msgstr "Jedinice:"
|
294 |
+
|
295 |
+
#: widget.php:149
|
296 |
+
msgid "Size:"
|
297 |
+
msgstr "Veličina:"
|
298 |
+
|
299 |
+
#: widget.php:158
|
300 |
+
msgid "Forecast:"
|
301 |
+
msgstr "Prognoza:"
|
302 |
+
|
303 |
+
#: widget.php:172
|
304 |
+
msgid "Background Image:"
|
305 |
+
msgstr "Pozadinska slika:"
|
306 |
+
|
307 |
+
#: widget.php:182
|
308 |
+
msgid "Custom Background Color:"
|
309 |
+
msgstr "Prilagođena boja pozadine"
|
310 |
+
|
311 |
+
#: widget.php:183
|
312 |
+
msgid "overrides color changing"
|
313 |
+
msgstr "onemogućuje izmjene boja"
|
314 |
+
|
315 |
+
#: widget.php:217
|
316 |
+
msgid "Widget Title: (optional)"
|
317 |
+
msgstr "Naslov widgeta: (opcionalno)"
|
318 |
+
|
319 |
+
#. Description of the plugin/theme
|
320 |
+
msgid "A weather widget that actually looks cool"
|
321 |
+
msgstr "A weather widget that actually looks cool"
|
322 |
+
|
323 |
+
#. Author of the plugin/theme
|
324 |
+
msgid "Hal Gatewood"
|
325 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-hu_HU.mo
CHANGED
Binary file
|
languages/awesome-weather-hu_HU.po
CHANGED
@@ -1,214 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
msgstr "
|
66 |
-
|
67 |
-
#: awesome-weather.php:
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
#: awesome-weather.php:
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
-
|
75 |
-
#: awesome-weather.php:
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
-
|
79 |
-
#: awesome-weather.php:
|
80 |
-
msgid "
|
81 |
-
msgstr "
|
82 |
-
|
83 |
-
#: awesome-weather.php:
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
-
|
87 |
-
#: awesome-weather.php:
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
-
|
91 |
-
#: awesome-weather.php:
|
92 |
-
msgid "
|
93 |
-
msgstr "
|
94 |
-
|
95 |
-
#: awesome-weather.php:
|
96 |
-
msgid "
|
97 |
-
msgstr "
|
98 |
-
|
99 |
-
#: awesome-weather.php:
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
-
|
103 |
-
#:
|
104 |
-
msgid "
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:40:43 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Hungarian\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Poedit-Basepath: .\n"
|
16 |
+
"X-Poedit-SearchPath-0: ..\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
18 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
19 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
20 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
21 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Loco-Target-Locale: hu_HU\n"
|
23 |
+
"X-Generator: Loco - https://localise.biz/"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: awesome-weather.php:455
|
92 |
+
msgid "No city found in OpenWeatherMap."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: awesome-weather.php:456
|
96 |
+
msgid "Only one location found. The ID has been set automatically above."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: awesome-weather.php:457
|
100 |
+
msgid "Please confirm your city: "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: widget.php:97
|
104 |
+
msgid ""
|
105 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
106 |
+
"weather data."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:101
|
110 |
+
msgid "and add it to the new settings page."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: widget.php:108
|
114 |
+
msgid "Search for Your Location:"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: widget.php:109
|
118 |
+
msgid "(i.e: London or New York City)"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: widget.php:116
|
122 |
+
msgid "OpenWeatherMap City ID:"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: widget.php:117
|
126 |
+
msgid "(use the field above to find the ID for your city)"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: widget.php:178
|
130 |
+
msgid "Use Different Background Images Based on Weather"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: widget.php:188
|
134 |
+
msgid "Text Color"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: widget.php:207
|
138 |
+
msgid "Hide Current Condition Stats"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: widget.php:213
|
142 |
+
msgid "Link to OpenWeatherMap"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#. Plugin URI of the plugin/theme
|
146 |
+
msgid "https://halgatewood.com/awesome-weather"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#. Author URI of the plugin/theme
|
150 |
+
msgid "https://www.halgatewood.com"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#. Plugin Name of the plugin/theme
|
154 |
+
#: awesome-weather-settings.php:13
|
155 |
+
msgid "Awesome Weather Widget"
|
156 |
+
msgstr "Awesome Weather Widget"
|
157 |
+
|
158 |
+
#: awesome-weather.php:75
|
159 |
+
msgid "C"
|
160 |
+
msgstr "C"
|
161 |
+
|
162 |
+
#: awesome-weather.php:75
|
163 |
+
msgid "F"
|
164 |
+
msgstr "F"
|
165 |
+
|
166 |
+
#: awesome-weather.php:271
|
167 |
+
msgid "N"
|
168 |
+
msgstr "É"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "NNE"
|
172 |
+
msgstr "ÉÉK"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "NE"
|
176 |
+
msgstr "ÉK"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "ENE"
|
180 |
+
msgstr "KÉK"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "E"
|
184 |
+
msgstr "K"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "ESE"
|
188 |
+
msgstr "KDK"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "SE"
|
192 |
+
msgstr "DK"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "SSE"
|
196 |
+
msgstr "DDK"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "S"
|
200 |
+
msgstr "D"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "SSW"
|
204 |
+
msgstr "DDNy"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "SW"
|
208 |
+
msgstr "DNy"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "WSW"
|
212 |
+
msgstr "NyDNy"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "W"
|
216 |
+
msgstr "Ny"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "WNW"
|
220 |
+
msgstr "NyÉNy"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "NW"
|
224 |
+
msgstr "ÉNy"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "NNW"
|
228 |
+
msgstr "ÉÉNy"
|
229 |
+
|
230 |
+
#: awesome-weather.php:355
|
231 |
+
msgid "mph"
|
232 |
+
msgstr "mph"
|
233 |
+
|
234 |
+
#: awesome-weather.php:364
|
235 |
+
msgid "humidity:"
|
236 |
+
msgstr "páratartalom:"
|
237 |
+
|
238 |
+
#: awesome-weather.php:365
|
239 |
+
msgid "wind:"
|
240 |
+
msgstr "szél:"
|
241 |
+
|
242 |
+
#: awesome-weather.php:366
|
243 |
+
msgid "H"
|
244 |
+
msgstr "Max"
|
245 |
+
|
246 |
+
#: awesome-weather.php:366
|
247 |
+
msgid "L"
|
248 |
+
msgstr "Min"
|
249 |
+
|
250 |
+
#: awesome-weather.php:377
|
251 |
+
msgid "Sun"
|
252 |
+
msgstr "V"
|
253 |
+
|
254 |
+
#: awesome-weather.php:377
|
255 |
+
msgid "Mon"
|
256 |
+
msgstr "H"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Tue"
|
260 |
+
msgstr "K"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Wed"
|
264 |
+
msgstr "Sz"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Thu"
|
268 |
+
msgstr "Cs"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Fri"
|
272 |
+
msgstr "P"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Sat"
|
276 |
+
msgstr "Szo"
|
277 |
+
|
278 |
+
#: awesome-weather.php:397
|
279 |
+
msgid "extended forecast"
|
280 |
+
msgstr "részletes időjárás"
|
281 |
+
|
282 |
+
#: awesome-weather.php:420
|
283 |
+
msgid "No weather information available"
|
284 |
+
msgstr "Nem áll rendelkezésre információ"
|
285 |
+
|
286 |
+
#: widget.php:130
|
287 |
+
msgid "Override Title:"
|
288 |
+
msgstr "Cím felülírása:"
|
289 |
+
|
290 |
+
#: widget.php:135
|
291 |
+
msgid "Units:"
|
292 |
+
msgstr "Egység:"
|
293 |
+
|
294 |
+
#: widget.php:149
|
295 |
+
msgid "Size:"
|
296 |
+
msgstr "Méret:"
|
297 |
+
|
298 |
+
#: widget.php:158
|
299 |
+
msgid "Forecast:"
|
300 |
+
msgstr "Előrejelzés:"
|
301 |
+
|
302 |
+
#: widget.php:172
|
303 |
+
msgid "Background Image:"
|
304 |
+
msgstr "Háttérkép:"
|
305 |
+
|
306 |
+
#: widget.php:182
|
307 |
+
msgid "Custom Background Color:"
|
308 |
+
msgstr "Egyedi Háttér Szín:"
|
309 |
+
|
310 |
+
#: widget.php:183
|
311 |
+
msgid "overrides color changing"
|
312 |
+
msgstr "szín váltás felülírása"
|
313 |
+
|
314 |
+
#: widget.php:217
|
315 |
+
msgid "Widget Title: (optional)"
|
316 |
+
msgstr "Wiget Címe: (opcionális)"
|
317 |
+
|
318 |
+
#. Description of the plugin/theme
|
319 |
+
msgid "A weather widget that actually looks cool"
|
320 |
+
msgstr "A weather widget that actually looks cool"
|
321 |
+
|
322 |
+
#. Author of the plugin/theme
|
323 |
+
msgid "Hal Gatewood"
|
324 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-it_IT.mo
CHANGED
Binary file
|
languages/awesome-weather-it_IT.po
CHANGED
@@ -1,217 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"X-Poedit-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
msgstr "
|
66 |
-
|
67 |
-
#: awesome-weather.php:
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
#: awesome-weather.php:
|
72 |
-
msgid "
|
73 |
-
msgstr "
|
74 |
-
|
75 |
-
#: awesome-weather.php:
|
76 |
-
msgid "
|
77 |
-
msgstr "
|
78 |
-
|
79 |
-
#: awesome-weather.php:
|
80 |
-
msgid "
|
81 |
-
msgstr "
|
82 |
-
|
83 |
-
#: awesome-weather.php:
|
84 |
-
msgid "
|
85 |
-
msgstr "
|
86 |
-
|
87 |
-
#: awesome-weather.php:
|
88 |
-
msgid "
|
89 |
-
msgstr "
|
90 |
-
|
91 |
-
#: awesome-weather.php:
|
92 |
-
msgid "
|
93 |
-
msgstr "
|
94 |
-
|
95 |
-
#: awesome-weather.php:
|
96 |
-
msgid "
|
97 |
-
msgstr "
|
98 |
-
|
99 |
-
#: awesome-weather.php:
|
100 |
-
msgid "
|
101 |
-
msgstr "
|
102 |
-
|
103 |
-
#:
|
104 |
-
msgid "
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:41:19 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Italian\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: it_IT"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: awesome-weather.php:455
|
92 |
+
msgid "No city found in OpenWeatherMap."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: awesome-weather.php:456
|
96 |
+
msgid "Only one location found. The ID has been set automatically above."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: awesome-weather.php:457
|
100 |
+
msgid "Please confirm your city: "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: widget.php:97
|
104 |
+
msgid ""
|
105 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
106 |
+
"weather data."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:101
|
110 |
+
msgid "and add it to the new settings page."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: widget.php:108
|
114 |
+
msgid "Search for Your Location:"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: widget.php:109
|
118 |
+
msgid "(i.e: London or New York City)"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: widget.php:116
|
122 |
+
msgid "OpenWeatherMap City ID:"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: widget.php:117
|
126 |
+
msgid "(use the field above to find the ID for your city)"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: widget.php:178
|
130 |
+
msgid "Use Different Background Images Based on Weather"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: widget.php:188
|
134 |
+
msgid "Text Color"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: widget.php:207
|
138 |
+
msgid "Hide Current Condition Stats"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: widget.php:213
|
142 |
+
msgid "Link to OpenWeatherMap"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#. Plugin URI of the plugin/theme
|
146 |
+
msgid "https://halgatewood.com/awesome-weather"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#. Author URI of the plugin/theme
|
150 |
+
msgid "https://www.halgatewood.com"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#. Plugin Name of the plugin/theme
|
154 |
+
#: awesome-weather-settings.php:13
|
155 |
+
msgid "Awesome Weather Widget"
|
156 |
+
msgstr "Awesome Weather Widget"
|
157 |
+
|
158 |
+
#: awesome-weather.php:75
|
159 |
+
msgid "C"
|
160 |
+
msgstr "C"
|
161 |
+
|
162 |
+
#: awesome-weather.php:75
|
163 |
+
msgid "F"
|
164 |
+
msgstr "F"
|
165 |
+
|
166 |
+
#: awesome-weather.php:271
|
167 |
+
msgid "N"
|
168 |
+
msgstr "N"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "NNE"
|
172 |
+
msgstr "NNE"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "NE"
|
176 |
+
msgstr "NE"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "ENE"
|
180 |
+
msgstr "ENE"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "E"
|
184 |
+
msgstr "E"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "ESE"
|
188 |
+
msgstr "ESE"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "SE"
|
192 |
+
msgstr "SE"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "SSE"
|
196 |
+
msgstr "SSE"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "S"
|
200 |
+
msgstr "S"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "SSW"
|
204 |
+
msgstr "SSO"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "SW"
|
208 |
+
msgstr "SO"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "WSW"
|
212 |
+
msgstr "OSO"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "W"
|
216 |
+
msgstr "O"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "WNW"
|
220 |
+
msgstr "ONO"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "NW"
|
224 |
+
msgstr "NO"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "NNW"
|
228 |
+
msgstr "NNO"
|
229 |
+
|
230 |
+
#: awesome-weather.php:355
|
231 |
+
msgid "mph"
|
232 |
+
msgstr "mph"
|
233 |
+
|
234 |
+
#: awesome-weather.php:364
|
235 |
+
msgid "humidity:"
|
236 |
+
msgstr "umidità:"
|
237 |
+
|
238 |
+
#: awesome-weather.php:365
|
239 |
+
msgid "wind:"
|
240 |
+
msgstr "vento:"
|
241 |
+
|
242 |
+
#: awesome-weather.php:366
|
243 |
+
msgid "H"
|
244 |
+
msgstr "Max"
|
245 |
+
|
246 |
+
#: awesome-weather.php:366
|
247 |
+
msgid "L"
|
248 |
+
msgstr "Min"
|
249 |
+
|
250 |
+
#: awesome-weather.php:377
|
251 |
+
msgid "Sun"
|
252 |
+
msgstr "Dom"
|
253 |
+
|
254 |
+
#: awesome-weather.php:377
|
255 |
+
msgid "Mon"
|
256 |
+
msgstr "Lun"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Tue"
|
260 |
+
msgstr "Mar"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Wed"
|
264 |
+
msgstr "Mer"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Thu"
|
268 |
+
msgstr "Gio"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Fri"
|
272 |
+
msgstr "Ven"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Sat"
|
276 |
+
msgstr "Sab"
|
277 |
+
|
278 |
+
#: awesome-weather.php:397
|
279 |
+
msgid "extended forecast"
|
280 |
+
msgstr "previsione estesa"
|
281 |
+
|
282 |
+
#: awesome-weather.php:420
|
283 |
+
msgid "No weather information available"
|
284 |
+
msgstr "Nessuna informazione meteo disponibile:"
|
285 |
+
|
286 |
+
#: widget.php:130
|
287 |
+
msgid "Override Title:"
|
288 |
+
msgstr "Sovrascrivi Titolo"
|
289 |
+
|
290 |
+
#: widget.php:135
|
291 |
+
msgid "Units:"
|
292 |
+
msgstr "Unità:"
|
293 |
+
|
294 |
+
#: widget.php:149
|
295 |
+
msgid "Size:"
|
296 |
+
msgstr "Dimensione;"
|
297 |
+
|
298 |
+
#: widget.php:158
|
299 |
+
msgid "Forecast:"
|
300 |
+
msgstr "Previsione:"
|
301 |
+
|
302 |
+
#: widget.php:172
|
303 |
+
msgid "Background Image:"
|
304 |
+
msgstr "Immagine di Sfondo:"
|
305 |
+
|
306 |
+
#: widget.php:182
|
307 |
+
msgid "Custom Background Color:"
|
308 |
+
msgstr "Colore sfondo personalizzato:"
|
309 |
+
|
310 |
+
#: widget.php:183
|
311 |
+
msgid "overrides color changing"
|
312 |
+
msgstr "sostituisce il colore che cambia"
|
313 |
+
|
314 |
+
#: widget.php:217
|
315 |
+
msgid "Widget Title: (optional)"
|
316 |
+
msgstr "Titolo del Widget: (opzionale)"
|
317 |
+
|
318 |
+
#. Description of the plugin/theme
|
319 |
+
msgid "A weather widget that actually looks cool"
|
320 |
+
msgstr "A weather widget that actually looks cool"
|
321 |
+
|
322 |
+
#. Author of the plugin/theme
|
323 |
+
msgid "Hal Gatewood"
|
324 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-nl_NL.mo
CHANGED
Binary file
|
languages/awesome-weather-nl_NL.po
CHANGED
@@ -1,204 +1,320 @@
|
|
1 |
-
# Copyright (C) 2013 Awesome Weather Widget
|
2 |
-
# This file is distributed under the same license as the Awesome Weather Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Awesome Weather Widget 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
7 |
-
"POT-Creation-Date:
|
|
|
|
|
|
|
|
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "C"
|
20 |
msgstr "C"
|
21 |
|
22 |
-
#: awesome-weather.php:
|
23 |
msgid "F"
|
24 |
msgstr "F"
|
25 |
|
26 |
-
#: awesome-weather.php:
|
27 |
msgid "N"
|
28 |
msgstr "N"
|
29 |
|
30 |
-
#: awesome-weather.php:
|
31 |
msgid "NNE"
|
32 |
msgstr "NNO"
|
33 |
|
34 |
-
#: awesome-weather.php:
|
35 |
msgid "NE"
|
36 |
msgstr "NO"
|
37 |
|
38 |
-
#: awesome-weather.php:
|
39 |
msgid "ENE"
|
40 |
msgstr "ONO"
|
41 |
|
42 |
-
#: awesome-weather.php:
|
43 |
msgid "E"
|
44 |
msgstr "O"
|
45 |
|
46 |
-
#: awesome-weather.php:
|
47 |
msgid "ESE"
|
48 |
msgstr "OSO"
|
49 |
|
50 |
-
#: awesome-weather.php:
|
51 |
msgid "SE"
|
52 |
msgstr "ZO"
|
53 |
|
54 |
-
#: awesome-weather.php:
|
55 |
msgid "SSE"
|
56 |
msgstr "ZZO"
|
57 |
|
58 |
-
#: awesome-weather.php:
|
59 |
msgid "S"
|
60 |
msgstr "Z"
|
61 |
|
62 |
-
#: awesome-weather.php:
|
63 |
msgid "SSW"
|
64 |
msgstr "ZZW"
|
65 |
|
66 |
-
#: awesome-weather.php:
|
67 |
msgid "SW"
|
68 |
msgstr "ZW"
|
69 |
|
70 |
-
#: awesome-weather.php:
|
71 |
msgid "WSW"
|
72 |
msgstr "WZW"
|
73 |
|
74 |
-
#: awesome-weather.php:
|
75 |
msgid "W"
|
76 |
msgstr "W"
|
77 |
|
78 |
-
#: awesome-weather.php:
|
79 |
msgid "WNW"
|
80 |
msgstr "WNW"
|
81 |
|
82 |
-
#: awesome-weather.php:
|
83 |
msgid "NW"
|
84 |
msgstr "NW"
|
85 |
|
86 |
-
#: awesome-weather.php:
|
87 |
msgid "NNW"
|
88 |
msgstr "NNW"
|
89 |
|
90 |
-
#: awesome-weather.php:
|
91 |
-
msgid "km/h"
|
92 |
-
msgstr " km/u"
|
93 |
-
|
94 |
-
#: awesome-weather.php:280
|
95 |
msgid "mph"
|
96 |
msgstr "mph"
|
97 |
|
98 |
-
#: awesome-weather.php:
|
99 |
msgid "humidity:"
|
100 |
msgstr "Luchtvochtigheid:"
|
101 |
|
102 |
-
#: awesome-weather.php:
|
103 |
msgid "wind:"
|
104 |
msgstr "Windkracht:"
|
105 |
|
106 |
-
#: awesome-weather.php:
|
107 |
msgid "H"
|
108 |
msgstr "Max"
|
109 |
|
110 |
-
#: awesome-weather.php:
|
111 |
msgid "L"
|
112 |
msgstr "Min"
|
113 |
|
114 |
-
#: awesome-weather.php:
|
115 |
msgid "Sun"
|
116 |
msgstr "Zo"
|
117 |
|
118 |
-
#: awesome-weather.php:
|
119 |
msgid "Mon"
|
120 |
msgstr "Ma"
|
121 |
|
122 |
-
#: awesome-weather.php:
|
123 |
msgid "Tue"
|
124 |
msgstr "Di"
|
125 |
|
126 |
-
#: awesome-weather.php:
|
127 |
msgid "Wed"
|
128 |
msgstr "Wo"
|
129 |
|
130 |
-
#: awesome-weather.php:
|
131 |
msgid "Thu"
|
132 |
msgstr "Do"
|
133 |
|
134 |
-
#: awesome-weather.php:
|
135 |
msgid "Fri"
|
136 |
msgstr "Vr"
|
137 |
|
138 |
-
#: awesome-weather.php:
|
139 |
msgid "Sat"
|
140 |
msgstr "Za"
|
141 |
|
142 |
-
#: awesome-weather.php:
|
143 |
msgid "extended forecast"
|
144 |
msgstr "uitgebreide weersverwachting"
|
145 |
|
146 |
-
#: awesome-weather.php:
|
147 |
msgid "No weather information available"
|
148 |
msgstr "Geen weerinformatie beschikbaar"
|
149 |
|
150 |
-
#:
|
151 |
-
msgid "Location:"
|
152 |
-
msgstr "Locatie:"
|
153 |
-
|
154 |
-
#: awesome-weather.php:406
|
155 |
-
msgid "(i.e: London,UK or New York City,NY)"
|
156 |
-
msgstr "(b.v.: London/UK oder New York City, NY)"
|
157 |
-
|
158 |
-
#: awesome-weather.php:412
|
159 |
msgid "Override Title:"
|
160 |
msgstr "Titel veranderen:"
|
161 |
|
162 |
-
#:
|
163 |
msgid "Units:"
|
164 |
msgstr "Eenheden:"
|
165 |
|
166 |
-
#:
|
167 |
msgid "Size:"
|
168 |
msgstr "Grootte:"
|
169 |
|
170 |
-
#:
|
171 |
msgid "Forecast:"
|
172 |
msgstr "Vooruitzichten:"
|
173 |
|
174 |
-
#:
|
175 |
msgid "Background Image:"
|
176 |
msgstr "Achtergrond afbeelding"
|
177 |
|
178 |
-
#:
|
179 |
msgid "Custom Background Color:"
|
180 |
msgstr "Aangepaste achtergrondkleur:"
|
181 |
|
182 |
-
#: awesome-weather.php:450
|
183 |
-
msgid "(overrides color changing, use hex #7fb761)"
|
184 |
-
msgstr "(overschrijvingen van kleur veranderen, gebruik hex #7fb761)"
|
185 |
-
|
186 |
-
#: awesome-weather.php:455
|
187 |
-
msgid "Hide Stats:"
|
188 |
-
msgstr "Statestiek verbergen:"
|
189 |
-
|
190 |
-
#: awesome-weather.php:460
|
191 |
-
msgid "Link to OpenWeatherMap:"
|
192 |
-
msgstr "Link naar OpenWeatherMap:"
|
193 |
-
|
194 |
-
#. Plugin Name of the plugin/theme
|
195 |
-
msgid "Awesome Weather Widget"
|
196 |
-
msgstr "Awesome Weather Widget"
|
197 |
-
|
198 |
-
#. Plugin URI of the plugin/theme
|
199 |
-
msgid "http://halgatewood.com/awesome-weather"
|
200 |
-
msgstr "http://halgatewood.com/awesome-weather"
|
201 |
-
|
202 |
#. Description of the plugin/theme
|
203 |
msgid "A weather widget that actually looks cool"
|
204 |
msgstr "Een weer-widget, dat ziet er echt cool uit"
|
@@ -206,7 +322,3 @@ msgstr "Een weer-widget, dat ziet er echt cool uit"
|
|
206 |
#. Author of the plugin/theme
|
207 |
msgid "Hal Gatewood"
|
208 |
msgstr "Hal Gatewood"
|
209 |
-
|
210 |
-
#. Author URI of the plugin/theme
|
211 |
-
msgid "http://www.halgatewood.com"
|
212 |
-
msgstr "http://www.halgatewood.com"
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:42:10 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Dutch\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: nl_NL"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: awesome-weather.php:455
|
92 |
+
msgid "No city found in OpenWeatherMap."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: awesome-weather.php:456
|
96 |
+
msgid "Only one location found. The ID has been set automatically above."
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: awesome-weather.php:457
|
100 |
+
msgid "Please confirm your city: "
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: widget.php:97
|
104 |
+
msgid ""
|
105 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
106 |
+
"weather data."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:101
|
110 |
+
msgid "and add it to the new settings page."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: widget.php:108
|
114 |
+
msgid "Search for Your Location:"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: widget.php:109
|
118 |
+
msgid "(i.e: London or New York City)"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: widget.php:116
|
122 |
+
msgid "OpenWeatherMap City ID:"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: widget.php:117
|
126 |
+
msgid "(use the field above to find the ID for your city)"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: widget.php:178
|
130 |
+
msgid "Use Different Background Images Based on Weather"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: widget.php:183
|
134 |
+
msgid "overrides color changing"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: widget.php:188
|
138 |
+
msgid "Text Color"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: widget.php:207
|
142 |
+
msgid "Hide Current Condition Stats"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: widget.php:213
|
146 |
+
msgid "Link to OpenWeatherMap"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: widget.php:217
|
150 |
+
msgid "Widget Title: (optional)"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#. Plugin URI of the plugin/theme
|
154 |
+
msgid "https://halgatewood.com/awesome-weather"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#. Author URI of the plugin/theme
|
158 |
+
msgid "https://www.halgatewood.com"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#. Plugin Name of the plugin/theme
|
162 |
+
#: awesome-weather-settings.php:13
|
163 |
+
msgid "Awesome Weather Widget"
|
164 |
+
msgstr "Awesome Weather Widget"
|
165 |
+
|
166 |
+
#: awesome-weather.php:75
|
167 |
msgid "C"
|
168 |
msgstr "C"
|
169 |
|
170 |
+
#: awesome-weather.php:75
|
171 |
msgid "F"
|
172 |
msgstr "F"
|
173 |
|
174 |
+
#: awesome-weather.php:271
|
175 |
msgid "N"
|
176 |
msgstr "N"
|
177 |
|
178 |
+
#: awesome-weather.php:271
|
179 |
msgid "NNE"
|
180 |
msgstr "NNO"
|
181 |
|
182 |
+
#: awesome-weather.php:271
|
183 |
msgid "NE"
|
184 |
msgstr "NO"
|
185 |
|
186 |
+
#: awesome-weather.php:271
|
187 |
msgid "ENE"
|
188 |
msgstr "ONO"
|
189 |
|
190 |
+
#: awesome-weather.php:271
|
191 |
msgid "E"
|
192 |
msgstr "O"
|
193 |
|
194 |
+
#: awesome-weather.php:271
|
195 |
msgid "ESE"
|
196 |
msgstr "OSO"
|
197 |
|
198 |
+
#: awesome-weather.php:271
|
199 |
msgid "SE"
|
200 |
msgstr "ZO"
|
201 |
|
202 |
+
#: awesome-weather.php:271
|
203 |
msgid "SSE"
|
204 |
msgstr "ZZO"
|
205 |
|
206 |
+
#: awesome-weather.php:271
|
207 |
msgid "S"
|
208 |
msgstr "Z"
|
209 |
|
210 |
+
#: awesome-weather.php:271
|
211 |
msgid "SSW"
|
212 |
msgstr "ZZW"
|
213 |
|
214 |
+
#: awesome-weather.php:271
|
215 |
msgid "SW"
|
216 |
msgstr "ZW"
|
217 |
|
218 |
+
#: awesome-weather.php:271
|
219 |
msgid "WSW"
|
220 |
msgstr "WZW"
|
221 |
|
222 |
+
#: awesome-weather.php:271
|
223 |
msgid "W"
|
224 |
msgstr "W"
|
225 |
|
226 |
+
#: awesome-weather.php:271
|
227 |
msgid "WNW"
|
228 |
msgstr "WNW"
|
229 |
|
230 |
+
#: awesome-weather.php:271
|
231 |
msgid "NW"
|
232 |
msgstr "NW"
|
233 |
|
234 |
+
#: awesome-weather.php:271
|
235 |
msgid "NNW"
|
236 |
msgstr "NNW"
|
237 |
|
238 |
+
#: awesome-weather.php:355
|
|
|
|
|
|
|
|
|
239 |
msgid "mph"
|
240 |
msgstr "mph"
|
241 |
|
242 |
+
#: awesome-weather.php:364
|
243 |
msgid "humidity:"
|
244 |
msgstr "Luchtvochtigheid:"
|
245 |
|
246 |
+
#: awesome-weather.php:365
|
247 |
msgid "wind:"
|
248 |
msgstr "Windkracht:"
|
249 |
|
250 |
+
#: awesome-weather.php:366
|
251 |
msgid "H"
|
252 |
msgstr "Max"
|
253 |
|
254 |
+
#: awesome-weather.php:366
|
255 |
msgid "L"
|
256 |
msgstr "Min"
|
257 |
|
258 |
+
#: awesome-weather.php:377
|
259 |
msgid "Sun"
|
260 |
msgstr "Zo"
|
261 |
|
262 |
+
#: awesome-weather.php:377
|
263 |
msgid "Mon"
|
264 |
msgstr "Ma"
|
265 |
|
266 |
+
#: awesome-weather.php:377
|
267 |
msgid "Tue"
|
268 |
msgstr "Di"
|
269 |
|
270 |
+
#: awesome-weather.php:377
|
271 |
msgid "Wed"
|
272 |
msgstr "Wo"
|
273 |
|
274 |
+
#: awesome-weather.php:377
|
275 |
msgid "Thu"
|
276 |
msgstr "Do"
|
277 |
|
278 |
+
#: awesome-weather.php:377
|
279 |
msgid "Fri"
|
280 |
msgstr "Vr"
|
281 |
|
282 |
+
#: awesome-weather.php:377
|
283 |
msgid "Sat"
|
284 |
msgstr "Za"
|
285 |
|
286 |
+
#: awesome-weather.php:397
|
287 |
msgid "extended forecast"
|
288 |
msgstr "uitgebreide weersverwachting"
|
289 |
|
290 |
+
#: awesome-weather.php:420
|
291 |
msgid "No weather information available"
|
292 |
msgstr "Geen weerinformatie beschikbaar"
|
293 |
|
294 |
+
#: widget.php:130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
msgid "Override Title:"
|
296 |
msgstr "Titel veranderen:"
|
297 |
|
298 |
+
#: widget.php:135
|
299 |
msgid "Units:"
|
300 |
msgstr "Eenheden:"
|
301 |
|
302 |
+
#: widget.php:149
|
303 |
msgid "Size:"
|
304 |
msgstr "Grootte:"
|
305 |
|
306 |
+
#: widget.php:158
|
307 |
msgid "Forecast:"
|
308 |
msgstr "Vooruitzichten:"
|
309 |
|
310 |
+
#: widget.php:172
|
311 |
msgid "Background Image:"
|
312 |
msgstr "Achtergrond afbeelding"
|
313 |
|
314 |
+
#: widget.php:182
|
315 |
msgid "Custom Background Color:"
|
316 |
msgstr "Aangepaste achtergrondkleur:"
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
#. Description of the plugin/theme
|
319 |
msgid "A weather widget that actually looks cool"
|
320 |
msgstr "Een weer-widget, dat ziet er echt cool uit"
|
322 |
#. Author of the plugin/theme
|
323 |
msgid "Hal Gatewood"
|
324 |
msgstr "Hal Gatewood"
|
|
|
|
|
|
|
|
languages/awesome-weather-pl_PL.mo
CHANGED
Binary file
|
languages/awesome-weather-pl_PL.po
CHANGED
@@ -1,213 +1,325 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"
|
17 |
-
"
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
#: awesome-weather.php:
|
164 |
-
msgid "
|
165 |
-
msgstr "
|
166 |
-
|
167 |
-
#: awesome-weather.php:
|
168 |
-
msgid "
|
169 |
-
msgstr "
|
170 |
-
|
171 |
-
#: awesome-weather.php:
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
-
|
175 |
-
#: awesome-weather.php:
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
178 |
-
|
179 |
-
#: awesome-weather.php:
|
180 |
-
msgid "
|
181 |
-
msgstr "
|
182 |
-
|
183 |
-
#: awesome-weather.php:
|
184 |
-
msgid "
|
185 |
-
msgstr "
|
186 |
-
|
187 |
-
#: awesome-weather.php:
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
-
|
191 |
-
#: awesome-weather.php:
|
192 |
-
msgid "
|
193 |
-
msgstr "
|
194 |
-
|
195 |
-
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
198 |
-
|
199 |
-
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
-
|
203 |
-
|
204 |
-
msgid "
|
205 |
-
msgstr "
|
206 |
-
|
207 |
-
|
208 |
-
msgid "
|
209 |
-
msgstr "
|
210 |
-
|
211 |
-
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 00:42:36 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Polish\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
|
11 |
+
"&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: pl_PL"
|
25 |
+
|
26 |
+
#: awesome-weather-settings.php:17
|
27 |
+
msgid "Weather Widget Cache Cleared"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: awesome-weather-settings.php:28
|
31 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: awesome-weather-settings.php:42
|
35 |
+
msgid "Settings"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: awesome-weather-settings.php:46
|
39 |
+
msgid "API Key Required"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: awesome-weather-settings.php:51
|
43 |
+
msgid "Donate"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: awesome-weather-settings.php:54
|
47 |
+
msgid "Upgrade"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: awesome-weather-settings.php:69
|
51 |
+
msgid "OpenWeatherMaps APPID"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: awesome-weather-settings.php:70
|
55 |
+
msgid "Error Handling"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: awesome-weather-settings.php:106
|
59 |
+
msgid "Defined in wp-config"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: awesome-weather-settings.php:113
|
63 |
+
msgid ""
|
64 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
65 |
+
"weather data."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
69 |
+
msgid "Get your APPID"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: awesome-weather-settings.php:126
|
73 |
+
msgid "Hidden in Source"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: awesome-weather-settings.php:127
|
77 |
+
msgid "Display if Admin"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: awesome-weather-settings.php:128
|
81 |
+
msgid "Display for Anyone"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: awesome-weather-settings.php:131
|
85 |
+
msgid "What should the plugin do when there is an error?"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: awesome-weather.php:355
|
89 |
+
msgid "m/s"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: awesome-weather.php:455
|
93 |
+
msgid "No city found in OpenWeatherMap."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: awesome-weather.php:456
|
97 |
+
msgid "Only one location found. The ID has been set automatically above."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: awesome-weather.php:457
|
101 |
+
msgid "Please confirm your city: "
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: widget.php:97
|
105 |
+
msgid ""
|
106 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
107 |
+
"weather data."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: widget.php:101
|
111 |
+
msgid "and add it to the new settings page."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: widget.php:108
|
115 |
+
msgid "Search for Your Location:"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: widget.php:109
|
119 |
+
msgid "(i.e: London or New York City)"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: widget.php:116
|
123 |
+
msgid "OpenWeatherMap City ID:"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: widget.php:117
|
127 |
+
msgid "(use the field above to find the ID for your city)"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: widget.php:178
|
131 |
+
msgid "Use Different Background Images Based on Weather"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: widget.php:183
|
135 |
+
msgid "overrides color changing"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: widget.php:188
|
139 |
+
msgid "Text Color"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: widget.php:207
|
143 |
+
msgid "Hide Current Condition Stats"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: widget.php:213
|
147 |
+
msgid "Link to OpenWeatherMap"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: widget.php:217
|
151 |
+
msgid "Widget Title: (optional)"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#. Plugin URI of the plugin/theme
|
155 |
+
msgid "https://halgatewood.com/awesome-weather"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#. Author URI of the plugin/theme
|
159 |
+
msgid "https://www.halgatewood.com"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#. Plugin Name of the plugin/theme
|
163 |
+
#: awesome-weather-settings.php:13
|
164 |
+
msgid "Awesome Weather Widget"
|
165 |
+
msgstr "Awesome Weather Widget"
|
166 |
+
|
167 |
+
#: awesome-weather.php:75
|
168 |
+
msgid "C"
|
169 |
+
msgstr "°C"
|
170 |
+
|
171 |
+
#: awesome-weather.php:75
|
172 |
+
msgid "F"
|
173 |
+
msgstr "°F"
|
174 |
+
|
175 |
+
#: awesome-weather.php:271
|
176 |
+
msgid "N"
|
177 |
+
msgstr "płn."
|
178 |
+
|
179 |
+
#: awesome-weather.php:271
|
180 |
+
msgid "NNE"
|
181 |
+
msgstr "płn. - płn. wsch."
|
182 |
+
|
183 |
+
#: awesome-weather.php:271
|
184 |
+
msgid "NE"
|
185 |
+
msgstr "płn. wsch."
|
186 |
+
|
187 |
+
#: awesome-weather.php:271
|
188 |
+
msgid "ENE"
|
189 |
+
msgstr "wsch. - płn. wsch."
|
190 |
+
|
191 |
+
#: awesome-weather.php:271
|
192 |
+
msgid "E"
|
193 |
+
msgstr "wsch."
|
194 |
+
|
195 |
+
#: awesome-weather.php:271
|
196 |
+
msgid "ESE"
|
197 |
+
msgstr "wsch. - płd. wsch."
|
198 |
+
|
199 |
+
#: awesome-weather.php:271
|
200 |
+
msgid "SE"
|
201 |
+
msgstr "płd. wsch."
|
202 |
+
|
203 |
+
#: awesome-weather.php:271
|
204 |
+
msgid "SSE"
|
205 |
+
msgstr "płd. - płd. wsch."
|
206 |
+
|
207 |
+
#: awesome-weather.php:271
|
208 |
+
msgid "S"
|
209 |
+
msgstr "płd."
|
210 |
+
|
211 |
+
#: awesome-weather.php:271
|
212 |
+
msgid "SSW"
|
213 |
+
msgstr "płd. - płd. zach."
|
214 |
+
|
215 |
+
#: awesome-weather.php:271
|
216 |
+
msgid "SW"
|
217 |
+
msgstr "płd. zach."
|
218 |
+
|
219 |
+
#: awesome-weather.php:271
|
220 |
+
msgid "WSW"
|
221 |
+
msgstr "zach. - płd. zach."
|
222 |
+
|
223 |
+
#: awesome-weather.php:271
|
224 |
+
msgid "W"
|
225 |
+
msgstr "zach."
|
226 |
+
|
227 |
+
#: awesome-weather.php:271
|
228 |
+
msgid "WNW"
|
229 |
+
msgstr "zach. - płn. zach."
|
230 |
+
|
231 |
+
#: awesome-weather.php:271
|
232 |
+
msgid "NW"
|
233 |
+
msgstr "płn. zach."
|
234 |
+
|
235 |
+
#: awesome-weather.php:271
|
236 |
+
msgid "NNW"
|
237 |
+
msgstr "płn. - płn. zach."
|
238 |
+
|
239 |
+
#: awesome-weather.php:355
|
240 |
+
msgid "mph"
|
241 |
+
msgstr "mph"
|
242 |
+
|
243 |
+
#: awesome-weather.php:364
|
244 |
+
msgid "humidity:"
|
245 |
+
msgstr "wilgotność:"
|
246 |
+
|
247 |
+
#: awesome-weather.php:365
|
248 |
+
msgid "wind:"
|
249 |
+
msgstr "wiatr:"
|
250 |
+
|
251 |
+
#: awesome-weather.php:366
|
252 |
+
msgid "H"
|
253 |
+
msgstr "Max:"
|
254 |
+
|
255 |
+
#: awesome-weather.php:366
|
256 |
+
msgid "L"
|
257 |
+
msgstr "Min:"
|
258 |
+
|
259 |
+
#: awesome-weather.php:377
|
260 |
+
msgid "Sun"
|
261 |
+
msgstr "Nd"
|
262 |
+
|
263 |
+
#: awesome-weather.php:377
|
264 |
+
msgid "Mon"
|
265 |
+
msgstr "Pon"
|
266 |
+
|
267 |
+
#: awesome-weather.php:377
|
268 |
+
msgid "Tue"
|
269 |
+
msgstr "Wt"
|
270 |
+
|
271 |
+
#: awesome-weather.php:377
|
272 |
+
msgid "Wed"
|
273 |
+
msgstr "Śr"
|
274 |
+
|
275 |
+
#: awesome-weather.php:377
|
276 |
+
msgid "Thu"
|
277 |
+
msgstr "Czw"
|
278 |
+
|
279 |
+
#: awesome-weather.php:377
|
280 |
+
msgid "Fri"
|
281 |
+
msgstr "Pt"
|
282 |
+
|
283 |
+
#: awesome-weather.php:377
|
284 |
+
msgid "Sat"
|
285 |
+
msgstr "Sob"
|
286 |
+
|
287 |
+
#: awesome-weather.php:397
|
288 |
+
msgid "extended forecast"
|
289 |
+
msgstr "rozszerzona prognoza"
|
290 |
+
|
291 |
+
#: awesome-weather.php:420
|
292 |
+
msgid "No weather information available"
|
293 |
+
msgstr "Brak danych pogodowych"
|
294 |
+
|
295 |
+
#: widget.php:130
|
296 |
+
msgid "Override Title:"
|
297 |
+
msgstr "niestandardowy tytuł"
|
298 |
+
|
299 |
+
#: widget.php:135
|
300 |
+
msgid "Units:"
|
301 |
+
msgstr "Jednostki"
|
302 |
+
|
303 |
+
#: widget.php:149
|
304 |
+
msgid "Size:"
|
305 |
+
msgstr "rozmiar"
|
306 |
+
|
307 |
+
#: widget.php:158
|
308 |
+
msgid "Forecast:"
|
309 |
+
msgstr "Prognoza"
|
310 |
+
|
311 |
+
#: widget.php:172
|
312 |
+
msgid "Background Image:"
|
313 |
+
msgstr "Obrazek tła"
|
314 |
+
|
315 |
+
#: widget.php:182
|
316 |
+
msgid "Custom Background Color:"
|
317 |
+
msgstr "Niestandardowy kolor tła"
|
318 |
+
|
319 |
+
#. Description of the plugin/theme
|
320 |
+
msgid "A weather widget that actually looks cool"
|
321 |
+
msgstr "A weather widget that actually looks cool"
|
322 |
+
|
323 |
+
#. Author of the plugin/theme
|
324 |
+
msgid "Hal Gatewood"
|
325 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-pt_PT.mo
CHANGED
Binary file
|
languages/awesome-weather-pt_PT.po
CHANGED
@@ -1,211 +1,322 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
#: awesome-weather.php:
|
26 |
-
msgid "
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: awesome-weather.php:
|
30 |
-
msgid "
|
31 |
-
msgstr ""
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 02:00:17 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Portuguese (Portugal)\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: pt_PT"
|
24 |
+
|
25 |
+
#: awesome-weather.php:355
|
26 |
+
msgid "mph"
|
27 |
+
msgstr "mph"
|
28 |
+
|
29 |
+
#: awesome-weather.php:355
|
30 |
+
msgid "m/s"
|
31 |
+
msgstr "m/s"
|
32 |
+
|
33 |
+
#. Plugin Name of the plugin/theme
|
34 |
+
#: awesome-weather-settings.php:13
|
35 |
+
msgid "Awesome Weather Widget"
|
36 |
+
msgstr "Awesome Weather Widget"
|
37 |
+
|
38 |
+
#: awesome-weather-settings.php:17
|
39 |
+
msgid "Weather Widget Cache Cleared"
|
40 |
+
msgstr "Cancelado em cache"
|
41 |
+
|
42 |
+
#: awesome-weather-settings.php:28
|
43 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
44 |
+
msgstr "Limpar tudo tempo de cache"
|
45 |
+
|
46 |
+
#: awesome-weather-settings.php:42
|
47 |
+
msgid "Settings"
|
48 |
+
msgstr "Configurações"
|
49 |
+
|
50 |
+
#: awesome-weather-settings.php:46
|
51 |
+
msgid "API Key Required"
|
52 |
+
msgstr "API Key Obrigatório"
|
53 |
+
|
54 |
+
#: awesome-weather-settings.php:51
|
55 |
+
msgid "Donate"
|
56 |
+
msgstr "Doar"
|
57 |
+
|
58 |
+
#: awesome-weather-settings.php:54
|
59 |
+
msgid "Upgrade"
|
60 |
+
msgstr "Atualização"
|
61 |
+
|
62 |
+
#: awesome-weather-settings.php:69
|
63 |
+
msgid "OpenWeatherMaps APPID"
|
64 |
+
msgstr "OpenWeatherMap APPID"
|
65 |
+
|
66 |
+
#: awesome-weather-settings.php:70
|
67 |
+
msgid "Error Handling"
|
68 |
+
msgstr "Tratamento de erros"
|
69 |
+
|
70 |
+
#: awesome-weather-settings.php:106
|
71 |
+
msgid "Defined in wp-config"
|
72 |
+
msgstr "Definido em: wp-config.php"
|
73 |
+
|
74 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
75 |
+
msgid ""
|
76 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
77 |
+
"weather data."
|
78 |
+
msgstr ""
|
79 |
+
"Em outubro de 2015, OpenWeatherMaps requer esta tecla para acessar os seus "
|
80 |
+
"dados meteorológicos."
|
81 |
+
|
82 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
83 |
+
msgid "Get your APPID"
|
84 |
+
msgstr "Obtenha seu APPID"
|
85 |
+
|
86 |
+
#: awesome-weather-settings.php:126
|
87 |
+
msgid "Hidden in Source"
|
88 |
+
msgstr "Escondido na fonte"
|
89 |
+
|
90 |
+
#: awesome-weather-settings.php:127
|
91 |
+
msgid "Display if Admin"
|
92 |
+
msgstr "Exibição para administrador"
|
93 |
+
|
94 |
+
#: awesome-weather-settings.php:128
|
95 |
+
msgid "Display for Anyone"
|
96 |
+
msgstr "Exibição para todos"
|
97 |
+
|
98 |
+
#: awesome-weather-settings.php:131
|
99 |
+
msgid "What should the plugin do when there is an error?"
|
100 |
+
msgstr ""
|
101 |
+
"\n"
|
102 |
+
"O que deve o plugin faz quando há um erro?"
|
103 |
+
|
104 |
+
#: awesome-weather.php:75
|
105 |
+
msgid "C"
|
106 |
+
msgstr "C"
|
107 |
+
|
108 |
+
#: awesome-weather.php:75
|
109 |
+
msgid "F"
|
110 |
+
msgstr "F"
|
111 |
+
|
112 |
+
#: awesome-weather.php:271
|
113 |
+
msgid "N"
|
114 |
+
msgstr "N"
|
115 |
+
|
116 |
+
#: awesome-weather.php:271
|
117 |
+
msgid "NNE"
|
118 |
+
msgstr "NNL"
|
119 |
+
|
120 |
+
#: awesome-weather.php:271
|
121 |
+
msgid "NE"
|
122 |
+
msgstr "NL"
|
123 |
+
|
124 |
+
#: awesome-weather.php:271
|
125 |
+
msgid "ENE"
|
126 |
+
msgstr "LNL"
|
127 |
+
|
128 |
+
#: awesome-weather.php:271
|
129 |
+
msgid "E"
|
130 |
+
msgstr "L"
|
131 |
+
|
132 |
+
#: awesome-weather.php:271
|
133 |
+
msgid "ESE"
|
134 |
+
msgstr "LSL"
|
135 |
+
|
136 |
+
#: awesome-weather.php:271
|
137 |
+
msgid "SE"
|
138 |
+
msgstr "SL"
|
139 |
+
|
140 |
+
#: awesome-weather.php:271
|
141 |
+
msgid "SSE"
|
142 |
+
msgstr "SSL"
|
143 |
+
|
144 |
+
#: awesome-weather.php:271
|
145 |
+
msgid "S"
|
146 |
+
msgstr "S"
|
147 |
+
|
148 |
+
#: awesome-weather.php:271
|
149 |
+
msgid "SSW"
|
150 |
+
msgstr "SSO"
|
151 |
+
|
152 |
+
#: awesome-weather.php:271
|
153 |
+
msgid "SW"
|
154 |
+
msgstr "SO"
|
155 |
+
|
156 |
+
#: awesome-weather.php:271
|
157 |
+
msgid "WSW"
|
158 |
+
msgstr "OSO"
|
159 |
+
|
160 |
+
#: awesome-weather.php:271
|
161 |
+
msgid "W"
|
162 |
+
msgstr "O"
|
163 |
+
|
164 |
+
#: awesome-weather.php:271
|
165 |
+
msgid "WNW"
|
166 |
+
msgstr "ONO"
|
167 |
+
|
168 |
+
#: awesome-weather.php:271
|
169 |
+
msgid "NW"
|
170 |
+
msgstr "NO"
|
171 |
+
|
172 |
+
#: awesome-weather.php:271
|
173 |
+
msgid "NNW"
|
174 |
+
msgstr "NNO"
|
175 |
+
|
176 |
+
#: awesome-weather.php:364
|
177 |
+
msgid "humidity:"
|
178 |
+
msgstr "humidade:"
|
179 |
+
|
180 |
+
#: awesome-weather.php:365
|
181 |
+
msgid "wind:"
|
182 |
+
msgstr "vento:"
|
183 |
+
|
184 |
+
#: awesome-weather.php:366
|
185 |
+
msgid "H"
|
186 |
+
msgstr "max"
|
187 |
+
|
188 |
+
#: awesome-weather.php:366
|
189 |
+
msgid "L"
|
190 |
+
msgstr "min"
|
191 |
+
|
192 |
+
#: awesome-weather.php:377
|
193 |
+
msgid "Sun"
|
194 |
+
msgstr "dom"
|
195 |
+
|
196 |
+
#: awesome-weather.php:377
|
197 |
+
msgid "Mon"
|
198 |
+
msgstr "seg"
|
199 |
+
|
200 |
+
#: awesome-weather.php:377
|
201 |
+
msgid "Tue"
|
202 |
+
msgstr "ter"
|
203 |
+
|
204 |
+
#: awesome-weather.php:377
|
205 |
+
msgid "Wed"
|
206 |
+
msgstr "qua"
|
207 |
+
|
208 |
+
#: awesome-weather.php:377
|
209 |
+
msgid "Thu"
|
210 |
+
msgstr "qui"
|
211 |
+
|
212 |
+
#: awesome-weather.php:377
|
213 |
+
msgid "Fri"
|
214 |
+
msgstr "sex"
|
215 |
+
|
216 |
+
#: awesome-weather.php:377
|
217 |
+
msgid "Sat"
|
218 |
+
msgstr "sab"
|
219 |
+
|
220 |
+
#: awesome-weather.php:397
|
221 |
+
msgid "extended forecast"
|
222 |
+
msgstr "previsão longa"
|
223 |
+
|
224 |
+
#: awesome-weather.php:420
|
225 |
+
msgid "No weather information available"
|
226 |
+
msgstr "Informação indisponível!"
|
227 |
+
|
228 |
+
#: awesome-weather.php:455
|
229 |
+
msgid "No city found in OpenWeatherMap."
|
230 |
+
msgstr "Nenhuma cidade encontrado em OpenWeatherMap."
|
231 |
+
|
232 |
+
#: awesome-weather.php:456
|
233 |
+
msgid "Only one location found. The ID has been set automatically above."
|
234 |
+
msgstr "Apenas um local encontrado. O ID foi definido automaticamente acima."
|
235 |
+
|
236 |
+
#: awesome-weather.php:457
|
237 |
+
msgid "Please confirm your city: "
|
238 |
+
msgstr "Por favor, confirme sua cidade:"
|
239 |
+
|
240 |
+
#: widget.php:101
|
241 |
+
msgid "and add it to the new settings page."
|
242 |
+
msgstr "e adicioná-lo para a nova página de configurações."
|
243 |
+
|
244 |
+
#: widget.php:108
|
245 |
+
msgid "Search for Your Location:"
|
246 |
+
msgstr "Procure o local:"
|
247 |
+
|
248 |
+
#: widget.php:109
|
249 |
+
msgid "(i.e: London or New York City)"
|
250 |
+
msgstr "(isto é: Londres ou Nova York)"
|
251 |
+
|
252 |
+
#: widget.php:116
|
253 |
+
msgid "OpenWeatherMap City ID:"
|
254 |
+
msgstr "OpenWeatherMap Cidade ID:"
|
255 |
+
|
256 |
+
#: widget.php:117
|
257 |
+
msgid "(use the field above to find the ID for your city)"
|
258 |
+
msgstr "(use o campo acima para encontrar o ID para sua cidade)"
|
259 |
+
|
260 |
+
#: widget.php:130
|
261 |
+
msgid "Override Title:"
|
262 |
+
msgstr "Substituir o título por:"
|
263 |
+
|
264 |
+
#: widget.php:135
|
265 |
+
msgid "Units:"
|
266 |
+
msgstr "Unidades:"
|
267 |
+
|
268 |
+
#: widget.php:149
|
269 |
+
msgid "Size:"
|
270 |
+
msgstr "Tamanho:"
|
271 |
+
|
272 |
+
#: widget.php:158
|
273 |
+
msgid "Forecast:"
|
274 |
+
msgstr "Previsão:"
|
275 |
+
|
276 |
+
#: widget.php:172
|
277 |
+
msgid "Background Image:"
|
278 |
+
msgstr "Imagem de fundo:"
|
279 |
+
|
280 |
+
#: widget.php:178
|
281 |
+
msgid "Use Different Background Images Based on Weather"
|
282 |
+
msgstr "Use diferentes do fundo Imagens Baseado em Tempo"
|
283 |
+
|
284 |
+
#: widget.php:182
|
285 |
+
msgid "Custom Background Color:"
|
286 |
+
msgstr "Cor de fundo personalizada:"
|
287 |
+
|
288 |
+
#: widget.php:183
|
289 |
+
msgid "overrides color changing"
|
290 |
+
msgstr "substitui mudança da cor"
|
291 |
+
|
292 |
+
#: widget.php:188
|
293 |
+
msgid "Text Color"
|
294 |
+
msgstr "Cor do texto"
|
295 |
+
|
296 |
+
#: widget.php:207
|
297 |
+
msgid "Hide Current Condition Stats"
|
298 |
+
msgstr "Esconder stats condição atual"
|
299 |
+
|
300 |
+
#: widget.php:213
|
301 |
+
msgid "Link to OpenWeatherMap"
|
302 |
+
msgstr "Link para OpenWeatherMap"
|
303 |
+
|
304 |
+
#: widget.php:217
|
305 |
+
msgid "Widget Title: (optional)"
|
306 |
+
msgstr "Título Widget: (opcional)"
|
307 |
+
|
308 |
+
#. Plugin URI of the plugin/theme
|
309 |
+
msgid "https://halgatewood.com/awesome-weather"
|
310 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
311 |
+
|
312 |
+
#. Description of the plugin/theme
|
313 |
+
msgid "A weather widget that actually looks cool"
|
314 |
+
msgstr "Um widget em que o tempo parece sempre bom"
|
315 |
+
|
316 |
+
#. Author of the plugin/theme
|
317 |
+
msgid "Hal Gatewood"
|
318 |
+
msgstr "Hal Gatewood"
|
319 |
+
|
320 |
+
#. Author URI of the plugin/theme
|
321 |
+
msgid "https://www.halgatewood.com"
|
322 |
+
msgstr "https://www.halgatewood.com"
|
languages/awesome-weather-ru_RU.mo
CHANGED
Binary file
|
languages/awesome-weather-ru_RU.po
CHANGED
@@ -1,215 +1,321 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
msgstr "
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:38:55 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Russian\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && "
|
11 |
+
"n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2)\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
17 |
+
"X-Poedit-Basepath: .\n"
|
18 |
+
"X-Poedit-SearchPath-0: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
20 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
21 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
22 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
23 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
+
"X-Loco-Target-Locale: ru_RU"
|
25 |
+
|
26 |
+
#. Plugin URI of the plugin/theme
|
27 |
+
msgid "https://halgatewood.com/awesome-weather"
|
28 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
29 |
+
|
30 |
+
#. Author URI of the plugin/theme
|
31 |
+
msgid "https://www.halgatewood.com"
|
32 |
+
msgstr "https://www.halgatewood.com"
|
33 |
+
|
34 |
+
#. Plugin Name of the plugin/theme
|
35 |
+
#: awesome-weather-settings.php:13
|
36 |
+
msgid "Awesome Weather Widget"
|
37 |
+
msgstr "Awesome Weather Widget"
|
38 |
+
|
39 |
+
#: awesome-weather-settings.php:17
|
40 |
+
msgid "Weather Widget Cache Cleared"
|
41 |
+
msgstr "Сохраненная копия Очищенные"
|
42 |
+
|
43 |
+
#: awesome-weather-settings.php:28
|
44 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
45 |
+
msgstr "Очистить все кэш Погода"
|
46 |
+
|
47 |
+
#: awesome-weather-settings.php:42
|
48 |
+
msgid "Settings"
|
49 |
+
msgstr "настройки"
|
50 |
+
|
51 |
+
#: awesome-weather-settings.php:46
|
52 |
+
msgid "API Key Required"
|
53 |
+
msgstr "Ключ API Обязательно"
|
54 |
+
|
55 |
+
#: awesome-weather-settings.php:51
|
56 |
+
msgid "Donate"
|
57 |
+
msgstr "жертвовать"
|
58 |
+
|
59 |
+
#: awesome-weather-settings.php:54
|
60 |
+
msgid "Upgrade"
|
61 |
+
msgstr "Обновить"
|
62 |
+
|
63 |
+
#: awesome-weather-settings.php:69
|
64 |
+
msgid "OpenWeatherMaps APPID"
|
65 |
+
msgstr "OpenWeatherMap APPID"
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:70
|
68 |
+
msgid "Error Handling"
|
69 |
+
msgstr "Обработка ошибок"
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:106
|
72 |
+
msgid "Defined in wp-config"
|
73 |
+
msgstr "Определено в: wpconfig.php"
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
76 |
+
msgid ""
|
77 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
78 |
+
"weather data."
|
79 |
+
msgstr ""
|
80 |
+
"По состоянию на октябрь 2015 года, OpenWeatherMaps требует этот ключ для "
|
81 |
+
"доступа к их данных о погоде."
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
84 |
+
msgid "Get your APPID"
|
85 |
+
msgstr "Получить APPID"
|
86 |
+
|
87 |
+
#: awesome-weather-settings.php:126
|
88 |
+
msgid "Hidden in Source"
|
89 |
+
msgstr "Скрытые в Источник"
|
90 |
+
|
91 |
+
#: awesome-weather-settings.php:127
|
92 |
+
msgid "Display if Admin"
|
93 |
+
msgstr "Показать для всех"
|
94 |
+
|
95 |
+
#: awesome-weather-settings.php:128
|
96 |
+
msgid "Display for Anyone"
|
97 |
+
msgstr "Показать для администратора"
|
98 |
+
|
99 |
+
#: awesome-weather-settings.php:131
|
100 |
+
msgid "What should the plugin do when there is an error?"
|
101 |
+
msgstr "Что должен делать плагин, когда есть ошибка?"
|
102 |
+
|
103 |
+
#: awesome-weather.php:75
|
104 |
+
msgid "C"
|
105 |
+
msgstr "С"
|
106 |
+
|
107 |
+
#: awesome-weather.php:75
|
108 |
+
msgid "F"
|
109 |
+
msgstr "F"
|
110 |
+
|
111 |
+
#: awesome-weather.php:271
|
112 |
+
msgid "N"
|
113 |
+
msgstr "С"
|
114 |
+
|
115 |
+
#: awesome-weather.php:271
|
116 |
+
msgid "NNE"
|
117 |
+
msgstr "ССВ"
|
118 |
+
|
119 |
+
#: awesome-weather.php:271
|
120 |
+
msgid "NE"
|
121 |
+
msgstr "СВ"
|
122 |
+
|
123 |
+
#: awesome-weather.php:271
|
124 |
+
msgid "ENE"
|
125 |
+
msgstr "ВСВ"
|
126 |
+
|
127 |
+
#: awesome-weather.php:271
|
128 |
+
msgid "E"
|
129 |
+
msgstr "В"
|
130 |
+
|
131 |
+
#: awesome-weather.php:271
|
132 |
+
msgid "ESE"
|
133 |
+
msgstr "ВЮВ"
|
134 |
+
|
135 |
+
#: awesome-weather.php:271
|
136 |
+
msgid "SE"
|
137 |
+
msgstr "ЮВ"
|
138 |
+
|
139 |
+
#: awesome-weather.php:271
|
140 |
+
msgid "SSE"
|
141 |
+
msgstr "ЮЮВ"
|
142 |
+
|
143 |
+
#: awesome-weather.php:271
|
144 |
+
msgid "S"
|
145 |
+
msgstr "Ю"
|
146 |
+
|
147 |
+
#: awesome-weather.php:271
|
148 |
+
msgid "SSW"
|
149 |
+
msgstr "ЮЮЗ"
|
150 |
+
|
151 |
+
#: awesome-weather.php:271
|
152 |
+
msgid "SW"
|
153 |
+
msgstr "ЮЗ"
|
154 |
+
|
155 |
+
#: awesome-weather.php:271
|
156 |
+
msgid "WSW"
|
157 |
+
msgstr "ЗЮЗ"
|
158 |
+
|
159 |
+
#: awesome-weather.php:271
|
160 |
+
msgid "W"
|
161 |
+
msgstr "З"
|
162 |
+
|
163 |
+
#: awesome-weather.php:271
|
164 |
+
msgid "WNW"
|
165 |
+
msgstr "ЗСЗ"
|
166 |
+
|
167 |
+
#: awesome-weather.php:271
|
168 |
+
msgid "NW"
|
169 |
+
msgstr "СЗ"
|
170 |
+
|
171 |
+
#: awesome-weather.php:271
|
172 |
+
msgid "NNW"
|
173 |
+
msgstr "ССЗ"
|
174 |
+
|
175 |
+
#: awesome-weather.php:355
|
176 |
+
msgid "mph"
|
177 |
+
msgstr "мил/ч"
|
178 |
+
|
179 |
+
#: awesome-weather.php:355
|
180 |
+
msgid "m/s"
|
181 |
+
msgstr "Миз"
|
182 |
+
|
183 |
+
#: awesome-weather.php:364
|
184 |
+
msgid "humidity:"
|
185 |
+
msgstr "влажность:"
|
186 |
+
|
187 |
+
#: awesome-weather.php:365
|
188 |
+
msgid "wind:"
|
189 |
+
msgstr "ветер:"
|
190 |
+
|
191 |
+
#: awesome-weather.php:366
|
192 |
+
msgid "H"
|
193 |
+
msgstr "Ш"
|
194 |
+
|
195 |
+
#: awesome-weather.php:366
|
196 |
+
msgid "L"
|
197 |
+
msgstr "Д"
|
198 |
+
|
199 |
+
#: awesome-weather.php:377
|
200 |
+
msgid "Sun"
|
201 |
+
msgstr "Вс"
|
202 |
+
|
203 |
+
#: awesome-weather.php:377
|
204 |
+
msgid "Mon"
|
205 |
+
msgstr "Пн"
|
206 |
+
|
207 |
+
#: awesome-weather.php:377
|
208 |
+
msgid "Tue"
|
209 |
+
msgstr "Вт"
|
210 |
+
|
211 |
+
#: awesome-weather.php:377
|
212 |
+
msgid "Wed"
|
213 |
+
msgstr "Ср"
|
214 |
+
|
215 |
+
#: awesome-weather.php:377
|
216 |
+
msgid "Thu"
|
217 |
+
msgstr "Чт"
|
218 |
+
|
219 |
+
#: awesome-weather.php:377
|
220 |
+
msgid "Fri"
|
221 |
+
msgstr "Пт"
|
222 |
+
|
223 |
+
#: awesome-weather.php:377
|
224 |
+
msgid "Sat"
|
225 |
+
msgstr "Сб"
|
226 |
+
|
227 |
+
#: awesome-weather.php:397
|
228 |
+
msgid "extended forecast"
|
229 |
+
msgstr "расширенный прогноз"
|
230 |
+
|
231 |
+
#: awesome-weather.php:420
|
232 |
+
msgid "No weather information available"
|
233 |
+
msgstr "Информация о погоде недоступна"
|
234 |
+
|
235 |
+
#: awesome-weather.php:455
|
236 |
+
msgid "No city found in OpenWeatherMap."
|
237 |
+
msgstr "Не найдено ни одного города в OpenWeatherMap."
|
238 |
+
|
239 |
+
#: awesome-weather.php:456
|
240 |
+
msgid "Only one location found. The ID has been set automatically above."
|
241 |
+
msgstr "Только в одном месте нашли. Идентификатор был установлен автоматически выше."
|
242 |
+
|
243 |
+
#: awesome-weather.php:457
|
244 |
+
msgid "Please confirm your city: "
|
245 |
+
msgstr "Пожалуйста, подтвердите свой город:"
|
246 |
+
|
247 |
+
#: widget.php:101
|
248 |
+
msgid "and add it to the new settings page."
|
249 |
+
msgstr "и добавить его в новой странице настроек."
|
250 |
+
|
251 |
+
#: widget.php:108
|
252 |
+
msgid "Search for Your Location:"
|
253 |
+
msgstr "Поиск вашего местоположения:"
|
254 |
+
|
255 |
+
#: widget.php:109
|
256 |
+
msgid "(i.e: London or New York City)"
|
257 |
+
msgstr "(то есть: Лондон или Нью-Йорк)"
|
258 |
+
|
259 |
+
#: widget.php:116
|
260 |
+
msgid "OpenWeatherMap City ID:"
|
261 |
+
msgstr "OpenWeatherMap Город ID:"
|
262 |
+
|
263 |
+
#: widget.php:117
|
264 |
+
msgid "(use the field above to find the ID for your city)"
|
265 |
+
msgstr "(использовать поле выше, чтобы найти идентификатор в вашем городе)"
|
266 |
+
|
267 |
+
#: widget.php:130
|
268 |
+
msgid "Override Title:"
|
269 |
+
msgstr "Свой заголовой"
|
270 |
+
|
271 |
+
#: widget.php:135
|
272 |
+
msgid "Units:"
|
273 |
+
msgstr "Единицы:"
|
274 |
+
|
275 |
+
#: widget.php:149
|
276 |
+
msgid "Size:"
|
277 |
+
msgstr "Размер:"
|
278 |
+
|
279 |
+
#: widget.php:158
|
280 |
+
msgid "Forecast:"
|
281 |
+
msgstr "Прогноз:"
|
282 |
+
|
283 |
+
#: widget.php:172
|
284 |
+
msgid "Background Image:"
|
285 |
+
msgstr "Фоновое изображение:"
|
286 |
+
|
287 |
+
#: widget.php:178
|
288 |
+
msgid "Use Different Background Images Based on Weather"
|
289 |
+
msgstr "Используйте другой фон изображения на основе Погода"
|
290 |
+
|
291 |
+
#: widget.php:182
|
292 |
+
msgid "Custom Background Color:"
|
293 |
+
msgstr "Цвет фона:"
|
294 |
+
|
295 |
+
#: widget.php:183
|
296 |
+
msgid "overrides color changing"
|
297 |
+
msgstr "перехват смены цвета"
|
298 |
+
|
299 |
+
#: widget.php:188
|
300 |
+
msgid "Text Color"
|
301 |
+
msgstr "Цвет текста"
|
302 |
+
|
303 |
+
#: widget.php:207
|
304 |
+
msgid "Hide Current Condition Stats"
|
305 |
+
msgstr "Скрыть Текущее состояние статистики"
|
306 |
+
|
307 |
+
#: widget.php:213
|
308 |
+
msgid "Link to OpenWeatherMap"
|
309 |
+
msgstr "Ссылка на OpenWeatherMap"
|
310 |
+
|
311 |
+
#: widget.php:217
|
312 |
+
msgid "Widget Title: (optional)"
|
313 |
+
msgstr "Титул виджета:(опцонально)"
|
314 |
+
|
315 |
+
#. Description of the plugin/theme
|
316 |
+
msgid "A weather widget that actually looks cool"
|
317 |
+
msgstr "Виджет погоды, который поистине выглядит круто"
|
318 |
+
|
319 |
+
#. Author of the plugin/theme
|
320 |
+
msgid "Hal Gatewood"
|
321 |
+
msgstr "Hal Gatewood"
|
languages/awesome-weather-sv_SE.mo
CHANGED
Binary file
|
languages/awesome-weather-sv_SE.po
CHANGED
@@ -1,216 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
#: awesome-weather.php:
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
-
|
30 |
-
#: awesome-weather.php:
|
31 |
-
msgid "
|
32 |
-
msgstr "
|
33 |
-
|
34 |
-
#: awesome-weather.php:
|
35 |
-
msgid "
|
36 |
-
msgstr "
|
37 |
-
|
38 |
-
#: awesome-weather.php:
|
39 |
-
msgid "
|
40 |
-
msgstr "
|
41 |
-
|
42 |
-
#: awesome-weather.php:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
-
|
46 |
-
#: awesome-weather.php:
|
47 |
-
msgid "
|
48 |
-
msgstr "
|
49 |
-
|
50 |
-
#: awesome-weather.php:
|
51 |
-
msgid "
|
52 |
-
msgstr "
|
53 |
-
|
54 |
-
#: awesome-weather.php:
|
55 |
-
msgid "
|
56 |
-
msgstr "
|
57 |
-
|
58 |
-
#: awesome-weather.php:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
-
|
62 |
-
#: awesome-weather.php:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
-
|
66 |
-
#: awesome-weather.php:
|
67 |
-
msgid "
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
msgstr "
|
113 |
-
|
114 |
-
#:
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
-
|
118 |
-
#:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
-
|
122 |
-
#:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
-
|
126 |
-
#:
|
127 |
-
msgid "
|
128 |
-
msgstr "
|
129 |
-
|
130 |
-
#:
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
133 |
-
|
134 |
-
#:
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
-
|
138 |
-
#:
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
-
|
142 |
-
#:
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
#:
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
-
|
150 |
-
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
-
|
154 |
-
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: awesome-weather.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
|
199 |
-
msgid "
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
|
203 |
-
msgid "
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
|
207 |
-
msgid "
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
|
211 |
-
msgid "
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
|
215 |
-
msgid "
|
216 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:29:25 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Swedish\n"
|
10 |
+
"Plural-Forms: nplurals=2; plural=n != 1\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: sv_SE"
|
24 |
+
|
25 |
+
#. Plugin Name of the plugin/theme
|
26 |
+
#: awesome-weather-settings.php:13
|
27 |
+
msgid "Awesome Weather Widget"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: awesome-weather-settings.php:17
|
31 |
+
msgid "Weather Widget Cache Cleared"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: awesome-weather-settings.php:28
|
35 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: awesome-weather-settings.php:42
|
39 |
+
msgid "Settings"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: awesome-weather-settings.php:46
|
43 |
+
msgid "API Key Required"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: awesome-weather-settings.php:51
|
47 |
+
msgid "Donate"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: awesome-weather-settings.php:54
|
51 |
+
msgid "Upgrade"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: awesome-weather-settings.php:69
|
55 |
+
msgid "OpenWeatherMaps APPID"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: awesome-weather-settings.php:70
|
59 |
+
msgid "Error Handling"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: awesome-weather-settings.php:106
|
63 |
+
msgid "Defined in wp-config"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: awesome-weather-settings.php:113
|
67 |
+
msgid ""
|
68 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
69 |
+
"weather data."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
73 |
+
msgid "Get your APPID"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: awesome-weather-settings.php:126
|
77 |
+
msgid "Hidden in Source"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: awesome-weather-settings.php:127
|
81 |
+
msgid "Display if Admin"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: awesome-weather-settings.php:128
|
85 |
+
msgid "Display for Anyone"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: awesome-weather-settings.php:131
|
89 |
+
msgid "What should the plugin do when there is an error?"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: awesome-weather.php:355
|
93 |
+
msgid "m/s"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: awesome-weather.php:455
|
97 |
+
msgid "No city found in OpenWeatherMap."
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: awesome-weather.php:456
|
101 |
+
msgid "Only one location found. The ID has been set automatically above."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: awesome-weather.php:457
|
105 |
+
msgid "Please confirm your city: "
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: widget.php:97
|
109 |
+
msgid ""
|
110 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
111 |
+
"weather data."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: widget.php:101
|
115 |
+
msgid "and add it to the new settings page."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: widget.php:108
|
119 |
+
msgid "Search for Your Location:"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: widget.php:109
|
123 |
+
msgid "(i.e: London or New York City)"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: widget.php:116
|
127 |
+
msgid "OpenWeatherMap City ID:"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: widget.php:117
|
131 |
+
msgid "(use the field above to find the ID for your city)"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: widget.php:178
|
135 |
+
msgid "Use Different Background Images Based on Weather"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: widget.php:188
|
139 |
+
msgid "Text Color"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: widget.php:207
|
143 |
+
msgid "Hide Current Condition Stats"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: widget.php:213
|
147 |
+
msgid "Link to OpenWeatherMap"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#. Plugin URI of the plugin/theme
|
151 |
+
msgid "https://halgatewood.com/awesome-weather"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#. Description of the plugin/theme
|
155 |
+
msgid "A weather widget that actually looks cool"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#. Author of the plugin/theme
|
159 |
+
msgid "Hal Gatewood"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#. Author URI of the plugin/theme
|
163 |
+
msgid "https://www.halgatewood.com"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: awesome-weather.php:75
|
167 |
+
msgid "C"
|
168 |
+
msgstr "C"
|
169 |
+
|
170 |
+
#: awesome-weather.php:75
|
171 |
+
msgid "F"
|
172 |
+
msgstr "F"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "N"
|
176 |
+
msgstr "N"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "NNE"
|
180 |
+
msgstr "NNO"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "NE"
|
184 |
+
msgstr "NO"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "ENE"
|
188 |
+
msgstr "ONO"
|
189 |
+
|
190 |
+
#: awesome-weather.php:271
|
191 |
+
msgid "E"
|
192 |
+
msgstr "O"
|
193 |
+
|
194 |
+
#: awesome-weather.php:271
|
195 |
+
msgid "ESE"
|
196 |
+
msgstr "OSO"
|
197 |
+
|
198 |
+
#: awesome-weather.php:271
|
199 |
+
msgid "SE"
|
200 |
+
msgstr "SO"
|
201 |
+
|
202 |
+
#: awesome-weather.php:271
|
203 |
+
msgid "SSE"
|
204 |
+
msgstr "SSO"
|
205 |
+
|
206 |
+
#: awesome-weather.php:271
|
207 |
+
msgid "S"
|
208 |
+
msgstr "S"
|
209 |
+
|
210 |
+
#: awesome-weather.php:271
|
211 |
+
msgid "SSW"
|
212 |
+
msgstr "SSV"
|
213 |
+
|
214 |
+
#: awesome-weather.php:271
|
215 |
+
msgid "SW"
|
216 |
+
msgstr "SV"
|
217 |
+
|
218 |
+
#: awesome-weather.php:271
|
219 |
+
msgid "WSW"
|
220 |
+
msgstr "VSV"
|
221 |
+
|
222 |
+
#: awesome-weather.php:271
|
223 |
+
msgid "W"
|
224 |
+
msgstr "V"
|
225 |
+
|
226 |
+
#: awesome-weather.php:271
|
227 |
+
msgid "WNW"
|
228 |
+
msgstr "VNV"
|
229 |
+
|
230 |
+
#: awesome-weather.php:271
|
231 |
+
msgid "NW"
|
232 |
+
msgstr "NV"
|
233 |
+
|
234 |
+
#: awesome-weather.php:271
|
235 |
+
msgid "NNW"
|
236 |
+
msgstr "NNV"
|
237 |
+
|
238 |
+
#: awesome-weather.php:355
|
239 |
+
msgid "mph"
|
240 |
+
msgstr "mph"
|
241 |
+
|
242 |
+
#: awesome-weather.php:364
|
243 |
+
msgid "humidity:"
|
244 |
+
msgstr "fuktighet"
|
245 |
+
|
246 |
+
#: awesome-weather.php:365
|
247 |
+
msgid "wind:"
|
248 |
+
msgstr "vind"
|
249 |
+
|
250 |
+
#: awesome-weather.php:366
|
251 |
+
msgid "H"
|
252 |
+
msgstr "H"
|
253 |
+
|
254 |
+
#: awesome-weather.php:366
|
255 |
+
msgid "L"
|
256 |
+
msgstr "L"
|
257 |
+
|
258 |
+
#: awesome-weather.php:377
|
259 |
+
msgid "Sun"
|
260 |
+
msgstr "Sön"
|
261 |
+
|
262 |
+
#: awesome-weather.php:377
|
263 |
+
msgid "Mon"
|
264 |
+
msgstr "Mån"
|
265 |
+
|
266 |
+
#: awesome-weather.php:377
|
267 |
+
msgid "Tue"
|
268 |
+
msgstr "Tis"
|
269 |
+
|
270 |
+
#: awesome-weather.php:377
|
271 |
+
msgid "Wed"
|
272 |
+
msgstr "Ons"
|
273 |
+
|
274 |
+
#: awesome-weather.php:377
|
275 |
+
msgid "Thu"
|
276 |
+
msgstr "Tors"
|
277 |
+
|
278 |
+
#: awesome-weather.php:377
|
279 |
+
msgid "Fri"
|
280 |
+
msgstr "Fre"
|
281 |
+
|
282 |
+
#: awesome-weather.php:377
|
283 |
+
msgid "Sat"
|
284 |
+
msgstr "Lör"
|
285 |
+
|
286 |
+
#: awesome-weather.php:397
|
287 |
+
msgid "extended forecast"
|
288 |
+
msgstr "Utöka prognos"
|
289 |
+
|
290 |
+
#: awesome-weather.php:420
|
291 |
+
msgid "No weather information available"
|
292 |
+
msgstr "Ingen väderinformations finns"
|
293 |
+
|
294 |
+
#: widget.php:130
|
295 |
+
msgid "Override Title:"
|
296 |
+
msgstr "Ignorera Titel:"
|
297 |
+
|
298 |
+
#: widget.php:135
|
299 |
+
msgid "Units:"
|
300 |
+
msgstr "Enhet:"
|
301 |
+
|
302 |
+
#: widget.php:149
|
303 |
+
msgid "Size:"
|
304 |
+
msgstr "Storlek:"
|
305 |
+
|
306 |
+
#: widget.php:158
|
307 |
+
msgid "Forecast:"
|
308 |
+
msgstr "Prognos:"
|
309 |
+
|
310 |
+
#: widget.php:172
|
311 |
+
msgid "Background Image:"
|
312 |
+
msgstr "Bakgrundsbild:"
|
313 |
+
|
314 |
+
#: widget.php:182
|
315 |
+
msgid "Custom Background Color:"
|
316 |
+
msgstr "Egen Bakgrundsfärg:"
|
317 |
+
|
318 |
+
#: widget.php:183
|
319 |
+
msgid "overrides color changing"
|
320 |
+
msgstr "ignorera färgändringar"
|
321 |
+
|
322 |
+
#: widget.php:217
|
323 |
+
msgid "Widget Title: (optional)"
|
324 |
+
msgstr "Widget Titel: (frivillig)"
|
languages/awesome-weather-tr_TR.mo
CHANGED
Binary file
|
languages/awesome-weather-tr_TR.po
CHANGED
@@ -1,240 +1,324 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"X-
|
15 |
-
"
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
#: awesome-weather.php:
|
115 |
-
msgid "
|
116 |
-
msgstr "
|
117 |
-
|
118 |
-
#: awesome-weather.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
-
|
122 |
-
#: awesome-weather.php:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
-
|
126 |
-
#: awesome-weather.php:
|
127 |
-
msgid "
|
128 |
-
msgstr "
|
129 |
-
|
130 |
-
#: awesome-weather.php:
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
133 |
-
|
134 |
-
#: awesome-weather.php:
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
-
|
138 |
-
#: awesome-weather.php:
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
-
|
142 |
-
#: awesome-weather.php:
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
-
|
146 |
-
#: awesome-weather.php:
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
-
|
150 |
-
#: awesome-weather.php:
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
-
|
154 |
-
#: awesome-weather.php:
|
155 |
-
msgid "
|
156 |
-
msgstr "
|
157 |
-
|
158 |
-
#: awesome-weather.php:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
-
|
162 |
-
#: awesome-weather.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
-
|
166 |
-
#: awesome-weather.php:
|
167 |
-
msgid "
|
168 |
-
msgstr "
|
169 |
-
|
170 |
-
#: awesome-weather.php:
|
171 |
-
msgid "
|
172 |
-
msgstr "
|
173 |
-
|
174 |
-
#: awesome-weather.php:
|
175 |
-
msgid "
|
176 |
-
msgstr "
|
177 |
-
|
178 |
-
#: awesome-weather.php:
|
179 |
-
msgid "
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: awesome-weather.php:
|
183 |
-
msgid "
|
184 |
-
msgstr "
|
185 |
-
|
186 |
-
#: awesome-weather.php:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
-
|
190 |
-
#: awesome-weather.php:
|
191 |
-
msgid "
|
192 |
-
msgstr "
|
193 |
-
|
194 |
-
#: awesome-weather.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
197 |
-
|
198 |
-
#: awesome-weather.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
-
|
202 |
-
#: awesome-weather.php:
|
203 |
-
msgid "
|
204 |
-
msgstr "
|
205 |
-
|
206 |
-
#: awesome-weather.php:
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
209 |
-
|
210 |
-
#: awesome-weather.php:
|
211 |
-
msgid "
|
212 |
-
msgstr "
|
213 |
-
|
214 |
-
#: awesome-weather.php:
|
215 |
-
msgid "
|
216 |
-
msgstr "
|
217 |
-
|
218 |
-
#: awesome-weather.php:
|
219 |
-
msgid "
|
220 |
-
msgstr "
|
221 |
-
|
222 |
-
|
223 |
-
msgid "
|
224 |
-
msgstr "
|
225 |
-
|
226 |
-
|
227 |
-
msgid "
|
228 |
-
msgstr "
|
229 |
-
|
230 |
-
|
231 |
-
msgid "
|
232 |
-
msgstr "
|
233 |
-
|
234 |
-
|
235 |
-
msgid "
|
236 |
-
msgstr "
|
237 |
-
|
238 |
-
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
5 |
+
"POT-Creation-Date: 2016-01-09 06:34:11+00:00\n"
|
6 |
+
"PO-Revision-Date: Sat Jan 09 2016 01:30:11 GMT-0600 (CST)\n"
|
7 |
+
"Last-Translator: Hal Gatewood <hal@halgatewood.com>\n"
|
8 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
+
"Language: Turkish\n"
|
10 |
+
"Plural-Forms: nplurals=1; plural=0\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Loco - https://localise.biz/\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
+
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
+
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
21 |
+
"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
|
22 |
+
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
23 |
+
"X-Loco-Target-Locale: tr_TR"
|
24 |
+
|
25 |
+
#: awesome-weather-settings.php:17
|
26 |
+
msgid "Weather Widget Cache Cleared"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: awesome-weather-settings.php:28
|
30 |
+
msgid "Clear all Awesome Weather Widget Cache"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: awesome-weather-settings.php:42
|
34 |
+
msgid "Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: awesome-weather-settings.php:46
|
38 |
+
msgid "API Key Required"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: awesome-weather-settings.php:51
|
42 |
+
msgid "Donate"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: awesome-weather-settings.php:54
|
46 |
+
msgid "Upgrade"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: awesome-weather-settings.php:69
|
50 |
+
msgid "OpenWeatherMaps APPID"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: awesome-weather-settings.php:70
|
54 |
+
msgid "Error Handling"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: awesome-weather-settings.php:106
|
58 |
+
msgid "Defined in wp-config"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: awesome-weather-settings.php:113
|
62 |
+
msgid ""
|
63 |
+
"As of October 2015, OpenWeatherMaps requires this key to access their "
|
64 |
+
"weather data."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
68 |
+
msgid "Get your APPID"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: awesome-weather-settings.php:126
|
72 |
+
msgid "Hidden in Source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: awesome-weather-settings.php:127
|
76 |
+
msgid "Display if Admin"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: awesome-weather-settings.php:128
|
80 |
+
msgid "Display for Anyone"
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: awesome-weather-settings.php:131
|
84 |
+
msgid "What should the plugin do when there is an error?"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
#: awesome-weather.php:355
|
88 |
+
msgid "m/s"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
#: widget.php:97
|
92 |
+
msgid ""
|
93 |
+
"As of October 2015, OpenWeatherMap requires an APP ID key to access their "
|
94 |
+
"weather data."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: widget.php:101
|
98 |
+
msgid "and add it to the new settings page."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: widget.php:109
|
102 |
+
msgid "(i.e: London or New York City)"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: widget.php:188
|
106 |
+
msgid "Text Color"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: widget.php:207
|
110 |
+
msgid "Hide Current Condition Stats"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#. Plugin Name of the plugin/theme
|
114 |
+
#: awesome-weather-settings.php:13
|
115 |
+
msgid "Awesome Weather Widget"
|
116 |
+
msgstr "Hava Durumu Bileşeni"
|
117 |
+
|
118 |
+
#: awesome-weather.php:75
|
119 |
+
msgid "C"
|
120 |
+
msgstr "°C"
|
121 |
+
|
122 |
+
#: awesome-weather.php:75
|
123 |
+
msgid "F"
|
124 |
+
msgstr "°F"
|
125 |
+
|
126 |
+
#: awesome-weather.php:271
|
127 |
+
msgid "N"
|
128 |
+
msgstr "K"
|
129 |
+
|
130 |
+
#: awesome-weather.php:271
|
131 |
+
msgid "NNE"
|
132 |
+
msgstr "KKD"
|
133 |
+
|
134 |
+
#: awesome-weather.php:271
|
135 |
+
msgid "NE"
|
136 |
+
msgstr "KD"
|
137 |
+
|
138 |
+
#: awesome-weather.php:271
|
139 |
+
msgid "ENE"
|
140 |
+
msgstr "DKD"
|
141 |
+
|
142 |
+
#: awesome-weather.php:271
|
143 |
+
msgid "E"
|
144 |
+
msgstr "D"
|
145 |
+
|
146 |
+
#: awesome-weather.php:271
|
147 |
+
msgid "ESE"
|
148 |
+
msgstr "DGD"
|
149 |
+
|
150 |
+
#: awesome-weather.php:271
|
151 |
+
msgid "SE"
|
152 |
+
msgstr "GD"
|
153 |
+
|
154 |
+
#: awesome-weather.php:271
|
155 |
+
msgid "SSE"
|
156 |
+
msgstr "GGD"
|
157 |
+
|
158 |
+
#: awesome-weather.php:271
|
159 |
+
msgid "S"
|
160 |
+
msgstr "G"
|
161 |
+
|
162 |
+
#: awesome-weather.php:271
|
163 |
+
msgid "SSW"
|
164 |
+
msgstr "GGB"
|
165 |
+
|
166 |
+
#: awesome-weather.php:271
|
167 |
+
msgid "SW"
|
168 |
+
msgstr "GB"
|
169 |
+
|
170 |
+
#: awesome-weather.php:271
|
171 |
+
msgid "WSW"
|
172 |
+
msgstr "BGB"
|
173 |
+
|
174 |
+
#: awesome-weather.php:271
|
175 |
+
msgid "W"
|
176 |
+
msgstr "B"
|
177 |
+
|
178 |
+
#: awesome-weather.php:271
|
179 |
+
msgid "WNW"
|
180 |
+
msgstr "BKB"
|
181 |
+
|
182 |
+
#: awesome-weather.php:271
|
183 |
+
msgid "NW"
|
184 |
+
msgstr "KB"
|
185 |
+
|
186 |
+
#: awesome-weather.php:271
|
187 |
+
msgid "NNW"
|
188 |
+
msgstr "KKB"
|
189 |
+
|
190 |
+
#: awesome-weather.php:355
|
191 |
+
msgid "mph"
|
192 |
+
msgstr "mil/saat"
|
193 |
+
|
194 |
+
#: awesome-weather.php:364
|
195 |
+
msgid "humidity:"
|
196 |
+
msgstr "nem:"
|
197 |
+
|
198 |
+
#: awesome-weather.php:365
|
199 |
+
msgid "wind:"
|
200 |
+
msgstr "Rüzgar:"
|
201 |
+
|
202 |
+
#: awesome-weather.php:366
|
203 |
+
msgid "H"
|
204 |
+
msgstr "Y"
|
205 |
+
|
206 |
+
#: awesome-weather.php:366
|
207 |
+
msgid "L"
|
208 |
+
msgstr "D"
|
209 |
+
|
210 |
+
#: awesome-weather.php:377
|
211 |
+
msgid "Sun"
|
212 |
+
msgstr "Paz"
|
213 |
+
|
214 |
+
#: awesome-weather.php:377
|
215 |
+
msgid "Mon"
|
216 |
+
msgstr "Ptesi"
|
217 |
+
|
218 |
+
#: awesome-weather.php:377
|
219 |
+
msgid "Tue"
|
220 |
+
msgstr "Sal"
|
221 |
+
|
222 |
+
#: awesome-weather.php:377
|
223 |
+
msgid "Wed"
|
224 |
+
msgstr "Çarş"
|
225 |
+
|
226 |
+
#: awesome-weather.php:377
|
227 |
+
msgid "Thu"
|
228 |
+
msgstr "Per"
|
229 |
+
|
230 |
+
#: awesome-weather.php:377
|
231 |
+
msgid "Fri"
|
232 |
+
msgstr "Cuma"
|
233 |
+
|
234 |
+
#: awesome-weather.php:377
|
235 |
+
msgid "Sat"
|
236 |
+
msgstr "Ctesi"
|
237 |
+
|
238 |
+
#: awesome-weather.php:397
|
239 |
+
msgid "extended forecast"
|
240 |
+
msgstr "Genişletilmiş tahmin"
|
241 |
+
|
242 |
+
#: awesome-weather.php:420
|
243 |
+
msgid "No weather information available"
|
244 |
+
msgstr "Mevcut Hava durumu bilgisi yok"
|
245 |
+
|
246 |
+
#: awesome-weather.php:455
|
247 |
+
msgid "No city found in OpenWeatherMap."
|
248 |
+
msgstr "şehir bulunamadı."
|
249 |
+
|
250 |
+
#: awesome-weather.php:456
|
251 |
+
msgid "Only one location found. The ID has been set automatically above."
|
252 |
+
msgstr "Sadece bir yer bulundu. Kimliği otomatik olarak yukarıda belirtilmiştir."
|
253 |
+
|
254 |
+
#: awesome-weather.php:457
|
255 |
+
msgid "Please confirm your city: "
|
256 |
+
msgstr "Şehrinizi teyit edin: & nbsp;"
|
257 |
+
|
258 |
+
#: widget.php:108
|
259 |
+
msgid "Search for Your Location:"
|
260 |
+
msgstr "Konumunuzu ara:"
|
261 |
+
|
262 |
+
#: widget.php:116
|
263 |
+
msgid "OpenWeatherMap City ID:"
|
264 |
+
msgstr "OpenWeatherMap Şehir Kimliği:"
|
265 |
+
|
266 |
+
#: widget.php:117
|
267 |
+
msgid "(use the field above to find the ID for your city)"
|
268 |
+
msgstr "(Şehrinizin kimliğini bulmak için yukarıdaki alanı kullanın)"
|
269 |
+
|
270 |
+
#: widget.php:130
|
271 |
+
msgid "Override Title:"
|
272 |
+
msgstr "Başlığı geçersiz kıl:"
|
273 |
+
|
274 |
+
#: widget.php:135
|
275 |
+
msgid "Units:"
|
276 |
+
msgstr "Birimler:"
|
277 |
+
|
278 |
+
#: widget.php:149
|
279 |
+
msgid "Size:"
|
280 |
+
msgstr "Boyutu:"
|
281 |
+
|
282 |
+
#: widget.php:158
|
283 |
+
msgid "Forecast:"
|
284 |
+
msgstr "Tahmin:"
|
285 |
+
|
286 |
+
#: widget.php:172
|
287 |
+
msgid "Background Image:"
|
288 |
+
msgstr "Arkaplan Resim:"
|
289 |
+
|
290 |
+
#: widget.php:178
|
291 |
+
msgid "Use Different Background Images Based on Weather"
|
292 |
+
msgstr "Havaya dayanarak Farklı Arka Plan Görüntüleri kullanın"
|
293 |
+
|
294 |
+
#: widget.php:182
|
295 |
+
msgid "Custom Background Color:"
|
296 |
+
msgstr "Özel Arkaplan Rengi:"
|
297 |
+
|
298 |
+
#: widget.php:183
|
299 |
+
msgid "overrides color changing"
|
300 |
+
msgstr "Renk değişimini geçersiz kılar"
|
301 |
+
|
302 |
+
#: widget.php:213
|
303 |
+
msgid "Link to OpenWeatherMap"
|
304 |
+
msgstr "OpenWeatherMap Link"
|
305 |
+
|
306 |
+
#: widget.php:217
|
307 |
+
msgid "Widget Title: (optional)"
|
308 |
+
msgstr "Bileşen başlığı: (isteğe bağlı)"
|
309 |
+
|
310 |
+
#. Plugin URI of the plugin/theme
|
311 |
+
msgid "https://halgatewood.com/awesome-weather"
|
312 |
+
msgstr "https://halgatewood.com/awesome-weather"
|
313 |
+
|
314 |
+
#. Description of the plugin/theme
|
315 |
+
msgid "A weather widget that actually looks cool"
|
316 |
+
msgstr "hava durmu bileşeni aslında iyi görünüyor "
|
317 |
+
|
318 |
+
#. Author of the plugin/theme
|
319 |
+
msgid "Hal Gatewood"
|
320 |
+
msgstr "Hal Gatewood"
|
321 |
+
|
322 |
+
#. Author URI of the plugin/theme
|
323 |
+
msgid "https://www.halgatewood.com"
|
324 |
+
msgstr "https://www.halgatewood.com"
|
languages/awesome-weather.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Awesome Weather Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Awesome Weather Widget 1.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
@@ -32,143 +32,143 @@ msgstr ""
|
|
32 |
msgid "API Key Required"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: awesome-weather-settings.php:
|
36 |
msgid "Donate"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: awesome-weather-settings.php:
|
40 |
msgid "Upgrade"
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: awesome-weather-settings.php:
|
44 |
msgid "OpenWeatherMaps APPID"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: awesome-weather-settings.php:
|
48 |
msgid "Error Handling"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: awesome-weather-settings.php:
|
52 |
msgid "Defined in wp-config"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: awesome-weather-settings.php:
|
56 |
-
msgid "As of October 2015,
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: awesome-weather-settings.php:
|
60 |
msgid "Get your APPID"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: awesome-weather-settings.php:
|
64 |
msgid "Hidden in Source"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: awesome-weather-settings.php:
|
68 |
msgid "Display if Admin"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: awesome-weather-settings.php:
|
72 |
msgid "Display for Anyone"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: awesome-weather-settings.php:
|
76 |
msgid "What should the plugin do when there is an error?"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: awesome-weather.php:
|
80 |
msgid "C"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: awesome-weather.php:
|
84 |
msgid "F"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: awesome-weather.php:
|
88 |
msgid "N"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: awesome-weather.php:
|
92 |
msgid "NNE"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: awesome-weather.php:
|
96 |
msgid "NE"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: awesome-weather.php:
|
100 |
msgid "ENE"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: awesome-weather.php:
|
104 |
msgid "E"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: awesome-weather.php:
|
108 |
msgid "ESE"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: awesome-weather.php:
|
112 |
msgid "SE"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: awesome-weather.php:
|
116 |
msgid "SSE"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: awesome-weather.php:
|
120 |
msgid "S"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: awesome-weather.php:
|
124 |
msgid "SSW"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: awesome-weather.php:
|
128 |
msgid "SW"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: awesome-weather.php:
|
132 |
msgid "WSW"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: awesome-weather.php:
|
136 |
msgid "W"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: awesome-weather.php:
|
140 |
msgid "WNW"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: awesome-weather.php:
|
144 |
msgid "NW"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: awesome-weather.php:
|
148 |
msgid "NNW"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: awesome-weather.php:
|
152 |
msgid "mph"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: awesome-weather.php:
|
156 |
msgid "m/s"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: awesome-weather.php:
|
160 |
msgid "humidity:"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: awesome-weather.php:
|
164 |
msgid "wind:"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: awesome-weather.php:
|
168 |
msgid "H"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: awesome-weather.php:
|
172 |
msgid "L"
|
173 |
msgstr ""
|
174 |
|
@@ -200,95 +200,91 @@ msgstr ""
|
|
200 |
msgid "Sat"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: awesome-weather.php:
|
204 |
msgid "extended forecast"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: awesome-weather.php:
|
208 |
msgid "No weather information available"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: awesome-weather.php:
|
212 |
msgid "No city found in OpenWeatherMap."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: awesome-weather.php:
|
216 |
msgid "Only one location found. The ID has been set automatically above."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: awesome-weather.php:
|
220 |
msgid "Please confirm your city: "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
-
msgid "As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data."
|
225 |
-
msgstr ""
|
226 |
-
|
227 |
-
#: awesome-weather.php:566
|
228 |
msgid "and add it to the new settings page."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#:
|
232 |
msgid "Search for Your Location:"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
-
msgid "(i.e: London
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
msgid "OpenWeatherMap City ID:"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
244 |
msgid "(use the field above to find the ID for your city)"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
msgid "Override Title:"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
msgid "Units:"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
msgid "Size:"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#:
|
260 |
msgid "Forecast:"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#:
|
264 |
msgid "Background Image:"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
msgid "Use Different Background Images Based on Weather"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
msgid "Custom Background Color:"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#:
|
276 |
msgid "overrides color changing"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
msgid "Text Color"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
msgid "Hide Stats"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
msgid "Link to OpenWeatherMap"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#:
|
292 |
msgid "Widget Title: (optional)"
|
293 |
msgstr ""
|
294 |
#. Plugin Name of the plugin/theme
|
1 |
+
# Copyright (C) 2016 Awesome Weather Widget
|
2 |
# This file is distributed under the same license as the Awesome Weather Widget package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Awesome Weather Widget 1.5.7\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/awesome-weather\n"
|
7 |
+
"POT-Creation-Date: 2016-01-09 07:34:17+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
32 |
msgid "API Key Required"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: awesome-weather-settings.php:51
|
36 |
msgid "Donate"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: awesome-weather-settings.php:54
|
40 |
msgid "Upgrade"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: awesome-weather-settings.php:69
|
44 |
msgid "OpenWeatherMaps APPID"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: awesome-weather-settings.php:70
|
48 |
msgid "Error Handling"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: awesome-weather-settings.php:106
|
52 |
msgid "Defined in wp-config"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: awesome-weather-settings.php:113 widget.php:97
|
56 |
+
msgid "As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: awesome-weather-settings.php:115 widget.php:99
|
60 |
msgid "Get your APPID"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: awesome-weather-settings.php:126
|
64 |
msgid "Hidden in Source"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: awesome-weather-settings.php:127
|
68 |
msgid "Display if Admin"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: awesome-weather-settings.php:128
|
72 |
msgid "Display for Anyone"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: awesome-weather-settings.php:131
|
76 |
msgid "What should the plugin do when there is an error?"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: awesome-weather.php:75
|
80 |
msgid "C"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: awesome-weather.php:75
|
84 |
msgid "F"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: awesome-weather.php:271
|
88 |
msgid "N"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: awesome-weather.php:271
|
92 |
msgid "NNE"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: awesome-weather.php:271
|
96 |
msgid "NE"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: awesome-weather.php:271
|
100 |
msgid "ENE"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: awesome-weather.php:271
|
104 |
msgid "E"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: awesome-weather.php:271
|
108 |
msgid "ESE"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: awesome-weather.php:271
|
112 |
msgid "SE"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: awesome-weather.php:271
|
116 |
msgid "SSE"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: awesome-weather.php:271
|
120 |
msgid "S"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: awesome-weather.php:271
|
124 |
msgid "SSW"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: awesome-weather.php:271
|
128 |
msgid "SW"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: awesome-weather.php:271
|
132 |
msgid "WSW"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: awesome-weather.php:271
|
136 |
msgid "W"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: awesome-weather.php:271
|
140 |
msgid "WNW"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: awesome-weather.php:271
|
144 |
msgid "NW"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: awesome-weather.php:271
|
148 |
msgid "NNW"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: awesome-weather.php:355
|
152 |
msgid "mph"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: awesome-weather.php:355
|
156 |
msgid "m/s"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: awesome-weather.php:364
|
160 |
msgid "humidity:"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: awesome-weather.php:365
|
164 |
msgid "wind:"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: awesome-weather.php:366
|
168 |
msgid "H"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: awesome-weather.php:366
|
172 |
msgid "L"
|
173 |
msgstr ""
|
174 |
|
200 |
msgid "Sat"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: awesome-weather.php:397
|
204 |
msgid "extended forecast"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: awesome-weather.php:420
|
208 |
msgid "No weather information available"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: awesome-weather.php:455
|
212 |
msgid "No city found in OpenWeatherMap."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: awesome-weather.php:456
|
216 |
msgid "Only one location found. The ID has been set automatically above."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: awesome-weather.php:457
|
220 |
msgid "Please confirm your city: "
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: widget.php:101
|
|
|
|
|
|
|
|
|
224 |
msgid "and add it to the new settings page."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: widget.php:108
|
228 |
msgid "Search for Your Location:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: widget.php:109
|
232 |
+
msgid "(i.e: London or New York City)"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: widget.php:116
|
236 |
msgid "OpenWeatherMap City ID:"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: widget.php:117
|
240 |
msgid "(use the field above to find the ID for your city)"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: widget.php:130
|
244 |
msgid "Override Title:"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: widget.php:135
|
248 |
msgid "Units:"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: widget.php:149
|
252 |
msgid "Size:"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: widget.php:158
|
256 |
msgid "Forecast:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: widget.php:172
|
260 |
msgid "Background Image:"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: widget.php:178
|
264 |
msgid "Use Different Background Images Based on Weather"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: widget.php:182
|
268 |
msgid "Custom Background Color:"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: widget.php:183
|
272 |
msgid "overrides color changing"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: widget.php:188
|
276 |
msgid "Text Color"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: widget.php:207
|
280 |
+
msgid "Hide Current Condition Stats"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: widget.php:213
|
284 |
msgid "Link to OpenWeatherMap"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: widget.php:217
|
288 |
msgid "Widget Title: (optional)"
|
289 |
msgstr ""
|
290 |
#. Plugin Name of the plugin/theme
|
readme.txt
CHANGED
@@ -81,6 +81,9 @@ Use the built in widget with all of its marvelous settings or add it to a page o
|
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
|
|
|
|
|
|
84 |
= 1.5.6 =
|
85 |
Two new filters available to remove to the Google font Open Sans. Added new missing background preset 'atmosphere'
|
86 |
|
@@ -121,21 +124,11 @@ Slightly modified the CSS to include box-sizing. This may slightly modify the lo
|
|
121 |
* Checked to be working with WordPress 3.9
|
122 |
|
123 |
= 1.4 =
|
124 |
-
|
125 |
-
Gearing up for the PRO version coming soon which will include:
|
126 |
-
* weather icons
|
127 |
-
* custom layouts
|
128 |
-
* shortcode generator
|
129 |
-
* C/F switching
|
130 |
-
* User location detection
|
131 |
-
|
132 |
-
This release includes:
|
133 |
* Extended forecast now uses WP current_time to determine what days to show, uses Timezone in 'Settings' -> 'General'
|
134 |
* Added a Widget Title field that uses the standard widget code from the sidebar (optional)
|
135 |
* Support for OpenWeatherMaps City ID, just insert in the Location field.
|
136 |
* Support for rgba() in the Custom Background Color
|
137 |
|
138 |
-
|
139 |
= 1.3.4 =
|
140 |
Fixed issue with Location stripping spaces from text cause weather to not get accessed. Thanks @storkontheroof!
|
141 |
|
@@ -186,6 +179,16 @@ Changed API endpoints. Might not find weather without update.
|
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
= 1.5.6.2 =
|
190 |
* Added SK to locales and a filter to modify list of available locales
|
191 |
|
@@ -260,7 +263,6 @@ Added box-sizing: border-box to hopefully clean up the widget in many themes.
|
|
260 |
* Changed default cached time from 1 hour to 3 hours
|
261 |
* Cleaned up two PHP notices in admin
|
262 |
|
263 |
-
|
264 |
= 1.3.4 =
|
265 |
Fixed issue with Location stripping spaces from text cause weather to not get accessed. Thanks @storkontheroof!
|
266 |
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
84 |
+
= 1.5.7 =
|
85 |
+
Updated the language .pot file. A few new text items have been added and some modified. Fixed location searches that contain commas
|
86 |
+
|
87 |
= 1.5.6 =
|
88 |
Two new filters available to remove to the Google font Open Sans. Added new missing background preset 'atmosphere'
|
89 |
|
124 |
* Checked to be working with WordPress 3.9
|
125 |
|
126 |
= 1.4 =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
* Extended forecast now uses WP current_time to determine what days to show, uses Timezone in 'Settings' -> 'General'
|
128 |
* Added a Widget Title field that uses the standard widget code from the sidebar (optional)
|
129 |
* Support for OpenWeatherMaps City ID, just insert in the Location field.
|
130 |
* Support for rgba() in the Custom Background Color
|
131 |
|
|
|
132 |
= 1.3.4 =
|
133 |
Fixed issue with Location stripping spaces from text cause weather to not get accessed. Thanks @storkontheroof!
|
134 |
|
179 |
|
180 |
== Changelog ==
|
181 |
|
182 |
+
= 1.5.7
|
183 |
+
* Wording changes to help improve user experience, thus new updated .pot file
|
184 |
+
* Bug fix for AWESOME_WEATHER_APPID constant, wasn't always being used.
|
185 |
+
* Changed awesome-weather-widget.js to awesome-weather-widget-admin.js
|
186 |
+
* Moved Widget functions into widget.php file
|
187 |
+
* Fixed locations searches that contain commas
|
188 |
+
* Check for variables exist before trying to display them (minimizes PHP Notices)
|
189 |
+
* Rounding wind speed to nearest integer
|
190 |
+
* Added filters used in the PRO version to keep consistancy
|
191 |
+
|
192 |
= 1.5.6.2 =
|
193 |
* Added SK to locales and a filter to modify list of available locales
|
194 |
|
263 |
* Changed default cached time from 1 hour to 3 hours
|
264 |
* Cleaned up two PHP notices in admin
|
265 |
|
|
|
266 |
= 1.3.4 =
|
267 |
Fixed issue with Location stripping spaces from text cause weather to not get accessed. Thanks @storkontheroof!
|
268 |
|
widget.php
ADDED
@@ -0,0 +1,224 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// AWESOME WEATHER WIDGET, WIDGET CLASS, SO MANY WIDGETS
|
4 |
+
class AwesomeWeatherWidget extends WP_Widget
|
5 |
+
{
|
6 |
+
function AwesomeWeatherWidget() { parent::__construct(false, $name = 'Awesome Weather Widget'); }
|
7 |
+
|
8 |
+
function widget($args, $instance)
|
9 |
+
{
|
10 |
+
extract( $args );
|
11 |
+
|
12 |
+
$location = isset($instance['location']) ? $instance['location'] : false;
|
13 |
+
$owm_city_id = isset($instance['owm_city_id']) ? $instance['owm_city_id'] : false;
|
14 |
+
$override_title = isset($instance['override_title']) ? $instance['override_title'] : false;
|
15 |
+
$widget_title = isset($instance['widget_title']) ? $instance['widget_title'] : false;
|
16 |
+
$units = isset($instance['units']) ? $instance['units'] : false;
|
17 |
+
$size = isset($instance['size']) ? $instance['size'] : false;
|
18 |
+
$forecast_days = isset($instance['forecast_days']) ? $instance['forecast_days'] : false;
|
19 |
+
$hide_stats = (isset($instance['hide_stats']) AND $instance['hide_stats'] == 1) ? 1 : 0;
|
20 |
+
$show_link = (isset($instance['show_link']) AND $instance['show_link'] == 1) ? 1 : 0;
|
21 |
+
$background_by_weather = (isset($instance['background_by_weather']) AND $instance['background_by_weather'] == 1) ? 1 : 0;
|
22 |
+
$background = isset($instance['background']) ? $instance['background'] : false;
|
23 |
+
$custom_bg_color = isset($instance['custom_bg_color']) ? $instance['custom_bg_color'] : false;
|
24 |
+
$text_color = isset($instance['text_color']) ? $instance['text_color'] : "#ffffff";
|
25 |
+
|
26 |
+
echo $before_widget;
|
27 |
+
if($widget_title != "") echo $before_title . $widget_title . $after_title;
|
28 |
+
echo awesome_weather_logic( array(
|
29 |
+
'location' => $location,
|
30 |
+
'owm_city_id' => $owm_city_id,
|
31 |
+
'override_title' => $override_title,
|
32 |
+
'size' => $size,
|
33 |
+
'units' => $units,
|
34 |
+
'forecast_days' => $forecast_days,
|
35 |
+
'hide_stats' => $hide_stats,
|
36 |
+
'show_link' => $show_link,
|
37 |
+
'background' => $background,
|
38 |
+
'custom_bg_color' => $custom_bg_color,
|
39 |
+
'background_by_weather' => $background_by_weather,
|
40 |
+
'text_color' => $text_color
|
41 |
+
));
|
42 |
+
echo $after_widget;
|
43 |
+
}
|
44 |
+
|
45 |
+
function update($new_instance, $old_instance)
|
46 |
+
{
|
47 |
+
$instance = $old_instance;
|
48 |
+
$instance['location'] = strip_tags($new_instance['location']);
|
49 |
+
$instance['owm_city_id'] = strip_tags($new_instance['owm_city_id']);
|
50 |
+
$instance['override_title'] = strip_tags($new_instance['override_title']);
|
51 |
+
$instance['widget_title'] = strip_tags($new_instance['widget_title']);
|
52 |
+
$instance['units'] = strip_tags($new_instance['units']);
|
53 |
+
$instance['size'] = strip_tags($new_instance['size']);
|
54 |
+
$instance['forecast_days'] = strip_tags($new_instance['forecast_days']);
|
55 |
+
$instance['background'] = strip_tags($new_instance['background']);
|
56 |
+
$instance['custom_bg_color'] = strip_tags($new_instance['custom_bg_color']);
|
57 |
+
$instance['text_color'] = strip_tags($new_instance['text_color']);
|
58 |
+
$instance['background_by_weather'] = (isset($new_instance['background_by_weather']) AND $new_instance['background_by_weather'] == 1) ? 1 : 0;
|
59 |
+
$instance['hide_stats'] = (isset($new_instance['hide_stats']) AND $new_instance['hide_stats'] == 1) ? 1 : 0;
|
60 |
+
$instance['show_link'] = (isset($new_instance['show_link']) AND $new_instance['show_link'] == 1) ? 1 : 0;
|
61 |
+
return $instance;
|
62 |
+
}
|
63 |
+
|
64 |
+
function form($instance)
|
65 |
+
{
|
66 |
+
global $awesome_weather_sizes;
|
67 |
+
|
68 |
+
$location = isset($instance['location']) ? esc_attr($instance['location']) : "";
|
69 |
+
$owm_city_id = isset($instance['owm_city_id']) ? esc_attr($instance['owm_city_id']) : "";
|
70 |
+
$override_title = isset($instance['override_title']) ? esc_attr($instance['override_title']) : "";
|
71 |
+
$widget_title = isset($instance['widget_title']) ? esc_attr($instance['widget_title']) : "";
|
72 |
+
$selected_size = isset($instance['size']) ? esc_attr($instance['size']) : "wide";
|
73 |
+
$units = (isset($instance['units']) AND strtoupper($instance['units']) == "C") ? "C" : "F";
|
74 |
+
$forecast_days = isset($instance['forecast_days']) ? esc_attr($instance['forecast_days']) : 5;
|
75 |
+
$hide_stats = (isset($instance['hide_stats']) AND $instance['hide_stats'] == 1) ? 1 : 0;
|
76 |
+
$background_by_weather = (isset($instance['background_by_weather']) AND $instance['background_by_weather'] == 1) ? 1 : 0;
|
77 |
+
$show_link = (isset($instance['show_link']) AND $instance['show_link'] == 1) ? 1 : 0;
|
78 |
+
$background = isset($instance['background']) ? esc_attr($instance['background']) : "";
|
79 |
+
$custom_bg_color = isset($instance['custom_bg_color']) ? esc_attr($instance['custom_bg_color']) : "";
|
80 |
+
$text_color = isset($instance['text_color']) ? esc_attr($instance['text_color']) : "#ffffff";
|
81 |
+
|
82 |
+
$appid = apply_filters( 'awesome_weather_appid', awe_get_appid() );
|
83 |
+
|
84 |
+
$wp_theme = wp_get_theme();
|
85 |
+
$wp_theme = $wp_theme->get('TextDomain');
|
86 |
+
?>
|
87 |
+
|
88 |
+
<style>
|
89 |
+
.awe-suggest { font-size: 0.9em; border-bottom: solid 1px #ccc; padding: 5px 1px; font-weight: bold; }
|
90 |
+
.awe-size-options { padding: 1px 10px; background: #efefef; }
|
91 |
+
</style>
|
92 |
+
|
93 |
+
|
94 |
+
<?php if(!$appid) { ?>
|
95 |
+
<div style="background: #dc3232; color: #fff; padding: 10px; margin: 10px;">
|
96 |
+
<?php
|
97 |
+
echo __("As of October 2015, OpenWeatherMap requires an APP ID key to access their weather data.", 'awesome-weather');
|
98 |
+
echo " <a href='http://openweathermap.org/appid' target='_blank' style='color: #fff;'>";
|
99 |
+
echo __('Get your APPID', 'awesome-weather');
|
100 |
+
echo "</a> ";
|
101 |
+
echo __("and add it to the new settings page.");
|
102 |
+
?>
|
103 |
+
</div>
|
104 |
+
<?php } ?>
|
105 |
+
|
106 |
+
<p>
|
107 |
+
<label for="<?php echo $this->get_field_id('location'); ?>">
|
108 |
+
<?php _e('Search for Your Location:', 'awesome-weather'); ?><br />
|
109 |
+
<small><?php _e('(i.e: London or New York City)', 'awesome-weather'); ?></small>
|
110 |
+
</label>
|
111 |
+
<input data-cityidfield="<?php echo $this->get_field_id('owm_city_id'); ?>" data-unitsfield="<?php echo $this->get_field_id('units'); ?>" class="widefat awe-location-search-field-openweathermaps" style="margin-top: 4px;" id="<?php echo $this->get_field_id('location'); ?>" name="<?php echo $this->get_field_name('location'); ?>" type="text" value="<?php echo $location; ?>" />
|
112 |
+
</p>
|
113 |
+
|
114 |
+
<p>
|
115 |
+
<label for="<?php echo $this->get_field_id('owm_city_id'); ?>">
|
116 |
+
<?php _e('OpenWeatherMap City ID:', 'awesome-weather-pro'); ?><br>
|
117 |
+
<small><?php _e('(use the field above to find the ID for your city)', 'awesome-weather'); ?></small>
|
118 |
+
</label>
|
119 |
+
<input class="widefat" style="margin-top: 4px; line-height: 1.5em;" id="<?php echo $this->get_field_id('owm_city_id'); ?>" name="<?php echo $this->get_field_name('owm_city_id'); ?>" type="text" value="<?php echo $owm_city_id; ?>" />
|
120 |
+
</p>
|
121 |
+
|
122 |
+
<span id="awe-owm-spinner-<?php echo $this->get_field_id('location'); ?>" class="hidden"><img src="/wp-admin/images/spinner.gif"></span>
|
123 |
+
<div id="owmid-selector-<?php echo $this->get_field_id('location'); ?>"></div>
|
124 |
+
|
125 |
+
<?php if( !$owm_city_id ) { ?>
|
126 |
+
<script>jQuery('#<?php echo $this->get_field_id('location'); ?>').trigger('keyup');</script>
|
127 |
+
<?php } ?>
|
128 |
+
|
129 |
+
<p>
|
130 |
+
<label for="<?php echo $this->get_field_id('override_title'); ?>"><?php _e('Override Title:', 'awesome-weather'); ?></label>
|
131 |
+
<input class="widefat" id="<?php echo $this->get_field_id('override_title'); ?>" name="<?php echo $this->get_field_name('override_title'); ?>" type="text" value="<?php echo $override_title; ?>" />
|
132 |
+
</p>
|
133 |
+
|
134 |
+
<p>
|
135 |
+
<label for="<?php echo $this->get_field_id('units'); ?>"><?php _e('Units:', 'awesome-weather'); ?></label>
|
136 |
+
<input id="<?php echo $this->get_field_id('units'); ?>" name="<?php echo $this->get_field_name('units'); ?>" type="radio" value="F" <?php if($units == "F") echo ' checked="checked"'; ?> /> F
|
137 |
+
<input id="<?php echo $this->get_field_id('units'); ?>" name="<?php echo $this->get_field_name('units'); ?>" type="radio" value="C" <?php if($units == "C") echo ' checked="checked"'; ?> /> C
|
138 |
+
</p>
|
139 |
+
|
140 |
+
<div class="awe-size-options">
|
141 |
+
|
142 |
+
<?php if( $wp_theme == "twentytwelve") { ?><div class="awe-suggest"> Suggested settings: Wide, 5 Days</div><?php } ?>
|
143 |
+
<?php if( $wp_theme == "twentythirteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 4 Days</div><?php } ?>
|
144 |
+
<?php if( $wp_theme == "twentyfourteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 3 Days</div><?php } ?>
|
145 |
+
<?php if( $wp_theme == "twentyfifteen") { ?><div class="awe-suggest"> Suggested settings: Tall, 4 Days</div><?php } ?>
|
146 |
+
<?php if( $wp_theme == "twentysixteen") { ?><div class="awe-suggest"> Suggested settings: Wide, 5 Days</div><?php } ?>
|
147 |
+
|
148 |
+
<p>
|
149 |
+
<label for="<?php echo $this->get_field_id('size'); ?>"><?php _e('Size:', 'awesome-weather'); ?></label>
|
150 |
+
<select class="widefat" id="<?php echo $this->get_field_id('size'); ?>" name="<?php echo $this->get_field_name('size'); ?>">
|
151 |
+
<?php foreach($awesome_weather_sizes as $size) { ?>
|
152 |
+
<option value="<?php echo $size; ?>"<?php if($selected_size == $size) echo " selected=\"selected\""; ?>><?php echo $size; ?></option>
|
153 |
+
<?php } ?>
|
154 |
+
</select>
|
155 |
+
</p>
|
156 |
+
|
157 |
+
<p>
|
158 |
+
<label for="<?php echo $this->get_field_id('forecast_days'); ?>"><?php _e('Forecast:', 'awesome-weather'); ?></label>
|
159 |
+
<select class="widefat" id="<?php echo $this->get_field_id('forecast_days'); ?>" name="<?php echo $this->get_field_name('forecast_days'); ?>">
|
160 |
+
<option value="5"<?php if($forecast_days == 5) echo " selected=\"selected\""; ?>>5 Days</option>
|
161 |
+
<option value="4"<?php if($forecast_days == 4) echo " selected=\"selected\""; ?>>4 Days</option>
|
162 |
+
<option value="3"<?php if($forecast_days == 3) echo " selected=\"selected\""; ?>>3 Days</option>
|
163 |
+
<option value="2"<?php if($forecast_days == 2) echo " selected=\"selected\""; ?>>2 Days</option>
|
164 |
+
<option value="1"<?php if($forecast_days == 1) echo " selected=\"selected\""; ?>>1 Days</option>
|
165 |
+
<option value="hide"<?php if($forecast_days == 'hide') echo " selected=\"selected\""; ?>>Don't Show</option>
|
166 |
+
</select>
|
167 |
+
</p>
|
168 |
+
|
169 |
+
</div>
|
170 |
+
|
171 |
+
<p>
|
172 |
+
<label for="<?php echo $this->get_field_id('background'); ?>"><?php _e('Background Image:', 'awesome-weather'); ?></label>
|
173 |
+
<input class="widefat" id="<?php echo $this->get_field_id('background'); ?>" name="<?php echo $this->get_field_name('background'); ?>" type="text" value="<?php echo $background; ?>" />
|
174 |
+
</p>
|
175 |
+
|
176 |
+
<p>
|
177 |
+
<input id="<?php echo $this->get_field_id('background_by_weather'); ?>" name="<?php echo $this->get_field_name('background_by_weather'); ?>" type="checkbox" value="1" <?php if($background_by_weather) echo ' checked="checked"'; ?> />
|
178 |
+
<label for="<?php echo $this->get_field_id('background_by_weather'); ?>"><?php _e('Use Different Background Images Based on Weather', 'awesome-weather'); ?></label> <a href="https://halgatewood.com/docs/plugins/awesome-weather-widget/creating-different-backgrounds-for-different-weather" target="_blank">(?)</a>
|
179 |
+
</p>
|
180 |
+
|
181 |
+
<p>
|
182 |
+
<label for="<?php echo $this->get_field_id('custom_bg_color'); ?>"><?php _e('Custom Background Color:', 'awesome-weather'); ?></label><br />
|
183 |
+
<small><?php _e('overrides color changing', 'awesome-weather'); ?>: #7fb761 or rgba(0,0,0,0.5)</small>
|
184 |
+
<input class="widefat" id="<?php echo $this->get_field_id('custom_bg_color'); ?>" name="<?php echo $this->get_field_name('custom_bg_color'); ?>" type="text" value="<?php echo $custom_bg_color; ?>" />
|
185 |
+
</p>
|
186 |
+
|
187 |
+
<p>
|
188 |
+
<label for="<?php echo $this->get_field_id( 'text_color' ); ?>" style="display:block;"><?php _e( 'Text Color', 'awesome-weather' ); ?></label>
|
189 |
+
<input class="widefat color-picker" id="<?php echo $this->get_field_id( 'text_color' ); ?>" name="<?php echo $this->get_field_name( 'text_color' ); ?>" type="text" value="<?php echo esc_attr( $text_color ); ?>" />
|
190 |
+
</p>
|
191 |
+
|
192 |
+
<script type="text/javascript">
|
193 |
+
jQuery(document).ready(function($)
|
194 |
+
{
|
195 |
+
jQuery('#<?php echo $this->get_field_id( 'text_color' ); ?>').on('focus', function(){
|
196 |
+
var parent = jQuery(this).parent();
|
197 |
+
jQuery(this).wpColorPicker()
|
198 |
+
parent.find('.wp-color-result').click();
|
199 |
+
});
|
200 |
+
|
201 |
+
jQuery('#<?php echo $this->get_field_id( 'text_color' ); ?>').wpColorPicker()
|
202 |
+
});
|
203 |
+
</script>
|
204 |
+
|
205 |
+
<p>
|
206 |
+
<input id="<?php echo $this->get_field_id('hide_stats'); ?>" name="<?php echo $this->get_field_name('hide_stats'); ?>" type="checkbox" value="1" <?php if($hide_stats) echo ' checked="checked"'; ?> />
|
207 |
+
<label for="<?php echo $this->get_field_id('hide_stats'); ?>"><?php _e('Hide Current Condition Stats', 'awesome-weather'); ?></label>
|
208 |
+
|
209 |
+
</p>
|
210 |
+
|
211 |
+
<p>
|
212 |
+
<input id="<?php echo $this->get_field_id('show_link'); ?>" name="<?php echo $this->get_field_name('show_link'); ?>" type="checkbox" value="1" <?php if($show_link) echo ' checked="checked"'; ?> />
|
213 |
+
<label for="<?php echo $this->get_field_id('show_link'); ?>"><?php _e('Link to OpenWeatherMap', 'awesome-weather'); ?></label>
|
214 |
+
</p>
|
215 |
+
|
216 |
+
<p>
|
217 |
+
<label for="<?php echo $this->get_field_id('widget_title'); ?>"><?php _e('Widget Title: (optional)', 'awesome-weather'); ?></label>
|
218 |
+
<input class="widefat" id="<?php echo $this->get_field_id('widget_title'); ?>" name="<?php echo $this->get_field_name('widget_title'); ?>" type="text" value="<?php echo $widget_title; ?>" />
|
219 |
+
</p>
|
220 |
+
<?php
|
221 |
+
}
|
222 |
+
}
|
223 |
+
|
224 |
+
add_action( 'widgets_init', create_function('', 'return register_widget("AwesomeWeatherWidget");') );
|