File size: 4,952 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import type { TranslationStrings } from '../types';

const packing: TranslationStrings = {
  'packing.title': 'Packing List',
  'packing.empty': 'Packing list is empty',
  'packing.import': 'Import',
  'packing.importTitle': 'Import Packing List',
  'packing.importHint':
    'One item per line. Format: Category, Name, Weight in g (optional), Bag (optional), checked/unchecked (optional)',
  'packing.importPlaceholder':
    'Hygiene, Toothbrush\nClothing, T-Shirts, 200\nDocuments, Passport, , Carry-on\nElectronics, Charger, 50, Suitcase, checked',
  'packing.importCsv': 'Load CSV/TXT',
  'packing.importAction': 'Import {count}',
  'packing.importSuccess': '{count} items imported',
  'packing.importError': 'Import failed',
  'packing.importEmpty': 'No items to import',
  'packing.progress': '{packed} of {total} packed ({percent}%)',
  'packing.clearChecked': 'Remove {count} checked',
  'packing.clearCheckedShort': 'Remove {count}',
  'packing.suggestions': 'Suggestions',
  'packing.suggestionsTitle': 'Add Suggestions',
  'packing.allSuggested': 'All suggestions added',
  'packing.allPacked': 'All packed!',
  'packing.addPlaceholder': 'Add new item...',
  'packing.categoryPlaceholder': 'Category...',
  'packing.filterAll': 'All',
  'packing.filterOpen': 'Open',
  'packing.filterDone': 'Done',
  'packing.emptyTitle': 'Packing list is empty',
  'packing.emptyHint': 'Add items or use the suggestions',
  'packing.emptyFiltered': 'No items match this filter',
  'packing.menuRename': 'Rename',
  'packing.menuCheckAll': 'Check All',
  'packing.menuUncheckAll': 'Uncheck All',
  'packing.menuDeleteCat': 'Delete Category',
  'packing.noMembers': 'No trip members',
  'packing.addItem': 'Add item',
  'packing.addItemPlaceholder': 'Item name...',
  'packing.addCategory': 'Add category',
  'packing.newCategoryPlaceholder': 'Category name (e.g. Clothing)',
  'packing.applyTemplate': 'Apply template',
  'packing.template': 'Template',
  'packing.templateApplied': '{count} items added from template',
  'packing.templateError': 'Failed to apply template',
  'packing.saveAsTemplate': 'Save as template',
  'packing.templateName': 'Template name',
  'packing.templateSaved': 'Packing list saved as template',
  'packing.bags': 'Bags',
  'packing.noBag': 'Unassigned',
  'packing.totalWeight': 'Total weight',
  'packing.bagName': 'Bag name...',
  'packing.addBag': 'Add bag',
  'packing.changeCategory': 'Change Category',
  'packing.confirm.clearChecked':
    'Are you sure you want to remove {count} checked items?',
  'packing.confirm.deleteCat':
    'Are you sure you want to delete the category "{name}" with {count} items?',
  'packing.defaultCategory': 'Other',
  'packing.toast.saveError': 'Failed to save',
  'packing.toast.deleteError': 'Failed to delete',
  'packing.toast.renameError': 'Failed to rename',
  'packing.toast.addError': 'Failed to add',
  'packing.suggestions.items': [
    {
      name: 'Passport',
      category: 'Documents',
    },
    {
      name: 'ID Card',
      category: 'Documents',
    },
    {
      name: 'Travel Insurance',
      category: 'Documents',
    },
    {
      name: 'Flight Tickets',
      category: 'Documents',
    },
    {
      name: 'Credit Card',
      category: 'Finances',
    },
    {
      name: 'Cash',
      category: 'Finances',
    },
    {
      name: 'Visa',
      category: 'Documents',
    },
    {
      name: 'T-Shirts',
      category: 'Clothing',
    },
    {
      name: 'Pants',
      category: 'Clothing',
    },
    {
      name: 'Underwear',
      category: 'Clothing',
    },
    {
      name: 'Socks',
      category: 'Clothing',
    },
    {
      name: 'Jacket',
      category: 'Clothing',
    },
    {
      name: 'Sleepwear',
      category: 'Clothing',
    },
    {
      name: 'Swimwear',
      category: 'Clothing',
    },
    {
      name: 'Rain Jacket',
      category: 'Clothing',
    },
    {
      name: 'Comfortable Shoes',
      category: 'Clothing',
    },
    {
      name: 'Toothbrush',
      category: 'Toiletries',
    },
    {
      name: 'Toothpaste',
      category: 'Toiletries',
    },
    {
      name: 'Shampoo',
      category: 'Toiletries',
    },
    {
      name: 'Deodorant',
      category: 'Toiletries',
    },
    {
      name: 'Sunscreen',
      category: 'Toiletries',
    },
    {
      name: 'Razor',
      category: 'Toiletries',
    },
    {
      name: 'Charger',
      category: 'Electronics',
    },
    {
      name: 'Power Bank',
      category: 'Electronics',
    },
    {
      name: 'Headphones',
      category: 'Electronics',
    },
    {
      name: 'Travel Adapter',
      category: 'Electronics',
    },
    {
      name: 'Camera',
      category: 'Electronics',
    },
    {
      name: 'Pain Medication',
      category: 'Health',
    },
    {
      name: 'Band-Aids',
      category: 'Health',
    },
    {
      name: 'Disinfectant',
      category: 'Health',
    },
  ],
};
export default packing;