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;