blob: 6ab314c530aef2759cf65439d1630dab9a748927 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
// Headings
$_['heading_title'] = 'Etsy links';
$_['text_openbay'] = 'OpenBay Pro';
$_['text_etsy'] = 'Etsy';
// Text
$_['text_loading'] = 'Loading items';
$_['text_new_link'] = 'Create new link';
$_['text_current_links'] = 'Current links';
$_['text_link_saved'] = 'Item has been linked';
$_['text_no_links'] = 'You have no products linked to Etsy items';
// Columns
$_['column_product'] = 'Product name';
$_['column_item_id'] = 'Etsy ID';
$_['column_store_stock'] = 'Stock';
$_['column_etsy_stock'] = 'Etsy Stock';
$_['column_status'] = 'Link Status';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Product name';
$_['entry_etsy_id'] = 'Etsy item ID';
// Error
$_['error_product'] = 'Product does not exist in your store';
$_['error_stock'] = 'You cannot link an item that has no stock';
$_['error_product_id'] = 'Product ID required';
$_['error_etsy_id'] = 'Etsy item ID required';
$_['error_link_id'] = 'Link ID required';
$_['error_link_exists'] = 'An active link already exists for this item';
$_['error_etsy'] = 'Unable to link item, Etsy API response: ';
$_['error_status'] = 'Status filter required';
|