mirror of
https://github.com/shadoll/translate.git
synced 2025-12-20 11:32:09 +00:00
61 lines
2.5 KiB
PHP
Executable File
61 lines
2.5 KiB
PHP
Executable File
<?php
|
|
// Headings
|
|
$_['heading_title'] = 'Create new Etsy listing';
|
|
$_['text_title'] = 'Etsy';
|
|
$_['text_openbay'] = 'OpenBay Pro';
|
|
|
|
// Tabs
|
|
$_['tab_additional'] = 'Additional information';
|
|
|
|
// Text
|
|
$_['text_option'] = 'Select option';
|
|
$_['text_category_selected']= 'Category selected';
|
|
$_['text_material_add'] = 'Add Material';
|
|
$_['text_material_remove'] = 'Remove Material';
|
|
$_['text_tag_add'] = 'Add Tag';
|
|
$_['text_tag_remove'] = 'Remove Tag';
|
|
$_['text_created'] = 'Your listing has been created';
|
|
$_['text_listing_id'] = 'Listing ID';
|
|
$_['text_img_upload'] = 'Uploading image';
|
|
$_['text_img_upload_done'] = 'Uploaded image';
|
|
|
|
// Entry
|
|
$_['entry_title'] = 'Product title';
|
|
$_['entry_description'] = 'Description';
|
|
$_['entry_price'] = 'Price';
|
|
$_['entry_non_taxable'] = 'Non taxable';
|
|
$_['entry_category'] = 'Top category';
|
|
$_['entry_sub_category'] = 'Sub category';
|
|
$_['entry_sub_sub_category']= 'Sub-sub category';
|
|
$_['entry_who_made'] = 'Who made it?';
|
|
$_['entry_when_made'] = 'When was it made?';
|
|
$_['entry_recipient'] = 'Who is it for?';
|
|
$_['entry_occasion'] = 'What occasion is it for?';
|
|
$_['entry_is_supply'] = 'Is this a supply?';
|
|
$_['entry_state'] = 'Listing status';
|
|
$_['entry_style'] = 'Style Tag 1';
|
|
$_['entry_style_2'] = 'Style Tag 2';
|
|
$_['entry_processing_min'] = 'Processing time min';
|
|
$_['entry_processing_max'] = 'Processing time max';
|
|
$_['entry_materials'] = 'Materials';
|
|
$_['entry_tags'] = 'Tags';
|
|
$_['entry_shipping'] = 'Shipping profile';
|
|
$_['entry_shop'] = 'Shop section';
|
|
$_['entry_is_custom'] = 'Can it be customised?';
|
|
$_['entry_image'] = 'Main image';
|
|
$_['entry_image_other'] = 'Other images';
|
|
|
|
// Errors
|
|
$_['error_no_shipping'] = 'You have not setup any shipping profiles!';
|
|
$_['error_no_shop_secton'] = 'You have not setup any shop sections!';
|
|
$_['error_no_img_url'] = 'No image selected for upload';
|
|
$_['error_no_listing_id'] = 'No listing ID supplied';
|
|
$_['error_title_length'] = 'Title is too long';
|
|
$_['error_title_missing'] = 'Title is missing';
|
|
$_['error_desc_missing'] = 'Description is missing or empty';
|
|
$_['error_price_missing'] = 'Price is missing or empty';
|
|
$_['error_category'] = 'Category not selected';
|
|
$_['error_style_1_tag'] = 'Style 1 tag is not valid';
|
|
$_['error_style_2_tag'] = 'Style 2 tag is not valid';
|
|
$_['error_materials'] = 'You can only add 13 materials';
|
|
$_['error_tags'] = 'You can only add 13 tags'; |