Version Description
- Feature: Setting to disable the output of inline CSS
- Improvement: Better import of ingredient notes
- Improvement: Prevent themes from messing up the recipe template
- Fix: Duplicate slug problem
Download this release
Release Info
Developer | BrechtVds |
Plugin | WP Recipe Maker |
Version | 1.17.0 |
Comparing to | |
See all releases |
Code changes from version 1.16.0 to 1.17.0
- assets/js/public/print.js +2 -2
- includes/admin/class-wprm-recipe-parser.php +15 -16
- includes/admin/class-wprm-recipe-saver.php +1 -0
- includes/class-wp-recipe-maker.php +1 -1
- includes/public/class-wprm-settings.php +3 -0
- includes/public/class-wprm-template-manager.php +4 -1
- languages/wp-recipe-maker-ar.mo +0 -0
- languages/wp-recipe-maker-ar.po +1341 -0
- readme.txt +9 -0
- templates/admin/menu/faq/whats_new.php +15 -0
- templates/admin/settings/appearance.php +6 -0
- templates/admin/settings/features.php +15 -0
- templates/recipe/clean-print-with-image/clean-print-with-image.min.css +1 -1
- templates/recipe/clean-print-with-image/clean-print-with-image.scss +4 -0
- templates/recipe/clean-print/clean-print.min.css +1 -1
- templates/recipe/clean-print/clean-print.scss +4 -0
- templates/recipe/simple/simple.min.css +1 -1
- templates/recipe/simple/simple.scss +4 -0
- templates/recipe/tastefully-simple/tastefully-simple.min.css +1 -1
- templates/recipe/tastefully-simple/tastefully-simple.scss +4 -0
- wp-recipe-maker.php +1 -1
assets/js/public/print.js
CHANGED
@@ -16,8 +16,8 @@ jQuery(document).ready(function($) {
|
|
16 |
e.preventDefault();
|
17 |
|
18 |
var recipe = jQuery(this).parents('.wprm-recipe-container'),
|
19 |
-
|
20 |
-
|
21 |
wprm.print_recipe(recipe_id, servings);
|
22 |
});
|
23 |
jQuery('.wprm-print-recipe-shortcode').on('click', function(e) {
|
16 |
e.preventDefault();
|
17 |
|
18 |
var recipe = jQuery(this).parents('.wprm-recipe-container'),
|
19 |
+
servings = parseInt(recipe.find('.wprm-recipe-servings').data('servings')),
|
20 |
+
recipe_id = recipe.data('recipe-id');
|
21 |
wprm.print_recipe(recipe_id, servings);
|
22 |
});
|
23 |
jQuery('.wprm-print-recipe-shortcode').on('click', function(e) {
|
includes/admin/class-wprm-recipe-parser.php
CHANGED
@@ -113,27 +113,26 @@ class WPRM_Recipe_Parser {
|
|
113 |
$raw = trim( preg_replace( $pattern, '', $raw, 1 ) );
|
114 |
}
|
115 |
|
116 |
-
// Notes.
|
117 |
-
$
|
118 |
|
119 |
-
// Check for
|
120 |
-
|
121 |
-
|
122 |
-
foreach ( $matches[1] as $match ) {
|
123 |
-
$notes[] = trim( $match );
|
124 |
-
}
|
125 |
-
|
126 |
-
$raw = preg_replace( '/\((.*?)\)/i', '', $raw );
|
127 |
}
|
128 |
|
129 |
-
// Check for
|
130 |
-
preg_match( '
|
131 |
-
if (
|
132 |
-
$
|
133 |
-
$raw = trim( $match[1] );
|
134 |
}
|
135 |
|
136 |
-
|
|
|
|
|
|
|
|
|
|
|
137 |
|
138 |
// Name.
|
139 |
$name = trim( $raw );
|
113 |
$raw = trim( preg_replace( $pattern, '', $raw, 1 ) );
|
114 |
}
|
115 |
|
116 |
+
// Notes 2.0.
|
117 |
+
$notes_start = array();
|
118 |
|
119 |
+
// Check for comma.
|
120 |
+
if ( strpos( $raw, ',' ) ) {
|
121 |
+
$notes_start[] = strpos( $raw, ',' );
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
|
124 |
+
// Check for ().
|
125 |
+
preg_match( '/\((.*?)\)/i', $raw, $match );
|
126 |
+
if ( ! empty( $match ) ) {
|
127 |
+
$notes_start[] = strpos( $raw, '(' );
|
|
|
128 |
}
|
129 |
|
130 |
+
// Take out notes.
|
131 |
+
if ( ! empty( $notes_start ) ) {
|
132 |
+
$start = min( array_map( 'intval', $notes_start ) );
|
133 |
+
$notes = trim( substr( $raw, $start ) );
|
134 |
+
$raw = trim( substr( $raw, 0, $start ) );
|
135 |
+
}
|
136 |
|
137 |
// Name.
|
138 |
$name = trim( $raw );
|
includes/admin/class-wprm-recipe-saver.php
CHANGED
@@ -89,6 +89,7 @@ class WPRM_Recipe_Saver {
|
|
89 |
$post = array(
|
90 |
'ID' => $id,
|
91 |
'post_title' => $recipe['name'],
|
|
|
92 |
'post_content' => $recipe['summary'],
|
93 |
);
|
94 |
wp_update_post( $post );
|
89 |
$post = array(
|
90 |
'ID' => $id,
|
91 |
'post_title' => $recipe['name'],
|
92 |
+
'post_name' => 'wprm-' . sanitize_title( $recipe['name'] ),
|
93 |
'post_content' => $recipe['summary'],
|
94 |
);
|
95 |
wp_update_post( $post );
|
includes/class-wp-recipe-maker.php
CHANGED
@@ -31,7 +31,7 @@ class WP_Recipe_Maker {
|
|
31 |
* @since 1.0.0
|
32 |
*/
|
33 |
private function define_constants() {
|
34 |
-
define( 'WPRM_VERSION', '1.
|
35 |
define( 'WPRM_PREMIUM_VERSION_REQUIRED', '1.3.0' );
|
36 |
define( 'WPRM_POST_TYPE', 'wprm_recipe' );
|
37 |
define( 'WPRM_DIR', plugin_dir_path( dirname( __FILE__ ) ) );
|
31 |
* @since 1.0.0
|
32 |
*/
|
33 |
private function define_constants() {
|
34 |
+
define( 'WPRM_VERSION', '1.17.0' );
|
35 |
define( 'WPRM_PREMIUM_VERSION_REQUIRED', '1.3.0' );
|
36 |
define( 'WPRM_POST_TYPE', 'wprm_recipe' );
|
37 |
define( 'WPRM_DIR', plugin_dir_path( dirname( __FILE__ ) ) );
|
includes/public/class-wprm-settings.php
CHANGED
@@ -63,6 +63,7 @@ class WPRM_Settings {
|
|
63 |
'features_manage_access' => 'manage_options',
|
64 |
'features_import_access' => 'manage_options',
|
65 |
'features_comment_ratings' => true,
|
|
|
66 |
// Features Premium.
|
67 |
'features_adjustable_servings' => true,
|
68 |
);
|
@@ -314,6 +315,7 @@ class WPRM_Settings {
|
|
314 |
$features_manage_access = isset( $_POST['features_manage_access'] ) ? sanitize_text_field( wp_unslash( $_POST['features_manage_access'] ) ) : ''; // Input var okay.
|
315 |
$features_import_access = isset( $_POST['features_import_access'] ) ? sanitize_text_field( wp_unslash( $_POST['features_import_access'] ) ) : ''; // Input var okay.
|
316 |
$features_comment_ratings = isset( $_POST['features_comment_ratings'] ) && sanitize_key( $_POST['features_comment_ratings'] ) ? true : false; // Input var okay.
|
|
|
317 |
$features_adjustable_servings = isset( $_POST['features_adjustable_servings'] ) && sanitize_key( $_POST['features_adjustable_servings'] ) ? true : false; // Input var okay.
|
318 |
|
319 |
$settings = array();
|
@@ -321,6 +323,7 @@ class WPRM_Settings {
|
|
321 |
if ( $features_manage_access ) { $settings['features_manage_access'] = $features_manage_access; }
|
322 |
if ( $features_import_access ) { $settings['features_import_access'] = $features_import_access; }
|
323 |
$settings['features_comment_ratings'] = $features_comment_ratings;
|
|
|
324 |
$settings['features_adjustable_servings'] = $features_adjustable_servings;
|
325 |
|
326 |
self::update_settings( $settings );
|
63 |
'features_manage_access' => 'manage_options',
|
64 |
'features_import_access' => 'manage_options',
|
65 |
'features_comment_ratings' => true,
|
66 |
+
'features_custom_style' => true,
|
67 |
// Features Premium.
|
68 |
'features_adjustable_servings' => true,
|
69 |
);
|
315 |
$features_manage_access = isset( $_POST['features_manage_access'] ) ? sanitize_text_field( wp_unslash( $_POST['features_manage_access'] ) ) : ''; // Input var okay.
|
316 |
$features_import_access = isset( $_POST['features_import_access'] ) ? sanitize_text_field( wp_unslash( $_POST['features_import_access'] ) ) : ''; // Input var okay.
|
317 |
$features_comment_ratings = isset( $_POST['features_comment_ratings'] ) && sanitize_key( $_POST['features_comment_ratings'] ) ? true : false; // Input var okay.
|
318 |
+
$features_custom_style = isset( $_POST['features_custom_style'] ) && sanitize_key( $_POST['features_custom_style'] ) ? true : false; // Input var okay.
|
319 |
$features_adjustable_servings = isset( $_POST['features_adjustable_servings'] ) && sanitize_key( $_POST['features_adjustable_servings'] ) ? true : false; // Input var okay.
|
320 |
|
321 |
$settings = array();
|
323 |
if ( $features_manage_access ) { $settings['features_manage_access'] = $features_manage_access; }
|
324 |
if ( $features_import_access ) { $settings['features_import_access'] = $features_import_access; }
|
325 |
$settings['features_comment_ratings'] = $features_comment_ratings;
|
326 |
+
$settings['features_custom_style'] = $features_custom_style;
|
327 |
$settings['features_adjustable_servings'] = $features_adjustable_servings;
|
328 |
|
329 |
self::update_settings( $settings );
|
includes/public/class-wprm-template-manager.php
CHANGED
@@ -34,7 +34,10 @@ class WPRM_Template_Manager {
|
|
34 |
*/
|
35 |
public static function init() {
|
36 |
add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue' ) );
|
37 |
-
|
|
|
|
|
|
|
38 |
}
|
39 |
|
40 |
/**
|
34 |
*/
|
35 |
public static function init() {
|
36 |
add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue' ) );
|
37 |
+
|
38 |
+
if ( WPRM_Settings::get( 'features_custom_style' ) ) {
|
39 |
+
add_action( 'wp_head', array( __CLASS__, 'custom_css' ) );
|
40 |
+
}
|
41 |
}
|
42 |
|
43 |
/**
|
languages/wp-recipe-maker-ar.mo
ADDED
Binary file
|
languages/wp-recipe-maker-ar.po
ADDED
@@ -0,0 +1,1341 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: WP Recipe Maker 1.10.1\n"
|
4 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-recipe-maker\n"
|
5 |
+
"POT-Creation-Date: 2016-12-28 19:06:23+00:00\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"PO-Revision-Date: 2017-04-02 15:44+0400\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 |
+
"Last-Translator: \n"
|
13 |
+
"Language-Team: Alaa Qashllan <http://www.wasfatzakia.com>\n"
|
14 |
+
"Language: ar\n"
|
15 |
+
"X-Generator: Poedit 1.8.12\n"
|
16 |
+
|
17 |
+
#: includes/admin/class-wprm-import-manager.php:50
|
18 |
+
#: includes/admin/class-wprm-import-manager.php:51
|
19 |
+
#: templates/admin/menu/import/import-overview.php:15
|
20 |
+
msgid "Import Recipes"
|
21 |
+
msgstr "استيراد وصفة"
|
22 |
+
|
23 |
+
#: includes/admin/class-wprm-import-manager.php:52
|
24 |
+
msgid "Search Recipes"
|
25 |
+
msgstr "بحث في الوصفات"
|
26 |
+
|
27 |
+
#: includes/admin/class-wprm-recipe-parser.php:148
|
28 |
+
msgid "kilograms"
|
29 |
+
msgstr "كيلوجرامات"
|
30 |
+
|
31 |
+
#: includes/admin/class-wprm-recipe-parser.php:149
|
32 |
+
msgid "kilogram"
|
33 |
+
msgstr "كيلوجرام"
|
34 |
+
|
35 |
+
#: includes/admin/class-wprm-recipe-parser.php:150
|
36 |
+
msgid "kg"
|
37 |
+
msgstr "كج"
|
38 |
+
|
39 |
+
#: includes/admin/class-wprm-recipe-parser.php:151
|
40 |
+
msgid "grams"
|
41 |
+
msgstr "جرامات"
|
42 |
+
|
43 |
+
#: includes/admin/class-wprm-recipe-parser.php:152
|
44 |
+
msgid "gram"
|
45 |
+
msgstr "جرام"
|
46 |
+
|
47 |
+
#: includes/admin/class-wprm-recipe-parser.php:153
|
48 |
+
msgid "gr"
|
49 |
+
msgstr "مج"
|
50 |
+
|
51 |
+
#: includes/admin/class-wprm-recipe-parser.php:154
|
52 |
+
#: includes/public/class-wprm-metadata.php:164
|
53 |
+
msgid "g"
|
54 |
+
msgstr "ج"
|
55 |
+
|
56 |
+
#: includes/admin/class-wprm-recipe-parser.php:155
|
57 |
+
msgid "milligrams"
|
58 |
+
msgstr "ملليجرامات"
|
59 |
+
|
60 |
+
#: includes/admin/class-wprm-recipe-parser.php:156
|
61 |
+
msgid "milligram"
|
62 |
+
msgstr "ملليجرام"
|
63 |
+
|
64 |
+
#: includes/admin/class-wprm-recipe-parser.php:157
|
65 |
+
#: includes/public/class-wprm-metadata.php:169
|
66 |
+
msgid "mg"
|
67 |
+
msgstr "ملجم"
|
68 |
+
|
69 |
+
#: includes/admin/class-wprm-recipe-parser.php:158
|
70 |
+
msgid "pounds"
|
71 |
+
msgstr "باوندات"
|
72 |
+
|
73 |
+
#: includes/admin/class-wprm-recipe-parser.php:159
|
74 |
+
msgid "pound"
|
75 |
+
msgstr "باوند"
|
76 |
+
|
77 |
+
#: includes/admin/class-wprm-recipe-parser.php:160
|
78 |
+
msgid "lbs"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/admin/class-wprm-recipe-parser.php:161
|
82 |
+
msgid "lb"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/admin/class-wprm-recipe-parser.php:162
|
86 |
+
msgid "ounces"
|
87 |
+
msgstr "أونصات"
|
88 |
+
|
89 |
+
#: includes/admin/class-wprm-recipe-parser.php:163
|
90 |
+
msgid "ounce"
|
91 |
+
msgstr "أونصة"
|
92 |
+
|
93 |
+
#: includes/admin/class-wprm-recipe-parser.php:164
|
94 |
+
msgid "oz"
|
95 |
+
msgstr "أوز"
|
96 |
+
|
97 |
+
#: includes/admin/class-wprm-recipe-parser.php:166
|
98 |
+
msgid "liters"
|
99 |
+
msgstr "ليترات"
|
100 |
+
|
101 |
+
#: includes/admin/class-wprm-recipe-parser.php:167
|
102 |
+
msgid "liter"
|
103 |
+
msgstr "ليتر"
|
104 |
+
|
105 |
+
#: includes/admin/class-wprm-recipe-parser.php:168
|
106 |
+
msgid "l"
|
107 |
+
msgstr "ل"
|
108 |
+
|
109 |
+
#: includes/admin/class-wprm-recipe-parser.php:169
|
110 |
+
msgid "deciliters"
|
111 |
+
msgstr "ديسيلتر"
|
112 |
+
|
113 |
+
#: includes/admin/class-wprm-recipe-parser.php:170
|
114 |
+
msgid "deciliter"
|
115 |
+
msgstr "ديسيلترات"
|
116 |
+
|
117 |
+
#: includes/admin/class-wprm-recipe-parser.php:171
|
118 |
+
msgid "dl"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/admin/class-wprm-recipe-parser.php:172
|
122 |
+
msgid "centiliters"
|
123 |
+
msgstr "سنتيليترات"
|
124 |
+
|
125 |
+
#: includes/admin/class-wprm-recipe-parser.php:173
|
126 |
+
msgid "centiliter"
|
127 |
+
msgstr "سنتيلتر"
|
128 |
+
|
129 |
+
#: includes/admin/class-wprm-recipe-parser.php:174
|
130 |
+
msgid "cl"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/admin/class-wprm-recipe-parser.php:175
|
134 |
+
msgid "milliliters"
|
135 |
+
msgstr "ملليلترات"
|
136 |
+
|
137 |
+
#: includes/admin/class-wprm-recipe-parser.php:176
|
138 |
+
msgid "milliliter"
|
139 |
+
msgstr "ملليليتر"
|
140 |
+
|
141 |
+
#: includes/admin/class-wprm-recipe-parser.php:177
|
142 |
+
msgid "ml"
|
143 |
+
msgstr "مل"
|
144 |
+
|
145 |
+
#: includes/admin/class-wprm-recipe-parser.php:178
|
146 |
+
msgid "gallons"
|
147 |
+
msgstr "جالونات"
|
148 |
+
|
149 |
+
#: includes/admin/class-wprm-recipe-parser.php:179
|
150 |
+
msgid "gallon"
|
151 |
+
msgstr "جالون"
|
152 |
+
|
153 |
+
#: includes/admin/class-wprm-recipe-parser.php:180
|
154 |
+
msgid "gal"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: includes/admin/class-wprm-recipe-parser.php:181
|
158 |
+
msgid "quarts"
|
159 |
+
msgstr "أرباع"
|
160 |
+
|
161 |
+
#: includes/admin/class-wprm-recipe-parser.php:182
|
162 |
+
msgid "quart"
|
163 |
+
msgstr "ربع"
|
164 |
+
|
165 |
+
#: includes/admin/class-wprm-recipe-parser.php:183
|
166 |
+
msgid "qt"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: includes/admin/class-wprm-recipe-parser.php:184
|
170 |
+
msgid "pints"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: includes/admin/class-wprm-recipe-parser.php:185
|
174 |
+
msgid "pint"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: includes/admin/class-wprm-recipe-parser.php:186
|
178 |
+
msgid "pt"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: includes/admin/class-wprm-recipe-parser.php:187
|
182 |
+
msgid "cups"
|
183 |
+
msgstr "كؤوس"
|
184 |
+
|
185 |
+
#: includes/admin/class-wprm-recipe-parser.php:188
|
186 |
+
msgid "cup"
|
187 |
+
msgstr "كأس"
|
188 |
+
|
189 |
+
#: includes/admin/class-wprm-recipe-parser.php:189
|
190 |
+
msgid "cu"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/admin/class-wprm-recipe-parser.php:190
|
194 |
+
msgid "c"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/admin/class-wprm-recipe-parser.php:191
|
198 |
+
msgid "fluid ounces"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/admin/class-wprm-recipe-parser.php:192
|
202 |
+
msgid "fluid ounce"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/admin/class-wprm-recipe-parser.php:193
|
206 |
+
msgid "fl ounces"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/admin/class-wprm-recipe-parser.php:194
|
210 |
+
msgid "fl ounce"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/admin/class-wprm-recipe-parser.php:195
|
214 |
+
msgid "floz"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/admin/class-wprm-recipe-parser.php:196
|
218 |
+
msgid "tablespoons"
|
219 |
+
msgstr "ملاعق طعام"
|
220 |
+
|
221 |
+
#: includes/admin/class-wprm-recipe-parser.php:197
|
222 |
+
msgid "tablespoon"
|
223 |
+
msgstr "ملعقة طعام"
|
224 |
+
|
225 |
+
#: includes/admin/class-wprm-recipe-parser.php:198
|
226 |
+
msgid "tbsps"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/admin/class-wprm-recipe-parser.php:199
|
230 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:34
|
231 |
+
msgid "tbsp"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/admin/class-wprm-recipe-parser.php:200
|
235 |
+
msgid "tbls"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/admin/class-wprm-recipe-parser.php:201
|
239 |
+
msgid "tbs"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/admin/class-wprm-recipe-parser.php:202
|
243 |
+
msgid "tb"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/admin/class-wprm-recipe-parser.php:203
|
247 |
+
msgid "T"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/admin/class-wprm-recipe-parser.php:204
|
251 |
+
msgid "teaspoons"
|
252 |
+
msgstr "ملاعق شاي"
|
253 |
+
|
254 |
+
#: includes/admin/class-wprm-recipe-parser.php:205
|
255 |
+
msgid "teaspoon"
|
256 |
+
msgstr "ملعقة شاي"
|
257 |
+
|
258 |
+
#: includes/admin/class-wprm-recipe-parser.php:206
|
259 |
+
msgid "tsps"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/admin/class-wprm-recipe-parser.php:207
|
263 |
+
msgid "tsp"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/admin/class-wprm-recipe-parser.php:208
|
267 |
+
msgid "ts"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/admin/class-wprm-recipe-parser.php:209
|
271 |
+
msgid "t"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/admin/class-wprm-recipe-parser.php:211
|
275 |
+
msgid "meters"
|
276 |
+
msgstr "مترات"
|
277 |
+
|
278 |
+
#: includes/admin/class-wprm-recipe-parser.php:212
|
279 |
+
msgid "meter"
|
280 |
+
msgstr "متر"
|
281 |
+
|
282 |
+
#: includes/admin/class-wprm-recipe-parser.php:213
|
283 |
+
msgid "m"
|
284 |
+
msgstr "م"
|
285 |
+
|
286 |
+
#: includes/admin/class-wprm-recipe-parser.php:214
|
287 |
+
msgid "centimeters"
|
288 |
+
msgstr "سنتيمترات"
|
289 |
+
|
290 |
+
#: includes/admin/class-wprm-recipe-parser.php:215
|
291 |
+
msgid "centimeter"
|
292 |
+
msgstr "سنتيمتر"
|
293 |
+
|
294 |
+
#: includes/admin/class-wprm-recipe-parser.php:216
|
295 |
+
msgid "cm"
|
296 |
+
msgstr "سم"
|
297 |
+
|
298 |
+
#: includes/admin/class-wprm-recipe-parser.php:217
|
299 |
+
msgid "millimeters"
|
300 |
+
msgstr "ملليمترات"
|
301 |
+
|
302 |
+
#: includes/admin/class-wprm-recipe-parser.php:218
|
303 |
+
msgid "millimeter"
|
304 |
+
msgstr "ملليمتر"
|
305 |
+
|
306 |
+
#: includes/admin/class-wprm-recipe-parser.php:219
|
307 |
+
msgid "mm"
|
308 |
+
msgstr "ملليمتر"
|
309 |
+
|
310 |
+
#: includes/admin/class-wprm-recipe-parser.php:220
|
311 |
+
msgid "yards"
|
312 |
+
msgstr "ياردات"
|
313 |
+
|
314 |
+
#: includes/admin/class-wprm-recipe-parser.php:221
|
315 |
+
msgid "yard"
|
316 |
+
msgstr "ياردة"
|
317 |
+
|
318 |
+
#: includes/admin/class-wprm-recipe-parser.php:222
|
319 |
+
msgid "yd"
|
320 |
+
msgstr "ياردة"
|
321 |
+
|
322 |
+
#: includes/admin/class-wprm-recipe-parser.php:223
|
323 |
+
msgid "feet"
|
324 |
+
msgstr "أقدام"
|
325 |
+
|
326 |
+
#: includes/admin/class-wprm-recipe-parser.php:224
|
327 |
+
msgid "foot"
|
328 |
+
msgstr "قدم"
|
329 |
+
|
330 |
+
#: includes/admin/class-wprm-recipe-parser.php:225
|
331 |
+
msgid "ft"
|
332 |
+
msgstr "قدم"
|
333 |
+
|
334 |
+
#: includes/admin/class-wprm-recipe-parser.php:226
|
335 |
+
msgid "inches"
|
336 |
+
msgstr "انشات"
|
337 |
+
|
338 |
+
#: includes/admin/class-wprm-recipe-parser.php:227
|
339 |
+
msgid "inch"
|
340 |
+
msgstr "انش"
|
341 |
+
|
342 |
+
#: includes/admin/class-wprm-recipe-parser.php:228
|
343 |
+
msgid "in"
|
344 |
+
msgstr "انش"
|
345 |
+
|
346 |
+
#: includes/admin/class-wprm-recipe-parser.php:230
|
347 |
+
msgid "cloves"
|
348 |
+
msgstr "فصوص"
|
349 |
+
|
350 |
+
#: includes/admin/class-wprm-recipe-parser.php:231
|
351 |
+
msgid "clove"
|
352 |
+
msgstr "فص"
|
353 |
+
|
354 |
+
#: includes/admin/class-wprm-recipe-parser.php:232
|
355 |
+
msgid "leaves"
|
356 |
+
msgstr "أوراق"
|
357 |
+
|
358 |
+
#: includes/admin/class-wprm-recipe-parser.php:233
|
359 |
+
msgid "leave"
|
360 |
+
msgstr "ورقة"
|
361 |
+
|
362 |
+
#: includes/admin/class-wprm-recipe-parser.php:234
|
363 |
+
msgid "slices"
|
364 |
+
msgstr "شرائح"
|
365 |
+
|
366 |
+
#: includes/admin/class-wprm-recipe-parser.php:235
|
367 |
+
msgid "slice"
|
368 |
+
msgstr "شريحة"
|
369 |
+
|
370 |
+
#: includes/admin/class-wprm-recipe-parser.php:236
|
371 |
+
msgid "pieces"
|
372 |
+
msgstr "قطع"
|
373 |
+
|
374 |
+
#: includes/admin/class-wprm-recipe-parser.php:237
|
375 |
+
msgid "piece"
|
376 |
+
msgstr "قطع"
|
377 |
+
|
378 |
+
#: includes/admin/class-wprm-recipe-parser.php:238
|
379 |
+
msgid "pinches"
|
380 |
+
msgstr "رشات"
|
381 |
+
|
382 |
+
#: includes/admin/class-wprm-recipe-parser.php:239
|
383 |
+
msgid "pinche"
|
384 |
+
msgstr "رشة"
|
385 |
+
|
386 |
+
#: includes/admin/import/class-wprm-import-easyrecipe.php:105
|
387 |
+
msgid "Unknown"
|
388 |
+
msgstr "غير معرف"
|
389 |
+
|
390 |
+
#: includes/admin/import/class-wprm-import-wpultimaterecipe.php:354
|
391 |
+
#: includes/public/class-wprm-template-helper.php:171
|
392 |
+
msgid "hour"
|
393 |
+
msgstr "ساعة"
|
394 |
+
|
395 |
+
#: includes/admin/import/class-wprm-import-wpultimaterecipe.php:355
|
396 |
+
#: includes/public/class-wprm-template-helper.php:171
|
397 |
+
msgid "hours"
|
398 |
+
msgstr "ساعات"
|
399 |
+
|
400 |
+
#: includes/admin/manage/class-wprm-manage-ingredients.php:57
|
401 |
+
#: includes/public/class-wprm-template-helper.php:83
|
402 |
+
#: templates/admin/manage.php:17 templates/admin/modal/tabs/import-text.php:40
|
403 |
+
msgid "Ingredients"
|
404 |
+
msgstr "المقادير"
|
405 |
+
|
406 |
+
#: includes/admin/manage/class-wprm-manage.php:250
|
407 |
+
#: templates/admin/manage.php:26
|
408 |
+
msgid "Manage"
|
409 |
+
msgstr "إدارة"
|
410 |
+
|
411 |
+
#: includes/admin/manage/class-wprm-manage.php:290
|
412 |
+
#: templates/admin/settings/features.php:43
|
413 |
+
msgid "These features are only available in"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: includes/admin/manage/class-wprm-manage.php:293
|
417 |
+
msgid "Ingredient Links"
|
418 |
+
msgstr "رابط المكون"
|
419 |
+
|
420 |
+
#: includes/admin/menu/class-wprm-admin-menu-addons.php:47
|
421 |
+
#: templates/admin/menu/addons.php:15
|
422 |
+
msgid "Add-Ons"
|
423 |
+
msgstr "الإضافات"
|
424 |
+
|
425 |
+
#: includes/admin/menu/class-wprm-admin-menu-faq.php:76
|
426 |
+
msgid "FAQ & Support"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/modal/class-wprm-modal.php:60
|
430 |
+
msgid "Are you sure? You will lose any unsaved changes."
|
431 |
+
msgstr "هل انت متأكد ؟ سوف تخسر أي تغييرات لم قم بحفظها"
|
432 |
+
|
433 |
+
#: includes/admin/modal/class-wprm-modal.php:61
|
434 |
+
#: templates/admin/modal/modal.php:61 templates/admin/modal/modal.php:97
|
435 |
+
msgid "Insert"
|
436 |
+
msgstr "إدخال"
|
437 |
+
|
438 |
+
#: includes/admin/modal/class-wprm-modal.php:62
|
439 |
+
msgid "Update"
|
440 |
+
msgstr "تحديث"
|
441 |
+
|
442 |
+
#: includes/admin/modal/class-wprm-modal.php:63
|
443 |
+
msgid "Select or Upload Image"
|
444 |
+
msgstr "اختر او ارفع صورة"
|
445 |
+
|
446 |
+
#: includes/admin/modal/class-wprm-modal.php:64
|
447 |
+
msgid "Use Image"
|
448 |
+
msgstr "استخدم صورة"
|
449 |
+
|
450 |
+
#: includes/admin/modal/class-wprm-modal.php:65
|
451 |
+
msgid "Are you sure you want to remove this recipe?"
|
452 |
+
msgstr "هل انت متاكد من ازالة هذه الوصفة ؟"
|
453 |
+
|
454 |
+
#: includes/admin/modal/class-wprm-modal.php:66
|
455 |
+
msgid "Are you sure you want to start over with importing from text?"
|
456 |
+
msgstr "هل انت متاكد من انك ستبدأ باستيراد النص ؟"
|
457 |
+
|
458 |
+
#: includes/admin/modal/class-wprm-modal.php:67
|
459 |
+
#: includes/admin/modal/class-wprm-modal.php:153
|
460 |
+
#: includes/admin/modal/class-wprm-modal.php:157
|
461 |
+
msgid "Edit Recipe"
|
462 |
+
msgstr "تحرير الوصفة"
|
463 |
+
|
464 |
+
#: includes/admin/modal/class-wprm-modal.php:68
|
465 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:35
|
466 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:35
|
467 |
+
msgid "First recipe on page"
|
468 |
+
msgstr "أول وصفة بالصفحة"
|
469 |
+
|
470 |
+
#: includes/admin/modal/class-wprm-modal.php:69
|
471 |
+
msgid "Type here (select text for advanced styling options)"
|
472 |
+
msgstr "اكتب هنا ( اختر النص لخيارات الستيلات المتقدمة)"
|
473 |
+
|
474 |
+
#: includes/admin/modal/class-wprm-modal.php:121
|
475 |
+
msgid "New Recipe"
|
476 |
+
msgstr "وصفة جديدة"
|
477 |
+
|
478 |
+
#: includes/admin/modal/class-wprm-modal.php:125
|
479 |
+
msgid "Import from Text"
|
480 |
+
msgstr "استيراد من نص"
|
481 |
+
|
482 |
+
#: includes/admin/modal/class-wprm-modal.php:131
|
483 |
+
msgid "Recipe Details"
|
484 |
+
msgstr "تفاصيل الوصفة"
|
485 |
+
|
486 |
+
#: includes/admin/modal/class-wprm-modal.php:138
|
487 |
+
msgid "Ingredients & Instructions"
|
488 |
+
msgstr "المقادير و الخطوات"
|
489 |
+
|
490 |
+
#: includes/admin/modal/class-wprm-modal.php:144
|
491 |
+
#: includes/public/class-wprm-template-helper.php:85
|
492 |
+
msgid "Recipe Notes"
|
493 |
+
msgstr "ملاحظات الوصفة"
|
494 |
+
|
495 |
+
#: includes/admin/modal/class-wprm-modal.php:160
|
496 |
+
msgid "Edit"
|
497 |
+
msgstr "تحرير"
|
498 |
+
|
499 |
+
#: includes/admin/modal/class-wprm-modal.php:167
|
500 |
+
msgid "Recipe Snippets"
|
501 |
+
msgstr "مقتطفات الوصفة"
|
502 |
+
|
503 |
+
#: includes/admin/modal/class-wprm-modal.php:171
|
504 |
+
#: includes/public/class-wprm-shortcode.php:158
|
505 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:40
|
506 |
+
msgid "Jump to Recipe"
|
507 |
+
msgstr "الذهاب للوصفة"
|
508 |
+
|
509 |
+
#: includes/admin/modal/class-wprm-modal.php:178
|
510 |
+
#: includes/public/class-wprm-shortcode.php:190
|
511 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:40
|
512 |
+
msgid "Print Recipe"
|
513 |
+
msgstr "طباعة الوصفة"
|
514 |
+
|
515 |
+
#: includes/admin/modal/class-wprm-shortcode-preview.php:46
|
516 |
+
msgid "remove"
|
517 |
+
msgstr "ازالة"
|
518 |
+
|
519 |
+
#: includes/class-wp-recipe-maker.php:123
|
520 |
+
msgid "Please update to at least the following plugin versions:"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/public/class-wprm-comment-rating.php:114
|
524 |
+
#: templates/public/comment-rating-form.php:14
|
525 |
+
msgid "Recipe Rating"
|
526 |
+
msgstr "تقييم الوصفة"
|
527 |
+
|
528 |
+
#: includes/public/class-wprm-metadata.php:167
|
529 |
+
#: templates/admin/modal/tabs/recipe-details.php:59
|
530 |
+
#: templates/recipe/clean-print/clean-print.php:67
|
531 |
+
#: templates/recipe/clean-print-with-image/clean-print-with-image.php:68
|
532 |
+
#: templates/recipe/simple/simple.php:84
|
533 |
+
#: templates/recipe/tastefully-simple/tastefully-simple.php:88
|
534 |
+
msgid "kcal"
|
535 |
+
msgstr "كيلو كالوري"
|
536 |
+
|
537 |
+
#: includes/public/class-wprm-metadata.php:178
|
538 |
+
msgid "1 serving"
|
539 |
+
msgstr "1 حصة"
|
540 |
+
|
541 |
+
#: includes/public/class-wprm-post-type.php:39
|
542 |
+
msgctxt "post type general name"
|
543 |
+
msgid "Recipes"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/public/class-wprm-post-type.php:40
|
547 |
+
msgctxt "post type singular name"
|
548 |
+
msgid "Recipe"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: includes/public/class-wprm-settings.php:92
|
552 |
+
msgid "WPRM Settings"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: includes/public/class-wprm-settings.php:92
|
556 |
+
msgid "Settings"
|
557 |
+
msgstr "الاعدادات"
|
558 |
+
|
559 |
+
#: includes/public/class-wprm-taxonomies.php:62
|
560 |
+
msgctxt "taxonomy general name"
|
561 |
+
msgid "Courses"
|
562 |
+
msgstr "وجبات"
|
563 |
+
|
564 |
+
#: includes/public/class-wprm-taxonomies.php:63
|
565 |
+
msgctxt "taxonomy singular name"
|
566 |
+
msgid "Course"
|
567 |
+
msgstr "وجبة"
|
568 |
+
|
569 |
+
#: includes/public/class-wprm-taxonomies.php:66
|
570 |
+
msgctxt "taxonomy general name"
|
571 |
+
msgid "Cuisines"
|
572 |
+
msgstr "مطابخ"
|
573 |
+
|
574 |
+
#: includes/public/class-wprm-taxonomies.php:67
|
575 |
+
msgctxt "taxonomy singular name"
|
576 |
+
msgid "Cuisine"
|
577 |
+
msgstr "مطبخ"
|
578 |
+
|
579 |
+
#: includes/public/class-wprm-taxonomies.php:70
|
580 |
+
msgctxt "taxonomy general name"
|
581 |
+
msgid "Ingredients"
|
582 |
+
msgstr "المقادير"
|
583 |
+
|
584 |
+
#: includes/public/class-wprm-taxonomies.php:71
|
585 |
+
msgctxt "taxonomy singular name"
|
586 |
+
msgid "Ingredient"
|
587 |
+
msgstr "المقدار"
|
588 |
+
|
589 |
+
#: includes/public/class-wprm-taxonomies.php:97
|
590 |
+
msgid "Breakfast"
|
591 |
+
msgstr "افطار"
|
592 |
+
|
593 |
+
#: includes/public/class-wprm-taxonomies.php:98
|
594 |
+
msgid "Appetizer"
|
595 |
+
msgstr "مقبلات"
|
596 |
+
|
597 |
+
#: includes/public/class-wprm-taxonomies.php:99
|
598 |
+
msgid "Soup"
|
599 |
+
msgstr "شوربة"
|
600 |
+
|
601 |
+
#: includes/public/class-wprm-taxonomies.php:100
|
602 |
+
msgid "Main Course"
|
603 |
+
msgstr "طبق رئيسي"
|
604 |
+
|
605 |
+
#: includes/public/class-wprm-taxonomies.php:101
|
606 |
+
msgid "Side Dish"
|
607 |
+
msgstr "طبق جانبي"
|
608 |
+
|
609 |
+
#: includes/public/class-wprm-taxonomies.php:102
|
610 |
+
msgid "Salad"
|
611 |
+
msgstr "سلطة"
|
612 |
+
|
613 |
+
#: includes/public/class-wprm-taxonomies.php:103
|
614 |
+
msgid "Dessert"
|
615 |
+
msgstr "تحلية"
|
616 |
+
|
617 |
+
#: includes/public/class-wprm-taxonomies.php:104
|
618 |
+
msgid "Snack"
|
619 |
+
msgstr "تصبيرة"
|
620 |
+
|
621 |
+
#: includes/public/class-wprm-taxonomies.php:105
|
622 |
+
msgid "Drinks"
|
623 |
+
msgstr "مشروبات"
|
624 |
+
|
625 |
+
#: includes/public/class-wprm-taxonomies.php:109
|
626 |
+
msgid "French"
|
627 |
+
msgstr "فرنسي"
|
628 |
+
|
629 |
+
#: includes/public/class-wprm-taxonomies.php:110
|
630 |
+
msgid "Italian"
|
631 |
+
msgstr "ايطالي"
|
632 |
+
|
633 |
+
#: includes/public/class-wprm-taxonomies.php:111
|
634 |
+
msgid "Mediterranean"
|
635 |
+
msgstr "البحر المتوسط"
|
636 |
+
|
637 |
+
#: includes/public/class-wprm-taxonomies.php:112
|
638 |
+
msgid "Indian"
|
639 |
+
msgstr "هندي"
|
640 |
+
|
641 |
+
#: includes/public/class-wprm-taxonomies.php:113
|
642 |
+
msgid "Chinese"
|
643 |
+
msgstr "صيني"
|
644 |
+
|
645 |
+
#: includes/public/class-wprm-taxonomies.php:114
|
646 |
+
msgid "Japanese"
|
647 |
+
msgstr "ياباني"
|
648 |
+
|
649 |
+
#: includes/public/class-wprm-taxonomies.php:115
|
650 |
+
msgid "American"
|
651 |
+
msgstr "أمريكي"
|
652 |
+
|
653 |
+
#: includes/public/class-wprm-taxonomies.php:116
|
654 |
+
msgid "Mexican"
|
655 |
+
msgstr "مكسيكي"
|
656 |
+
|
657 |
+
#: includes/public/class-wprm-template-helper.php:74
|
658 |
+
msgid "Print"
|
659 |
+
msgstr "طباعة"
|
660 |
+
|
661 |
+
#: includes/public/class-wprm-template-helper.php:75
|
662 |
+
msgid "Course"
|
663 |
+
msgstr "الوجبة"
|
664 |
+
|
665 |
+
#: includes/public/class-wprm-template-helper.php:76
|
666 |
+
msgid "Cuisine"
|
667 |
+
msgstr "المطبخ"
|
668 |
+
|
669 |
+
#: includes/public/class-wprm-template-helper.php:77
|
670 |
+
#: templates/admin/modal/tabs/recipe-details.php:63
|
671 |
+
msgid "Prep Time"
|
672 |
+
msgstr "مدة الإعداد"
|
673 |
+
|
674 |
+
#: includes/public/class-wprm-template-helper.php:78
|
675 |
+
#: templates/admin/modal/tabs/recipe-details.php:66
|
676 |
+
msgid "Cook Time"
|
677 |
+
msgstr "مدة الطبخ"
|
678 |
+
|
679 |
+
#: includes/public/class-wprm-template-helper.php:79
|
680 |
+
#: templates/admin/modal/tabs/recipe-details.php:69
|
681 |
+
msgid "Total Time"
|
682 |
+
msgstr "الوقت الكلي"
|
683 |
+
|
684 |
+
#: includes/public/class-wprm-template-helper.php:80
|
685 |
+
#: templates/admin/modal/tabs/recipe-details.php:53
|
686 |
+
msgid "Servings"
|
687 |
+
msgstr "الحصص"
|
688 |
+
|
689 |
+
#: includes/public/class-wprm-template-helper.php:81
|
690 |
+
#: templates/admin/modal/tabs/recipe-details.php:58
|
691 |
+
msgid "Calories"
|
692 |
+
msgstr "الكالوري"
|
693 |
+
|
694 |
+
#: includes/public/class-wprm-template-helper.php:82
|
695 |
+
#: templates/admin/modal/tabs/recipe-details.php:42
|
696 |
+
msgid "Author"
|
697 |
+
msgstr "الشيف"
|
698 |
+
|
699 |
+
#: includes/public/class-wprm-template-helper.php:84
|
700 |
+
#: templates/admin/modal/tabs/import-text.php:52
|
701 |
+
msgid "Instructions"
|
702 |
+
msgstr "الخطوات"
|
703 |
+
|
704 |
+
#: includes/public/class-wprm-template-helper.php:152
|
705 |
+
msgid "d"
|
706 |
+
msgstr "يوم"
|
707 |
+
|
708 |
+
#: includes/public/class-wprm-template-helper.php:154
|
709 |
+
msgid "days"
|
710 |
+
msgstr "أيام"
|
711 |
+
|
712 |
+
#: includes/public/class-wprm-template-helper.php:154
|
713 |
+
msgid "day"
|
714 |
+
msgstr "يوم"
|
715 |
+
|
716 |
+
#: includes/public/class-wprm-template-helper.php:169
|
717 |
+
msgid "hr"
|
718 |
+
msgstr "ساعة"
|
719 |
+
|
720 |
+
#: includes/public/class-wprm-template-helper.php:169
|
721 |
+
msgid "hrs"
|
722 |
+
msgstr "ساعات"
|
723 |
+
|
724 |
+
#: includes/public/class-wprm-template-helper.php:186
|
725 |
+
msgid "mins"
|
726 |
+
msgstr "دقائق"
|
727 |
+
|
728 |
+
#: includes/public/class-wprm-template-helper.php:186
|
729 |
+
msgid "min"
|
730 |
+
msgstr "دقيقة"
|
731 |
+
|
732 |
+
#: includes/public/class-wprm-template-helper.php:188
|
733 |
+
#: templates/admin/modal/tabs/recipe-details.php:64
|
734 |
+
#: templates/admin/modal/tabs/recipe-details.php:67
|
735 |
+
#: templates/admin/modal/tabs/recipe-details.php:70
|
736 |
+
msgid "minutes"
|
737 |
+
msgstr "دقائق"
|
738 |
+
|
739 |
+
#: includes/public/class-wprm-template-helper.php:188
|
740 |
+
msgid "minute"
|
741 |
+
msgstr "دقيقة"
|
742 |
+
|
743 |
+
#: includes/public/class-wprm-template-helper.php:225
|
744 |
+
msgid "from"
|
745 |
+
msgstr "من"
|
746 |
+
|
747 |
+
#: includes/public/class-wprm-template-helper.php:225
|
748 |
+
msgid "vote"
|
749 |
+
msgid_plural "votes"
|
750 |
+
msgstr[0] "تصويت"
|
751 |
+
msgstr[1] ""
|
752 |
+
msgstr[2] ""
|
753 |
+
msgstr[3] ""
|
754 |
+
msgstr[4] ""
|
755 |
+
msgstr[5] ""
|
756 |
+
|
757 |
+
#: templates/admin/manage.php:16
|
758 |
+
msgid "Recipes"
|
759 |
+
msgstr "الوصفات"
|
760 |
+
|
761 |
+
#: templates/admin/menu/import/import-overview.php:16
|
762 |
+
msgid "Considerations Before Importing"
|
763 |
+
msgstr "اعتبارات قبل الاستيراد"
|
764 |
+
|
765 |
+
#: templates/admin/menu/import/import-overview.php:18
|
766 |
+
msgid ""
|
767 |
+
"Importing recipes will convert them to our format and they won't be "
|
768 |
+
"available in the old plugin anymore. We recommend backing up before starting "
|
769 |
+
"the process and trying to import 1 single recipe first to make sure "
|
770 |
+
"everything converts properly."
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: templates/admin/menu/import/import-overview.php:21
|
774 |
+
msgid ""
|
775 |
+
"If your current plugin uses custom post types and has different permalinks "
|
776 |
+
"than regular posts you might want to use a redirection plugin to set up 301 "
|
777 |
+
"redirects. Contact us if you need help!"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: templates/admin/menu/import/import-overview.php:24
|
781 |
+
msgid ""
|
782 |
+
"Importing lots of recipes at once can cause a PHP timeout error. All recipes "
|
783 |
+
"that were handled up until the error will have been imported correctly."
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: templates/admin/menu/import/import-overview.php:27
|
787 |
+
#: templates/admin/menu/import/import-recipes.php:45
|
788 |
+
msgid "Recipes to Import"
|
789 |
+
msgstr "وصفات للاستيراد"
|
790 |
+
|
791 |
+
#: templates/admin/menu/import/import-overview.php:43
|
792 |
+
#: templates/admin/menu/import/import-overview.php:79
|
793 |
+
msgid "No recipes found."
|
794 |
+
msgstr "لا توجد وصفات"
|
795 |
+
|
796 |
+
#: templates/admin/menu/import/import-overview.php:49
|
797 |
+
msgid "Search for recipes"
|
798 |
+
msgstr "بحث عن وصفات"
|
799 |
+
|
800 |
+
#: templates/admin/menu/import/import-overview.php:54
|
801 |
+
#: templates/admin/menu/import/import-search.php:29
|
802 |
+
#: templates/admin/menu/import/import-search.php:37
|
803 |
+
msgid "%d recipe found"
|
804 |
+
msgid_plural "%d recipes found"
|
805 |
+
msgstr[0] "%d وصفة موجودة "
|
806 |
+
msgstr[1] ""
|
807 |
+
msgstr[2] ""
|
808 |
+
msgstr[3] ""
|
809 |
+
msgstr[4] ""
|
810 |
+
msgstr[5] ""
|
811 |
+
|
812 |
+
#: templates/admin/menu/import/import-overview.php:56
|
813 |
+
msgid " recipes found"
|
814 |
+
msgstr "وصفات موجودة"
|
815 |
+
|
816 |
+
#: templates/admin/menu/import/import-overview.php:59
|
817 |
+
#: templates/admin/menu/import/import-search.php:32
|
818 |
+
msgid "Explore import options"
|
819 |
+
msgstr "استكشاف خيارات الاستيراد"
|
820 |
+
|
821 |
+
#: templates/admin/menu/import/import-overview.php:64
|
822 |
+
msgid "Imported Recipes to Check"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: templates/admin/menu/import/import-overview.php:83
|
826 |
+
msgid ""
|
827 |
+
"We recommend going through all of these recipes to make sure the import "
|
828 |
+
"process was successful. Pay attention to the different ingredient parts to "
|
829 |
+
"be able to make use of all of our features."
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: templates/admin/menu/import/import-overview.php:86
|
833 |
+
msgid ""
|
834 |
+
"After doing so you can mark a recipe as checked to keep track of the recipes "
|
835 |
+
"you still have to go through."
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: templates/admin/menu/import/import-overview.php:106
|
839 |
+
#: templates/admin/menu/import/import-recipes.php:62
|
840 |
+
msgid "no parent post found"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: templates/admin/menu/import/import-overview.php:113
|
844 |
+
msgid "Mark Selected Recipes as Checked"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: templates/admin/menu/import/import-recipes.php:21
|
848 |
+
#: templates/admin/menu/import/import-search.php:22
|
849 |
+
msgid "Something went wrong."
|
850 |
+
msgstr "حدث خطأ ما!"
|
851 |
+
|
852 |
+
#: templates/admin/menu/import/import-recipes.php:28
|
853 |
+
msgid "Import from %s"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: templates/admin/menu/import/import-recipes.php:42
|
857 |
+
msgid "Import Settings"
|
858 |
+
msgstr "إعدادات الاستيراد"
|
859 |
+
|
860 |
+
#: templates/admin/menu/import/import-recipes.php:46
|
861 |
+
msgid "Use SHIFT-click to (un)check multiple recipes at once."
|
862 |
+
msgstr "استخدام SHIFT-click لتحديد وصفات متعددة في وقت واحد."
|
863 |
+
|
864 |
+
#: templates/admin/menu/import/import-recipes.php:47
|
865 |
+
msgid "Select"
|
866 |
+
msgstr "اختر"
|
867 |
+
|
868 |
+
#: templates/admin/menu/import/import-recipes.php:47
|
869 |
+
msgid "all"
|
870 |
+
msgstr "الكل"
|
871 |
+
|
872 |
+
#: templates/admin/menu/import/import-recipes.php:47
|
873 |
+
msgid "none"
|
874 |
+
msgstr "لا شيء"
|
875 |
+
|
876 |
+
#: templates/admin/menu/import/import-recipes.php:73
|
877 |
+
msgid "%d more recipe"
|
878 |
+
msgid_plural "%d more recipes"
|
879 |
+
msgstr[0] "%d وصفات اكثر "
|
880 |
+
msgstr[1] ""
|
881 |
+
msgstr[2] ""
|
882 |
+
msgstr[3] ""
|
883 |
+
msgstr[4] ""
|
884 |
+
msgstr[5] ""
|
885 |
+
|
886 |
+
#: templates/admin/menu/import/import-recipes.php:77
|
887 |
+
msgid "Try changing the \"p\" variable in the URL to find the other recipes."
|
888 |
+
msgstr "حاول تغيير المتغير \"p\" في عنوان URL للعثور على الوصفات الأخرى."
|
889 |
+
|
890 |
+
#: templates/admin/menu/import/import-recipes.php:82
|
891 |
+
msgid "Import Selected Recipes"
|
892 |
+
msgstr "استيراد وصفات مختارة"
|
893 |
+
|
894 |
+
#: templates/admin/menu/import/import-search.php:15
|
895 |
+
msgid "Search Results"
|
896 |
+
msgstr "نتائج البحث"
|
897 |
+
|
898 |
+
#: templates/admin/menu/import/import-search.php:27
|
899 |
+
msgid "Search finished."
|
900 |
+
msgstr "اكتمل البحث."
|
901 |
+
|
902 |
+
#: templates/admin/menu/import/import-search.php:35
|
903 |
+
msgid "Still searching, keep this page open."
|
904 |
+
msgstr "مازال البحث جارياً ، ابقي هذه الصفحة مفتوحة."
|
905 |
+
|
906 |
+
#: templates/admin/modal/modal.php:16
|
907 |
+
msgid "Close Modal"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: templates/admin/modal/modal.php:38
|
911 |
+
msgid "You're currently editing a recipe."
|
912 |
+
msgstr "أنت الآن تقوم بتعديل وصفة."
|
913 |
+
|
914 |
+
#: templates/admin/modal/modal.php:38
|
915 |
+
msgid "Use the \"WP Recipe Maker\" button to access other features."
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: templates/admin/modal/tabs/edit-recipe.php:15
|
919 |
+
msgid "Select the recipe you would like to edit and click the \"Edit\" button."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: templates/admin/modal/tabs/edit-recipe.php:19
|
923 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:33
|
924 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:33
|
925 |
+
msgid "Recipe"
|
926 |
+
msgstr "الوصفة"
|
927 |
+
|
928 |
+
#: templates/admin/modal/tabs/edit-recipe.php:21
|
929 |
+
msgid "Select a recipe"
|
930 |
+
msgstr "اختر وصفة"
|
931 |
+
|
932 |
+
#: templates/admin/modal/tabs/import-text.php:16
|
933 |
+
msgid "Start Over"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: templates/admin/modal/tabs/import-text.php:17
|
937 |
+
msgid "Clear"
|
938 |
+
msgstr "مسح"
|
939 |
+
|
940 |
+
#: templates/admin/modal/tabs/import-text.php:18
|
941 |
+
msgid "Next"
|
942 |
+
msgstr "التالي"
|
943 |
+
|
944 |
+
#: templates/admin/modal/tabs/import-text.php:22
|
945 |
+
msgid ""
|
946 |
+
"Paste the recipe you want to import in the textarea below to get started."
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: templates/admin/modal/tabs/import-text.php:30
|
950 |
+
#: templates/admin/modal/tabs/import-text.php:35
|
951 |
+
#: templates/admin/modal/tabs/import-text.php:40
|
952 |
+
#: templates/admin/modal/tabs/import-text.php:52
|
953 |
+
#: templates/admin/modal/tabs/import-text.php:64
|
954 |
+
msgid "Highlight this part of the recipe:"
|
955 |
+
msgstr "تسليط الضوء وتمييز هذا الجزء من الوصفة:"
|
956 |
+
|
957 |
+
#: templates/admin/modal/tabs/import-text.php:30
|
958 |
+
#: templates/admin/modal/tabs/recipe-details.php:30
|
959 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:21
|
960 |
+
msgid "Name"
|
961 |
+
msgstr "الاسم"
|
962 |
+
|
963 |
+
#: templates/admin/modal/tabs/import-text.php:35
|
964 |
+
#: templates/admin/modal/tabs/recipe-details.php:34
|
965 |
+
msgid "Summary"
|
966 |
+
msgstr "الملخص"
|
967 |
+
|
968 |
+
#: templates/admin/modal/tabs/import-text.php:45
|
969 |
+
msgid "Check any ingredient groups in this list:"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: templates/admin/modal/tabs/import-text.php:57
|
973 |
+
msgid "Check any instruction groups in this list:"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: templates/admin/modal/tabs/import-text.php:64
|
977 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:22
|
978 |
+
#: templates/admin/modal/tabs/recipe-notes.php:16
|
979 |
+
msgid "Notes"
|
980 |
+
msgstr "ملاحظات"
|
981 |
+
|
982 |
+
#: templates/admin/modal/tabs/import-text.php:69
|
983 |
+
msgid "Finished the text import."
|
984 |
+
msgstr "انتهى استيراد النص."
|
985 |
+
|
986 |
+
#: templates/admin/modal/tabs/recipe-details.php:23
|
987 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:54
|
988 |
+
msgid "Image"
|
989 |
+
msgstr "صورة"
|
990 |
+
|
991 |
+
#: templates/admin/modal/tabs/recipe-details.php:24
|
992 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:70
|
993 |
+
msgid "Add Image"
|
994 |
+
msgstr "أضف صورة"
|
995 |
+
|
996 |
+
#: templates/admin/modal/tabs/recipe-details.php:25
|
997 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:71
|
998 |
+
msgid "Remove Image"
|
999 |
+
msgstr "أزل الصورة"
|
1000 |
+
|
1001 |
+
#: templates/admin/modal/tabs/recipe-details.php:31
|
1002 |
+
msgid "Recipe Name"
|
1003 |
+
msgstr "اسم الوصفة"
|
1004 |
+
|
1005 |
+
#: templates/admin/modal/tabs/recipe-details.php:38
|
1006 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:87
|
1007 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:91
|
1008 |
+
msgid "Hint"
|
1009 |
+
msgstr "تلميح"
|
1010 |
+
|
1011 |
+
#: templates/admin/modal/tabs/recipe-details.php:39
|
1012 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:92
|
1013 |
+
msgid "Select text to add styling or links."
|
1014 |
+
msgstr "حدد نصا لإضافة التصميم أو الروابط."
|
1015 |
+
|
1016 |
+
#: templates/admin/modal/tabs/recipe-details.php:44
|
1017 |
+
msgid "Don't show"
|
1018 |
+
msgstr "لا تظهر"
|
1019 |
+
|
1020 |
+
#: templates/admin/modal/tabs/recipe-details.php:45
|
1021 |
+
msgid "Name of post author"
|
1022 |
+
msgstr "اسم مؤلف المقال"
|
1023 |
+
|
1024 |
+
#: templates/admin/modal/tabs/recipe-details.php:46
|
1025 |
+
msgid "Custom author name"
|
1026 |
+
msgstr "اسم المؤلف المخصص"
|
1027 |
+
|
1028 |
+
#: templates/admin/modal/tabs/recipe-details.php:49
|
1029 |
+
msgid "Custom Author Name"
|
1030 |
+
msgstr "اسم مؤلف مخصص"
|
1031 |
+
|
1032 |
+
#: templates/admin/modal/tabs/recipe-details.php:50
|
1033 |
+
msgid "Author Name"
|
1034 |
+
msgstr "اسم المؤلف"
|
1035 |
+
|
1036 |
+
#: templates/admin/modal/tabs/recipe-details.php:54
|
1037 |
+
msgid "people"
|
1038 |
+
msgstr "أشخاص"
|
1039 |
+
|
1040 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:19
|
1041 |
+
msgid "Amount"
|
1042 |
+
msgstr "الكمية"
|
1043 |
+
|
1044 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:20
|
1045 |
+
msgid "Unit"
|
1046 |
+
msgstr "الوحدة"
|
1047 |
+
|
1048 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:28
|
1049 |
+
msgid "Ingredient Group"
|
1050 |
+
msgstr "مجموعة مقادير"
|
1051 |
+
|
1052 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:35
|
1053 |
+
msgid "olive oil"
|
1054 |
+
msgstr "زيت زيتون"
|
1055 |
+
|
1056 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:36
|
1057 |
+
msgid "extra virgin"
|
1058 |
+
msgstr "زيت الزيتون البكر"
|
1059 |
+
|
1060 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:44
|
1061 |
+
msgid "Add Ingredient"
|
1062 |
+
msgstr "أضف مقدار"
|
1063 |
+
|
1064 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:45
|
1065 |
+
msgid "Add Ingredient Group"
|
1066 |
+
msgstr "إضافة مجموعة مقادير"
|
1067 |
+
|
1068 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:53
|
1069 |
+
msgid "Instruction"
|
1070 |
+
msgstr "خطوات"
|
1071 |
+
|
1072 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:60
|
1073 |
+
msgid "Instruction Group"
|
1074 |
+
msgstr "إضافة مجموعة خطوات"
|
1075 |
+
|
1076 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:81
|
1077 |
+
msgid "Add Instruction"
|
1078 |
+
msgstr "أضف خطوات"
|
1079 |
+
|
1080 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:82
|
1081 |
+
msgid "Add Instruction Group"
|
1082 |
+
msgstr "أضف مجموعة خطوات"
|
1083 |
+
|
1084 |
+
#: templates/admin/modal/tabs/recipe-ingredients-instructions.php:88
|
1085 |
+
msgid ""
|
1086 |
+
"Use the TAB key to easily move from field to field and add ingredients/"
|
1087 |
+
"instructions without having to click the button."
|
1088 |
+
msgstr ""
|
1089 |
+
"استخدم المفتاح تاب للانتقال بسهولة من حقل إلى حقل وإضافة المكونات / "
|
1090 |
+
"التعليمات دون الحاجة إلى النقر على الزر."
|
1091 |
+
|
1092 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:15
|
1093 |
+
msgid ""
|
1094 |
+
"The %s shortcode can be used to add a link that jumps your visitors to a "
|
1095 |
+
"recipe on the page."
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:17
|
1099 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:17
|
1100 |
+
msgid "Shortcode Examples"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:20
|
1104 |
+
msgid ""
|
1105 |
+
"Add a link that jumps to the first recipe found on the page with \"Jump to "
|
1106 |
+
"Recipe\" as the link text."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:24
|
1110 |
+
msgid ""
|
1111 |
+
"Add a link that jumps to the recipe with ID 123 with \"Jump to Recipe\" as "
|
1112 |
+
"the link text."
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:28
|
1116 |
+
msgid ""
|
1117 |
+
"Add a link that jumps to the recipe with ID 123 with \"View Recipe\" as the "
|
1118 |
+
"link text."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:30
|
1122 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:30
|
1123 |
+
msgid "Shortcode Builder"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:39
|
1127 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:39
|
1128 |
+
msgid "Text"
|
1129 |
+
msgstr "نص"
|
1130 |
+
|
1131 |
+
#: templates/admin/modal/tabs/recipe-snippets-jump.php:41
|
1132 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:41
|
1133 |
+
msgid "Leave blank to use default"
|
1134 |
+
msgstr "اتركه فارغاً للاعدادات الافتراضية"
|
1135 |
+
|
1136 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:15
|
1137 |
+
msgid "The %s shortcode can be used to add a link for printing a recipe."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:20
|
1141 |
+
msgid ""
|
1142 |
+
"Add a link that prints the first recipe found on the page with \"Print Recipe"
|
1143 |
+
"\" as the link text."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:24
|
1147 |
+
msgid ""
|
1148 |
+
"Add a link that prints the recipe with ID 123 with \"Print Recipe\" as the "
|
1149 |
+
"link text."
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: templates/admin/modal/tabs/recipe-snippets-print.php:28
|
1153 |
+
msgid ""
|
1154 |
+
"Add a link that prints the recipe with ID 123 with \"Print my new Recipe\" "
|
1155 |
+
"as the link text."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: templates/admin/settings/appearance.php:17
|
1159 |
+
msgid "Recipe Fields"
|
1160 |
+
msgstr "حقول الوصفة"
|
1161 |
+
|
1162 |
+
#: templates/admin/settings/appearance.php:22
|
1163 |
+
msgid "Recipe Image"
|
1164 |
+
msgstr "صورة الوصفة"
|
1165 |
+
|
1166 |
+
#: templates/admin/settings/appearance.php:28
|
1167 |
+
msgid "Use featured image of parent post if no recipe image is set"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: templates/admin/settings/appearance.php:34
|
1171 |
+
msgid "Nutrition Label"
|
1172 |
+
msgstr "الملصق الغذائي"
|
1173 |
+
|
1174 |
+
#: templates/admin/settings/appearance.php:40
|
1175 |
+
msgid "Display in recipe template"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: templates/admin/settings/appearance.php:44
|
1179 |
+
msgid "Only available in"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: templates/admin/settings/appearance.php:46
|
1183 |
+
msgid ""
|
1184 |
+
"Display the nutrition label at its default location in the recipe template."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: templates/admin/settings/appearance.php:53
|
1188 |
+
msgid "Recipe Template Options"
|
1189 |
+
msgstr "خيارات قالب الوصفة"
|
1190 |
+
|
1191 |
+
#: templates/admin/settings/appearance.php:55
|
1192 |
+
msgid "Note: not all options will affect every recipe template."
|
1193 |
+
msgstr "ملاحظة: لن تؤثر جميع الخيارات على كل قوالب الوصفة."
|
1194 |
+
|
1195 |
+
#: templates/admin/settings/appearance.php:61
|
1196 |
+
msgid "Background Color"
|
1197 |
+
msgstr "لون الخلفية"
|
1198 |
+
|
1199 |
+
#: templates/admin/settings/appearance.php:69
|
1200 |
+
msgid "Border Color"
|
1201 |
+
msgstr "لون الحدود"
|
1202 |
+
|
1203 |
+
#: templates/admin/settings/appearance.php:77
|
1204 |
+
msgid "Text Color"
|
1205 |
+
msgstr "لون النص"
|
1206 |
+
|
1207 |
+
#: templates/admin/settings/appearance.php:85
|
1208 |
+
msgid "Link Color"
|
1209 |
+
msgstr "لون الرابط"
|
1210 |
+
|
1211 |
+
#: templates/admin/settings/appearance.php:93
|
1212 |
+
msgid "Header Color"
|
1213 |
+
msgstr "لون الترويسة"
|
1214 |
+
|
1215 |
+
#: templates/admin/settings/appearance.php:101
|
1216 |
+
msgid "Icon Color"
|
1217 |
+
msgstr "لون الايقونة"
|
1218 |
+
|
1219 |
+
#: templates/admin/settings/appearance.php:109
|
1220 |
+
msgid "Accent Color"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: templates/admin/settings/appearance.php:117
|
1224 |
+
msgid "Accent Text Color"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: templates/admin/settings/appearance.php:125
|
1228 |
+
msgid "Accent 2 Color"
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: templates/admin/settings/appearance.php:133
|
1232 |
+
msgid "Accent 2 Text Color"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: templates/admin/settings/appearance.php:141
|
1236 |
+
msgid "Recipe Template"
|
1237 |
+
msgstr "قالب الوصفة"
|
1238 |
+
|
1239 |
+
#: templates/admin/settings/appearance.php:143
|
1240 |
+
msgid "Change the look of recipes on your website."
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: templates/admin/settings/appearance.php:152
|
1244 |
+
msgid "Default Recipe Template"
|
1245 |
+
msgstr "قالب الوصفة الافتراضي"
|
1246 |
+
|
1247 |
+
#: templates/admin/settings/appearance.php:165
|
1248 |
+
msgid "The default template to use for recipes on your website."
|
1249 |
+
msgstr "القالب الافتراضي لاستخدامه للوصفات على موقعك الالكتروني."
|
1250 |
+
|
1251 |
+
#: templates/admin/settings/appearance.php:171
|
1252 |
+
msgid "Default Print Template"
|
1253 |
+
msgstr "قالب الطباعة الافتراضي"
|
1254 |
+
|
1255 |
+
#: templates/admin/settings/appearance.php:184
|
1256 |
+
msgid "The default template to use when printing a recipe."
|
1257 |
+
msgstr "القالب الافتراضي لاستخدامه لطباعة الوصفات."
|
1258 |
+
|
1259 |
+
#: templates/admin/settings/appearance.php:210
|
1260 |
+
msgid "No Screenshot"
|
1261 |
+
msgstr "لا لقطة الشاشة"
|
1262 |
+
|
1263 |
+
#: templates/admin/settings/appearance.php:219
|
1264 |
+
#: templates/admin/settings/features.php:67
|
1265 |
+
#: templates/admin/settings/labels.php:42
|
1266 |
+
msgid "Save Changes"
|
1267 |
+
msgstr "حفظ التغييرات"
|
1268 |
+
|
1269 |
+
#: templates/admin/settings/features.php:17 templates/admin/settings.php:18
|
1270 |
+
msgid "Features"
|
1271 |
+
msgstr "المميزات"
|
1272 |
+
|
1273 |
+
#: templates/admin/settings/features.php:19
|
1274 |
+
#: templates/admin/settings/labels.php:19
|
1275 |
+
msgid "Choose the features you want to use on your website."
|
1276 |
+
msgstr "اختر الميزات التي تريد استخدامها على موقعك الإلكتروني."
|
1277 |
+
|
1278 |
+
#: templates/admin/settings/features.php:25
|
1279 |
+
msgid "Comment Ratings"
|
1280 |
+
msgstr "تقييم التعليقات"
|
1281 |
+
|
1282 |
+
#: templates/admin/settings/features.php:31
|
1283 |
+
msgid "Allow visitors to vote on your recipes when commenting"
|
1284 |
+
msgstr "السماح للزوار بالتصويت على الوصفة عند التعليق"
|
1285 |
+
|
1286 |
+
#: templates/admin/settings/features.php:34
|
1287 |
+
#: templates/admin/settings/features.php:61
|
1288 |
+
msgid "Learn more"
|
1289 |
+
msgstr "أعرف أكثر"
|
1290 |
+
|
1291 |
+
#: templates/admin/settings/features.php:40
|
1292 |
+
msgid "Premium Features"
|
1293 |
+
msgstr "الميزات البريميوم"
|
1294 |
+
|
1295 |
+
#: templates/admin/settings/features.php:45
|
1296 |
+
msgid "Choose the Premium features you want to use on your website."
|
1297 |
+
msgstr "اختر المميزات البريميوم التي تريد استخدامها على موقعك الإلكتروني."
|
1298 |
+
|
1299 |
+
#: templates/admin/settings/features.php:52
|
1300 |
+
msgid "Adjustable Servings"
|
1301 |
+
msgstr "حصص قابلة للتعديل"
|
1302 |
+
|
1303 |
+
#: templates/admin/settings/features.php:58
|
1304 |
+
msgid "Visitors can adjust the serving size of your recipes"
|
1305 |
+
msgstr "السماح للمستخدمين بضبط الحصص في الوصفات."
|
1306 |
+
|
1307 |
+
#: templates/admin/settings/labels.php:17 templates/admin/settings.php:17
|
1308 |
+
msgid "Labels"
|
1309 |
+
msgstr "التسميات"
|
1310 |
+
|
1311 |
+
#: templates/admin/settings.php:16
|
1312 |
+
msgid "Appearance"
|
1313 |
+
msgstr "الظهور"
|
1314 |
+
|
1315 |
+
#: templates/admin/settings.php:27
|
1316 |
+
msgid "WP Recipe Maker Settings"
|
1317 |
+
msgstr "الإعدادات"
|
1318 |
+
|
1319 |
+
#. Plugin Name of the plugin/theme
|
1320 |
+
msgid "WP Recipe Maker"
|
1321 |
+
msgstr "وردبريس صانع الوصفات"
|
1322 |
+
|
1323 |
+
#. Plugin URI of the plugin/theme
|
1324 |
+
msgid "http://bootstrapped.ventures/wp-recipe-maker/"
|
1325 |
+
msgstr "http://bootstrapped.ventures/wp-recipe-maker/"
|
1326 |
+
|
1327 |
+
#. Description of the plugin/theme
|
1328 |
+
msgid ""
|
1329 |
+
"The easy and user-friendly recipe plugin for everyone. Automatic JSON-LD "
|
1330 |
+
"metadata for better SEO will get you more visitors!"
|
1331 |
+
msgstr ""
|
1332 |
+
"سهلة وصديقة للمستخدم . البيانات الوصفية جسون-لد التلقائية لتحسين الظهور في "
|
1333 |
+
"محركات البحث و تحصل على المزيد من الزوار!"
|
1334 |
+
|
1335 |
+
#. Author of the plugin/theme
|
1336 |
+
msgid "Bootstrapped Ventures"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#. Author URI of the plugin/theme
|
1340 |
+
msgid "http://bootstrapped.ventures/"
|
1341 |
+
msgstr "http://bootstrapped.ventures/"
|
readme.txt
CHANGED
@@ -97,6 +97,12 @@ Yes! We pride ourselves on offering awesome support and almost always answer sup
|
|
97 |
|
98 |
== Changelog ==
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
= 1.16.0 =
|
101 |
* Feature: Change image sizes in settings
|
102 |
* Feature: Recipe placeholders for print credit
|
@@ -276,6 +282,9 @@ Yes! We pride ourselves on offering awesome support and almost always answer sup
|
|
276 |
|
277 |
== Upgrade notice ==
|
278 |
|
|
|
|
|
|
|
279 |
= 1.16.0 =
|
280 |
Update for even more easy recipe template customization options
|
281 |
|
97 |
|
98 |
== Changelog ==
|
99 |
|
100 |
+
= 1.17.0 =
|
101 |
+
* Feature: Setting to disable the output of inline CSS
|
102 |
+
* Improvement: Better import of ingredient notes
|
103 |
+
* Improvement: Prevent themes from messing up the recipe template
|
104 |
+
* Fix: Duplicate slug problem
|
105 |
+
|
106 |
= 1.16.0 =
|
107 |
* Feature: Change image sizes in settings
|
108 |
* Feature: Recipe placeholders for print credit
|
282 |
|
283 |
== Upgrade notice ==
|
284 |
|
285 |
+
= 1.17.0 =
|
286 |
+
Update if you're experiencing problemns with the post slug
|
287 |
+
|
288 |
= 1.16.0 =
|
289 |
Update for even more easy recipe template customization options
|
290 |
|
templates/admin/menu/faq/whats_new.php
CHANGED
@@ -11,6 +11,21 @@
|
|
11 |
|
12 |
?>
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
<h3>2017-03-28 | WP Recipe Maker 1.16.0</h3>
|
15 |
<ul>
|
16 |
<li>Feature: Change image sizes in settings</li>
|
11 |
|
12 |
?>
|
13 |
|
14 |
+
<h3>2017-04-11 | WP Recipe Maker Premium 1.4.0</h3>
|
15 |
+
<ul>
|
16 |
+
<li>Feature: Text field display for servings changer</li>
|
17 |
+
<li>Feature: Adjust image sizes in Premium templates</li>
|
18 |
+
<li>Fix: Problem with automatic updates</li>
|
19 |
+
</ul>
|
20 |
+
|
21 |
+
<h3>2017-04-11 | WP Recipe Maker 1.17.0</h3>
|
22 |
+
<ul>
|
23 |
+
<li>Feature: Setting to disable the output of inline CSS</li>
|
24 |
+
<li>Improvement: Better import of ingredient notes</li>
|
25 |
+
<li>Improvement: Prevent themes from messing up the recipe template</li>
|
26 |
+
<li>Fix: Duplicate slug problem</li>
|
27 |
+
</ul>
|
28 |
+
|
29 |
<h3>2017-03-28 | WP Recipe Maker 1.16.0</h3>
|
30 |
<ul>
|
31 |
<li>Feature: Change image sizes in settings</li>
|
templates/admin/settings/appearance.php
CHANGED
@@ -78,6 +78,7 @@
|
|
78 |
</p>
|
79 |
<table class="form-table">
|
80 |
<tbody>
|
|
|
81 |
<tr>
|
82 |
<th scope="row">
|
83 |
<label for="template_font_size"><?php esc_html_e( 'Base Font Size', 'wp-recipe-maker' ); ?></label>
|
@@ -111,6 +112,7 @@
|
|
111 |
</p>
|
112 |
</td>
|
113 |
</tr>
|
|
|
114 |
<tr>
|
115 |
<th scope="row">
|
116 |
<label for="template_recipe_image"><?php esc_html_e( 'Recipe Image Size', 'wp-recipe-maker' ); ?></label>
|
@@ -137,6 +139,7 @@
|
|
137 |
</tr>
|
138 |
</tbody>
|
139 |
</table>
|
|
|
140 |
<h2 class="title"><?php esc_html_e( 'Recipe Template Colors', 'wp-recipe-maker' ); ?></h2>
|
141 |
<p>
|
142 |
<?php esc_html_e( 'Note: not all options will affect every recipe template.', 'wp-recipe-maker' ); ?>
|
@@ -225,6 +228,7 @@
|
|
225 |
</tr>
|
226 |
</tbody>
|
227 |
</table>
|
|
|
228 |
<?php if ( WPRM_Settings::get( 'features_comment_ratings' ) ) : ?>
|
229 |
<h2 class="title"><?php esc_html_e( 'Comment Rating Appearance', 'wp-recipe-maker' ); ?></h2>
|
230 |
<p>
|
@@ -232,6 +236,7 @@
|
|
232 |
</p>
|
233 |
<table class="form-table">
|
234 |
<tbody>
|
|
|
235 |
<tr>
|
236 |
<th scope="row">
|
237 |
<label for="template_color_comment_rating"><?php esc_html_e( 'Stars Color', 'wp-recipe-maker' ); ?></label>
|
@@ -240,6 +245,7 @@
|
|
240 |
<input name="template_color_comment_rating" type="text" id="template_color_comment_rating" value="<?php echo esc_attr( WPRM_Settings::get( 'template_color_comment_rating' ) ); ?>" data-default-color="<?php echo esc_attr( WPRM_Settings::get_default( 'template_color_comment_rating' ) ); ?>" class="wprm-color">
|
241 |
</td>
|
242 |
</tr>
|
|
|
243 |
<tr>
|
244 |
<th scope="row">
|
245 |
<label for="comment_rating_position"><?php esc_html_e( 'Stars Position', 'wp-recipe-maker' ); ?></label>
|
78 |
</p>
|
79 |
<table class="form-table">
|
80 |
<tbody>
|
81 |
+
<?php if ( WPRM_Settings::get( 'features_custom_style' ) ) : ?>
|
82 |
<tr>
|
83 |
<th scope="row">
|
84 |
<label for="template_font_size"><?php esc_html_e( 'Base Font Size', 'wp-recipe-maker' ); ?></label>
|
112 |
</p>
|
113 |
</td>
|
114 |
</tr>
|
115 |
+
<?php endif; ?>
|
116 |
<tr>
|
117 |
<th scope="row">
|
118 |
<label for="template_recipe_image"><?php esc_html_e( 'Recipe Image Size', 'wp-recipe-maker' ); ?></label>
|
139 |
</tr>
|
140 |
</tbody>
|
141 |
</table>
|
142 |
+
<?php if ( WPRM_Settings::get( 'features_custom_style' ) ) : ?>
|
143 |
<h2 class="title"><?php esc_html_e( 'Recipe Template Colors', 'wp-recipe-maker' ); ?></h2>
|
144 |
<p>
|
145 |
<?php esc_html_e( 'Note: not all options will affect every recipe template.', 'wp-recipe-maker' ); ?>
|
228 |
</tr>
|
229 |
</tbody>
|
230 |
</table>
|
231 |
+
<?php endif; ?>
|
232 |
<?php if ( WPRM_Settings::get( 'features_comment_ratings' ) ) : ?>
|
233 |
<h2 class="title"><?php esc_html_e( 'Comment Rating Appearance', 'wp-recipe-maker' ); ?></h2>
|
234 |
<p>
|
236 |
</p>
|
237 |
<table class="form-table">
|
238 |
<tbody>
|
239 |
+
<?php if ( WPRM_Settings::get( 'features_custom_style' ) ) : ?>
|
240 |
<tr>
|
241 |
<th scope="row">
|
242 |
<label for="template_color_comment_rating"><?php esc_html_e( 'Stars Color', 'wp-recipe-maker' ); ?></label>
|
245 |
<input name="template_color_comment_rating" type="text" id="template_color_comment_rating" value="<?php echo esc_attr( WPRM_Settings::get( 'template_color_comment_rating' ) ); ?>" data-default-color="<?php echo esc_attr( WPRM_Settings::get_default( 'template_color_comment_rating' ) ); ?>" class="wprm-color">
|
246 |
</td>
|
247 |
</tr>
|
248 |
+
<?php endif; ?>
|
249 |
<tr>
|
250 |
<th scope="row">
|
251 |
<label for="comment_rating_position"><?php esc_html_e( 'Stars Position', 'wp-recipe-maker' ); ?></label>
|
templates/admin/settings/features.php
CHANGED
@@ -40,6 +40,21 @@
|
|
40 |
<?php endif; ?>
|
41 |
</td>
|
42 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
<tr>
|
44 |
<th scope="row">
|
45 |
<label for="features_manage_access"><?php esc_html_e( 'Access to Manage Page', 'wp-recipe-maker-premium' ); ?></label>
|
40 |
<?php endif; ?>
|
41 |
</td>
|
42 |
</tr>
|
43 |
+
<tr>
|
44 |
+
<th scope="row">
|
45 |
+
<?php esc_html_e( 'Custom Style', 'wp-recipe-maker' ); ?>
|
46 |
+
</th>
|
47 |
+
<td>
|
48 |
+
<label for="features_custom_style">
|
49 |
+
<?php $checked = WPRM_Settings::get( 'features_custom_style' ) ? ' checked="checked"' : ''; ?>
|
50 |
+
<input name="features_custom_style" type="checkbox" id="features_custom_style"<?php echo esc_html( $checked ); ?> />
|
51 |
+
<?php esc_html_e( 'Change the recipe style from the settings page', 'wp-recipe-maker' ); ?>
|
52 |
+
</label>
|
53 |
+
<p class="description">
|
54 |
+
<?php esc_html_e( "Disable if you don't want to output inline CSS.", 'wp-recipe-maker' ); ?>
|
55 |
+
</p>
|
56 |
+
</td>
|
57 |
+
</tr>
|
58 |
<tr>
|
59 |
<th scope="row">
|
60 |
<label for="features_manage_access"><?php esc_html_e( 'Access to Manage Page', 'wp-recipe-maker-premium' ); ?></label>
|
templates/recipe/clean-print-with-image/clean-print-with-image.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wprm-recipe-clean-print-with-image{font-size:.9em}.wprm-recipe-clean-print-with-image .wprm-recipe-image{float:left;margin:0 15px 15px 0}.wprm-recipe-clean-print-with-image h2.wprm-recipe-name,.wprm-recipe-clean-print-with-image h3.wprm-recipe-header,.wprm-recipe-clean-print-with-image h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-clean-print-with-image h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-clean-print-with-image .wprm-recipe-details-container,.wprm-recipe-clean-print-with-image .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-clean-print-with-image .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-clean-print-with-image .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-clean-print-with-image h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-clean-print-with-image ol,.wprm-recipe-clean-print-with-image ul{margin:0 0 8px}.wprm-recipe-clean-print-with-image ol li,.wprm-recipe-clean-print-with-image ul li{margin:0 0 0 32px}.wprm-recipe-clean-print-with-image h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-clean-print-with-image .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-clean-print-with-image .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-clean-print-with-image .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-clean-print-with-image .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-print .wprm-recipe-clean-print-with-image{max-width:750px;margin:0 auto}
|
1 |
+
.wprm-recipe-clean-print-with-image{font-size:.9em}.wprm-recipe-clean-print-with-image :after,.wprm-recipe-clean-print-with-image :before{display:none}.wprm-recipe-clean-print-with-image .wprm-recipe-image{float:left;margin:0 15px 15px 0}.wprm-recipe-clean-print-with-image h2.wprm-recipe-name,.wprm-recipe-clean-print-with-image h3.wprm-recipe-header,.wprm-recipe-clean-print-with-image h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-clean-print-with-image h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-clean-print-with-image .wprm-recipe-details-container,.wprm-recipe-clean-print-with-image .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-clean-print-with-image .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-clean-print-with-image .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-clean-print-with-image h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-clean-print-with-image ol,.wprm-recipe-clean-print-with-image ul{margin:0 0 8px}.wprm-recipe-clean-print-with-image ol li,.wprm-recipe-clean-print-with-image ul li{margin:0 0 0 32px}.wprm-recipe-clean-print-with-image h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-clean-print-with-image .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-clean-print-with-image .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-clean-print-with-image .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-clean-print-with-image .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-print .wprm-recipe-clean-print-with-image{max-width:750px;margin:0 auto}
|
templates/recipe/clean-print-with-image/clean-print-with-image.scss
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
.wprm-recipe-clean-print-with-image {
|
2 |
font-size: 0.9em;
|
3 |
|
|
|
|
|
|
|
|
|
4 |
.wprm-recipe-image {
|
5 |
float: left;
|
6 |
margin: 0 15px 15px 0;
|
1 |
.wprm-recipe-clean-print-with-image {
|
2 |
font-size: 0.9em;
|
3 |
|
4 |
+
*:before, *:after {
|
5 |
+
display: none;
|
6 |
+
}
|
7 |
+
|
8 |
.wprm-recipe-image {
|
9 |
float: left;
|
10 |
margin: 0 15px 15px 0;
|
templates/recipe/clean-print/clean-print.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wprm-recipe-clean-print{font-size:.9em}.wprm-recipe-clean-print h2.wprm-recipe-name,.wprm-recipe-clean-print h3.wprm-recipe-header,.wprm-recipe-clean-print h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-clean-print h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-clean-print .wprm-recipe-details-container,.wprm-recipe-clean-print .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-clean-print .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-clean-print .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-clean-print h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-clean-print ol,.wprm-recipe-clean-print ul{margin:0 0 8px}.wprm-recipe-clean-print ol li,.wprm-recipe-clean-print ul li{margin:0 0 0 32px}.wprm-recipe-clean-print h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-clean-print .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-clean-print .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-clean-print .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-clean-print .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-print .wprm-recipe-clean-print{max-width:750px;margin:0 auto}
|
1 |
+
.wprm-recipe-clean-print{font-size:.9em}.wprm-recipe-clean-print :after,.wprm-recipe-clean-print :before{display:none}.wprm-recipe-clean-print h2.wprm-recipe-name,.wprm-recipe-clean-print h3.wprm-recipe-header,.wprm-recipe-clean-print h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-clean-print h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-clean-print .wprm-recipe-details-container,.wprm-recipe-clean-print .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-clean-print .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-clean-print .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-clean-print h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-clean-print ol,.wprm-recipe-clean-print ul{margin:0 0 8px}.wprm-recipe-clean-print ol li,.wprm-recipe-clean-print ul li{margin:0 0 0 32px}.wprm-recipe-clean-print h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-clean-print .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-clean-print .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-clean-print .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-clean-print .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-print .wprm-recipe-clean-print{max-width:750px;margin:0 auto}
|
templates/recipe/clean-print/clean-print.scss
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
.wprm-recipe-clean-print {
|
2 |
font-size: 0.9em;
|
3 |
|
|
|
|
|
|
|
|
|
4 |
h2.wprm-recipe-name,
|
5 |
h3.wprm-recipe-header,
|
6 |
h4.wprm-recipe-group-name {
|
1 |
.wprm-recipe-clean-print {
|
2 |
font-size: 0.9em;
|
3 |
|
4 |
+
*:before, *:after {
|
5 |
+
display: none;
|
6 |
+
}
|
7 |
+
|
8 |
h2.wprm-recipe-name,
|
9 |
h3.wprm-recipe-header,
|
10 |
h4.wprm-recipe-group-name {
|
templates/recipe/simple/simple.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wprm-recipe-simple{border-top:1px solid #aaa;background-color:#fafafa;padding:10px;margin:20px 0;font-size:.9em}.wprm-recipe-simple li,.wprm-recipe-simple p{font-size:1em}.wprm-recipe-simple h2.wprm-recipe-name,.wprm-recipe-simple h3.wprm-recipe-header,.wprm-recipe-simple h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-simple .wprm-recipe-image-container{float:right;text-align:center;margin:0 0 10px 10px}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-image{margin:0}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating{margin-bottom:5px}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating svg{vertical-align:middle;width:16px;height:16px;margin:0}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-print{font-size:.9em;cursor:pointer}.wprm-recipe-simple h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-simple .wprm-recipe-details-container,.wprm-recipe-simple .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-simple .wprm-recipe-details-icon svg{vertical-align:middle;width:16px;height:16px}.wprm-recipe-simple .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-simple .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-simple h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-simple ol,.wprm-recipe-simple ul{margin:0 0 8px}.wprm-recipe-simple ol li,.wprm-recipe-simple ul li{margin:0 0 0 32px}.wprm-recipe-simple h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-simple .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-simple .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-simple .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-simple .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-recipe-simple .wprm-recipe-instruction-image{margin:5px 0 15px}.wprm-print .wprm-recipe-simple{max-width:750px;margin:0 auto}.wprm-print .wprm-recipe-print{display:none}@media only screen and (max-width:640px){.wprm-recipe-simple .wprm-recipe-image-container{float:none}.wprm-recipe-simple .wprm-recipe-details-name{min-width:0}}
|
1 |
+
.wprm-recipe-simple{border-top:1px solid #aaa;background-color:#fafafa;padding:10px;margin:20px 0;font-size:.9em}.wprm-recipe-simple li,.wprm-recipe-simple p{font-size:1em}.wprm-recipe-simple :after,.wprm-recipe-simple :before{display:none}.wprm-recipe-simple h2.wprm-recipe-name,.wprm-recipe-simple h3.wprm-recipe-header,.wprm-recipe-simple h4.wprm-recipe-group-name{font-variant:normal;text-transform:none;letter-spacing:normal;margin:0;padding:0}.wprm-recipe-simple .wprm-recipe-image-container{float:right;text-align:center;margin:0 0 10px 10px}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-image{margin:0}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating{margin-bottom:5px}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating svg{vertical-align:middle;width:16px;height:16px;margin:0}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details{font-size:.8em}.wprm-recipe-simple .wprm-recipe-image-container .wprm-recipe-print{font-size:.9em;cursor:pointer}.wprm-recipe-simple h2.wprm-recipe-name{clear:none;font-size:1.8em}.wprm-recipe-simple .wprm-recipe-details-container,.wprm-recipe-simple .wprm-recipe-summary{margin-bottom:15px}.wprm-recipe-simple .wprm-recipe-details-icon svg{vertical-align:middle;width:16px;height:16px}.wprm-recipe-simple .wprm-recipe-details-name{display:inline-block;font-weight:700;min-width:130px}.wprm-recipe-simple .wprm-recipe-details-unit{font-size:.8em}.wprm-recipe-simple h3.wprm-recipe-header{margin-top:10px;font-size:1.2em}.wprm-recipe-simple ol,.wprm-recipe-simple ul{margin:0 0 8px}.wprm-recipe-simple ol li,.wprm-recipe-simple ul li{margin:0 0 0 32px}.wprm-recipe-simple h4.wprm-recipe-group-name{margin-top:5px!important;font-weight:300;font-size:1em}.wprm-recipe-simple .wprm-recipe-ingredient-notes{opacity:.7}.wprm-recipe-simple .wprm-recipe-instructions .wprm-recipe-instruction{margin-bottom:5px}.wprm-recipe-simple .wprm-recipe-instruction-text p{margin:0 0 5px}.wprm-recipe-simple .wprm-recipe-instruction-text p:last-of-type{margin-bottom:0}.wprm-recipe-simple .wprm-recipe-instruction-image{margin:5px 0 15px}.wprm-print .wprm-recipe-simple{max-width:750px;margin:0 auto}.wprm-print .wprm-recipe-print{display:none}@media only screen and (max-width:640px){.wprm-recipe-simple .wprm-recipe-image-container{float:none}.wprm-recipe-simple .wprm-recipe-details-name{min-width:0}}
|
templates/recipe/simple/simple.scss
CHANGED
@@ -9,6 +9,10 @@
|
|
9 |
font-size: 1em;
|
10 |
}
|
11 |
|
|
|
|
|
|
|
|
|
12 |
h2.wprm-recipe-name,
|
13 |
h3.wprm-recipe-header,
|
14 |
h4.wprm-recipe-group-name {
|
9 |
font-size: 1em;
|
10 |
}
|
11 |
|
12 |
+
*:before, *:after {
|
13 |
+
display: none;
|
14 |
+
}
|
15 |
+
|
16 |
h2.wprm-recipe-name,
|
17 |
h3.wprm-recipe-header,
|
18 |
h4.wprm-recipe-group-name {
|
templates/recipe/tastefully-simple/tastefully-simple.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wprm-print .wprm-recipe-tastefully-simple,.wprm-recipe-container .wprm-recipe-tastefully-simple{font:12px Verdana,Arial,Geneva,sans-serif;border:1px dashed #666;padding:10px}.wprm-print .wprm-recipe-tastefully-simple div,.wprm-print .wprm-recipe-tastefully-simple li,.wprm-print .wprm-recipe-tastefully-simple ol,.wprm-print .wprm-recipe-tastefully-simple p,.wprm-print .wprm-recipe-tastefully-simple span,.wprm-print .wprm-recipe-tastefully-simple ul,.wprm-recipe-container .wprm-recipe-tastefully-simple div,.wprm-recipe-container .wprm-recipe-tastefully-simple li,.wprm-recipe-container .wprm-recipe-tastefully-simple ol,.wprm-recipe-container .wprm-recipe-tastefully-simple p,.wprm-recipe-container .wprm-recipe-tastefully-simple span,.wprm-recipe-container .wprm-recipe-tastefully-simple ul{margin:0;padding:0;line-height:inherit}.wprm-print .wprm-recipe-tastefully-simple svg,.wprm-recipe-container .wprm-recipe-tastefully-simple svg{vertical-align:middle;width:16px;height:16px;margin:0}.wprm-print .wprm-recipe-tastefully-simple .wprm-clear-left,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-clear-left{clear:left;line-height:0;height:0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container{float:right;max-width:40%;text-align:right}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating{margin-bottom:5px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details{font:10px "Trebuchet MS",Arial,Helvetica,sans-serif}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-image,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-image{margin-left:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons{margin-top:10px;text-align:center}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons .wprm-recipe-print,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons .wprm-recipe-print{font-size:11px;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:.4em 1em}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-name,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-name{font:150% Verdana,Geneva,sans-serif;margin-bottom:15px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-times-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-times-container{border-top:1px dotted #666;border-bottom:1px dotted #666;width:60%;padding-top:5px;padding-bottom:5px;margin-bottom:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container{width:33%;text-align:center;float:left;font-weight:700;border-left:1px solid #ccc}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container:first-child,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container:first-child{border-left:none}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time-header,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time-header{margin-bottom:4px;word-break:break-all}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time{font-size:10px;font-weight:400}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-details-container,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-ingredients-container,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-summary,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-summary p,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-details-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-ingredients-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-summary,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-summary p{margin-bottom:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-header,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-header{font-size:1.4em;font-weight:700;margin-top:1em;margin-bottom:1em}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-group-name,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-group-name{margin-top:3px;margin-bottom:3px;font-weight:700}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-ingredients li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-ingredients li{list-style:disc inside;margin-left:10px;line-height:inherit;background:0 0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-instructions li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-instructions li{list-style:decimal;margin-left:30px;line-height:inherit;background:0 0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ul li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ul li{list-style:disc inside;margin-left:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ol li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ol li{list-style:decimal;margin-left:30px}.wprm-print .wprm-recipe-tastefully-simple{max-width:750px;margin:0 auto}
|
1 |
+
.wprm-print .wprm-recipe-print,.wprm-print .wprm-recipe-tastefully-simple :after,.wprm-print .wprm-recipe-tastefully-simple :before,.wprm-recipe-container .wprm-recipe-tastefully-simple :after,.wprm-recipe-container .wprm-recipe-tastefully-simple :before{display:none}.wprm-print .wprm-recipe-tastefully-simple,.wprm-recipe-container .wprm-recipe-tastefully-simple{font:12px Verdana,Arial,Geneva,sans-serif;border:1px dashed #666;padding:10px}.wprm-print .wprm-recipe-tastefully-simple div,.wprm-print .wprm-recipe-tastefully-simple li,.wprm-print .wprm-recipe-tastefully-simple ol,.wprm-print .wprm-recipe-tastefully-simple p,.wprm-print .wprm-recipe-tastefully-simple span,.wprm-print .wprm-recipe-tastefully-simple ul,.wprm-recipe-container .wprm-recipe-tastefully-simple div,.wprm-recipe-container .wprm-recipe-tastefully-simple li,.wprm-recipe-container .wprm-recipe-tastefully-simple ol,.wprm-recipe-container .wprm-recipe-tastefully-simple p,.wprm-recipe-container .wprm-recipe-tastefully-simple span,.wprm-recipe-container .wprm-recipe-tastefully-simple ul{margin:0;padding:0;line-height:inherit}.wprm-print .wprm-recipe-tastefully-simple svg,.wprm-recipe-container .wprm-recipe-tastefully-simple svg{vertical-align:middle;width:16px;height:16px;margin:0}.wprm-print .wprm-recipe-tastefully-simple .wprm-clear-left,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-clear-left{clear:left;line-height:0;height:0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container{float:right;max-width:40%;text-align:right}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating{margin-bottom:5px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-rating .wprm-recipe-rating-details{font:10px "Trebuchet MS",Arial,Helvetica,sans-serif}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-image,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-image{margin-left:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons{margin-top:10px;text-align:center}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons .wprm-recipe-print,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-buttons .wprm-recipe-print{font-size:11px;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;padding:.4em 1em}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-name,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-name{font:150% Verdana,Geneva,sans-serif;margin-bottom:15px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-times-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-times-container{border-top:1px dotted #666;border-bottom:1px dotted #666;width:60%;padding-top:5px;padding-bottom:5px;margin-bottom:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container{width:33%;text-align:center;float:left;font-weight:700;border-left:1px solid #ccc}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container:first-child,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container:first-child{border-left:none}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time-header,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time-header{margin-bottom:4px;word-break:break-all}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-time-container .wprm-recipe-time{font-size:10px;font-weight:400}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-details-container,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-ingredients-container,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-summary,.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-summary p,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-details-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-ingredients-container,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-summary,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-summary p{margin-bottom:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-header,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-header{font-size:1.4em;font-weight:700;margin-top:1em;margin-bottom:1em}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-group-name,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-group-name{margin-top:3px;margin-bottom:3px;font-weight:700}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-ingredients li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-ingredients li{list-style:disc inside;margin-left:10px;line-height:inherit;background:0 0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-instructions li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-instructions li{list-style:decimal;margin-left:30px;line-height:inherit;background:0 0}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ul li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ul li{list-style:disc inside;margin-left:10px}.wprm-print .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ol li,.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-notes-container ol li{list-style:decimal;margin-left:30px}.wprm-print .wprm-recipe-tastefully-simple{max-width:750px;margin:0 auto}@media only screen and (max-width:480px){.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container{float:none;width:100%;max-width:none;text-align:center;margin-bottom:10px}.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-image-container .wprm-recipe-image{margin-left:0}.wprm-recipe-container .wprm-recipe-tastefully-simple .wprm-recipe-times-container{width:100%}}
|
templates/recipe/tastefully-simple/tastefully-simple.scss
CHANGED
@@ -15,6 +15,10 @@
|
|
15 |
line-height: inherit;
|
16 |
}
|
17 |
|
|
|
|
|
|
|
|
|
18 |
svg {
|
19 |
vertical-align: middle;
|
20 |
width: 16px;
|
15 |
line-height: inherit;
|
16 |
}
|
17 |
|
18 |
+
*:before, *:after {
|
19 |
+
display: none;
|
20 |
+
}
|
21 |
+
|
22 |
svg {
|
23 |
vertical-align: middle;
|
24 |
width: 16px;
|
wp-recipe-maker.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: WP Recipe Maker
|
16 |
* Plugin URI: http://bootstrapped.ventures/wp-recipe-maker/
|
17 |
* Description: The easy and user-friendly recipe plugin for everyone. Automatic JSON-LD metadata for better SEO will get you more visitors!
|
18 |
-
* Version: 1.
|
19 |
* Author: Bootstrapped Ventures
|
20 |
* Author URI: http://bootstrapped.ventures/
|
21 |
* License: GPL-2.0+
|
15 |
* Plugin Name: WP Recipe Maker
|
16 |
* Plugin URI: http://bootstrapped.ventures/wp-recipe-maker/
|
17 |
* Description: The easy and user-friendly recipe plugin for everyone. Automatic JSON-LD metadata for better SEO will get you more visitors!
|
18 |
+
* Version: 1.17.0
|
19 |
* Author: Bootstrapped Ventures
|
20 |
* Author URI: http://bootstrapped.ventures/
|
21 |
* License: GPL-2.0+
|