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:
<?php
namespace WPGMZA;
class Strings
{
public function getLocalizedStrings()
{
return apply_filters('wpgmza_localized_strings', array(
'unsecure_geolocation' => __('Many browsers are no longer allowing geolocation from unsecured origins. You will need to secure your site with an SSL certificate (HTTPS) or this feature may not work for your visitors', 'wp-google-maps'),
'use_my_location' => __('Use my location', 'wp-google-maps'),
'google_api_not_loaded' => __('The map cannot be initialized because the Maps API has not been loaded. Please check your settings.', 'wp-google-maps'),
'no_google_maps_api_key' => __('You have not entered a Google Maps API Key. Please see our documentation on obtaining an API key.', 'wp-google-maps'),
'documentation' => __('Documentation', 'wp-google-maps'),
'api_dashboard' => __('API Dashboard', 'wp-google-maps'),
'verify_project' => __('Verify Project', 'wp-google-maps'),
'failed_to_get_address' => __('Failed to get address', 'wp-google-maps'),
'failed_to_create_marker' => __('Failed to create marker %d - this marker cannot be placed on the map.', 'wp-google-maps'),
'my_location' => __('My Location', 'wp-google-maps'),
'kilometers_away' => __('km away', 'wp-google-maps'),
'miles_away' => __('miles away', 'wp-google-maps'),
'import_completed' => __( 'Import completed.', 'wp-google-maps' ),
'importing_please_wait' => __('Importing, this may take a moment...', 'wp-google-maps'),
'no_address_specified' => __('No address specified', 'wp-google-maps'),
'add_marker' => __('Add Marker', 'wp-google-maps'),
'save_marker' => __('Save Marker', 'wp-google-maps'),
'please_wait' => __('Please Wait...', 'wp-google-maps'),
'zero_results' => __('Zero results found', 'wp-google-maps'),
'geocode_fail' => __('Geocode failed due to technical reasons', 'wp-google-maps')
));
}
public function buildDynamicStringDummyFile()
{
}
}