Initial Commit
This commit is contained in:
21
data/translatable-strings.php
Normal file
21
data/translatable-strings.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* List of translatable strings.
|
||||
*
|
||||
* @package WP_Ultimo\Data
|
||||
* @since 2.0.11
|
||||
*/
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
return array(
|
||||
'day' => __('day', 'wp-ultimo'),
|
||||
'days' => __('days', 'wp-ultimo'),
|
||||
'week' => __('week', 'wp-ultimo'),
|
||||
'weeks' => __('weeks', 'wp-ultimo'),
|
||||
'month' => __('month', 'wp-ultimo'),
|
||||
'months' => __('months', 'wp-ultimo'),
|
||||
'year' => __('year', 'wp-ultimo'),
|
||||
'years' => __('years', 'wp-ultimo'),
|
||||
);
|
Reference in New Issue
Block a user