diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index aa3699f2..54e66e47 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -59,7 +59,7 @@ protected function validator(array $data) 'unique:users', ], 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], - 'password' => ['required', 'string', 'min:8', 'confirmed'], + 'password' => ['required', 'string', 'min:12', 'confirmed'], ]); } diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 5be64ef9..4d80ff71 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -4,6 +4,9 @@ use Auth; use Illuminate\Http\Request; +use Illuminate\Support\Facades\Hash; +use Illuminate\Validation\Rule; +use Illuminate\Auth\Events\Registered; class ProfileController extends Controller { @@ -29,6 +32,51 @@ public function profile() return view('profile.index', compact('user')); } + /** + * Let users update their info. + * + * @param \Illuminate\Http\Request $request + * @return \Illuminate\Http\Response + */ + public function update(Request $request) + { + $user = Auth::user(); + $validatedData = $request->validate([ + 'name' => 'required|string|max:255', + 'username' => [ + 'required', + 'string', + 'min:3', + 'max:40', + 'regex:/^[^-_][0-9a-z_-]+$/u', + Rule::unique('users')->ignore($user), + ], + 'email' => ['required', 'string', 'max:255', 'email', Rule::unique('users')->ignore($user)], + 'password' => 'nullable|string|confirmed|min:12', + ]); + + $status = 'ui.auth.update'; + + $user->name = $validatedData['name']; + $user->username = $validatedData['username']; + + if ($user->email != $validatedData['email']) { + // If they've updated their email address, they need to re-verify it. + $user->email = $validatedData['email']; + $user->email_verified_at = NULL; + event(new Registered($user)); + $status = 'ui.auth.verify_update'; + } + + if ($validatedData['password']) { + $user->password = Hash::make($validatedData['password']); + } + + $user->save(); + + return redirect('profile')->with('status', $status); + } + /** * Get a user's closet (owned items). * diff --git a/resources/lang/el/categories.php b/resources/lang/el/categories.php new file mode 100644 index 00000000..2398a46e --- /dev/null +++ b/resources/lang/el/categories.php @@ -0,0 +1,30 @@ + '', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => '', + 'shoes' => '', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => '', + 'op' => '', +]; diff --git a/resources/lang/el/features.php b/resources/lang/el/features.php new file mode 100644 index 00000000..e458d8a8 --- /dev/null +++ b/resources/lang/el/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/el/tags.php b/resources/lang/el/tags.php new file mode 100644 index 00000000..d4c69202 --- /dev/null +++ b/resources/lang/el/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '', + 'grass' => '', + 'elephants' => '', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => '', + 'beds' => '', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => '', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '', + 'snow-white' => '', + 'sheep' => '', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => '', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => '', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => '', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => '', + 'christmas' => '', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => '', + 'denim' => '', + 'bubbles' => '', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '', + 'mushrooms' => '', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => '', + 'glossy' => '', + 'violins' => '', + 'houndstooth' => '', + 'perfumes' => '', + 'circus' => '', + 'chairs' => '', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => '', + 'anchors' => '', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => '', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => '', + 'balloons' => '', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => '', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => '', + 'bunnybears' => '', + 'clouds' => '', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => '', + 'cutlery' => '', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => '', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => '', + 'musical-notes' => '', + 'clocks' => '', + 'bouquets' => '', + 'swans' => '', + 'cakes' => '', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => '', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => '', + 'roses' => '', + 'solid' => '', +]; diff --git a/resources/lang/en/ui.php b/resources/lang/en/ui.php index d5e91042..b875e9ff 100644 --- a/resources/lang/en/ui.php +++ b/resources/lang/en/ui.php @@ -22,7 +22,9 @@ 'verify_txt1' => "You'll need to verify your email before you proceed.", 'verify_txt2' => "Not got an email yet? Click the button below to resend it.", 'verify_resend' => 'Resend Email', + 'verify_update' => 'Changes have been saved! Because you updated your email, you will need to verify the new email. A fresh verification link has been sent to your new email address.', + 'update' => 'Changes have been saved!', 'register' => 'Register', 'name' => 'Name', 'username' => 'Username', diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index a65914f9..f3ee12fc 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -13,110 +13,116 @@ | */ - 'accepted' => 'The :attribute must be accepted.', - 'active_url' => 'The :attribute is not a valid URL.', - 'after' => 'The :attribute must be a date after :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', - 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', - 'alpha_num' => 'The :attribute may only contain letters and numbers.', - 'array' => 'The :attribute must be an array.', - 'before' => 'The :attribute must be a date before :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', - 'between' => [ - 'numeric' => 'The :attribute must be between :min and :max.', - 'file' => 'The :attribute must be between :min and :max kilobytes.', - 'string' => 'The :attribute must be between :min and :max characters.', - 'array' => 'The :attribute must have between :min and :max items.', - ], - 'boolean' => 'The :attribute field must be true or false.', 'confirmed' => 'The :attribute confirmation does not match.', - 'date' => 'The :attribute is not a valid date.', - 'date_equals' => 'The :attribute must be a date equal to :date.', - 'date_format' => 'The :attribute does not match the format :format.', - 'different' => 'The :attribute and :other must be different.', - 'digits' => 'The :attribute must be :digits digits.', - 'digits_between' => 'The :attribute must be between :min and :max digits.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', 'email' => 'The :attribute must be a valid email address.', - 'ends_with' => 'The :attribute must end with one of the following: :values.', - 'exists' => 'The selected :attribute is invalid.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field must have a value.', - 'gt' => [ - 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', - 'array' => 'The :attribute must have more than :value items.', - ], - 'gte' => [ - 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', - 'array' => 'The :attribute must have :value items or more.', - ], - 'image' => 'The :attribute must be an image.', - 'in' => 'The selected :attribute is invalid.', - 'in_array' => 'The :attribute field does not exist in :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => 'The :attribute must be a valid JSON string.', - 'lt' => [ - 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', - 'array' => 'The :attribute must have less than :value items.', - ], - 'lte' => [ - 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', - 'array' => 'The :attribute must not have more than :value items.', - ], 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', - 'file' => 'The :attribute may not be greater than :max kilobytes.', 'string' => 'The :attribute may not be greater than :max characters.', - 'array' => 'The :attribute may not have more than :max items.', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', ], - 'mimes' => 'The :attribute must be a file of type: :values.', - 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => 'The selected :attribute is invalid.', - 'not_regex' => 'The :attribute format is invalid.', - 'numeric' => 'The :attribute must be a number.', - 'password' => 'The password is incorrect.', - 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values are present.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', - 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', - ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.', - 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', - 'uuid' => 'The :attribute must be a valid UUID.', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', /* |-------------------------------------------------------------------------- @@ -129,11 +135,11 @@ | */ - 'custom' => [ - 'attribute-name' => [ - 'rule-name' => 'custom-message', - ], - ], + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], /* |-------------------------------------------------------------------------- @@ -146,6 +152,6 @@ | */ - 'attributes' => [], + // 'attributes' => [], ]; diff --git a/resources/lang/fr/categories.php b/resources/lang/fr/categories.php new file mode 100644 index 00000000..933b7ea2 --- /dev/null +++ b/resources/lang/fr/categories.php @@ -0,0 +1,30 @@ + 'Cape', + 'publications' => 'Ouvrages', + 'hair-accessories' => 'Accessoires de tête', + 'corsetbustier' => 'Corcet/Bustier', + 'unmentionables' => 'Sous-vêtements', + 'cutsew' => 'Cutsew', + 'petticoat' => 'Jupon', + 'vest' => 'Veston', + 'cardigan' => 'Gilet', + 'blouse' => 'Chemisier/Blouse', + 'accessories' => 'Accesoires', + 'bolero' => 'Boléro', + 'other' => 'Autre', + 'bloomers' => 'Bloomers/Sous-vêtements', + 'apron' => 'Tablier', + 'socks' => 'Chaussettes/collants', + 'jsk' => 'JSK (robe sans manches)', + 'umbrellas-parasols' => 'Ombrelles/Parapluies', + 'salopette' => 'Salopette', + 'pants' => 'Pantalon', + 'skirt' => 'Jupe', + 'shoes' => 'Chaussures', + 'coats' => 'Manteaux', + 'bags' => 'Sacs', + 'jewelry' => 'Bijoux', + 'sets' => 'Assortiments/Sets', + 'op' => 'OP', +]; diff --git a/resources/lang/fr/features.php b/resources/lang/fr/features.php new file mode 100644 index 00000000..13290eb8 --- /dev/null +++ b/resources/lang/fr/features.php @@ -0,0 +1,63 @@ + 'Type: Chaussures de ville', + 'open-heel' => 'Escarpins', + 'ankle-boot' => 'Type: Bottines', + 'open-toe' => 'À bout ouvert', + 'wedge' => 'Talon compensé', + 'kimono-sleeves' => 'Manches Kimono', + 'frog-closure' => 'Attache Brandebourg', + 'sandal' => 'Type: Sandale', + 'style-boot' => 'Type: Bottes', + 'shoes-lacing' => 'Lacets/Laçage', + 'platform' => 'Plateforme', + 'underbust' => 'Sous-poitrine', + 'detachable-yoke' => 'Empiècement amovible (buste)', + 'detachable-strap' => 'Bretelle/anse amovible', + 'detachable-apron' => 'Tablier amovible', + 'convertible-straps' => 'Bretelles convertibles', + 'halter-neckline' => 'Dos nu', + 'capelet' => 'Cape courte/capeline', + 'tucks' => 'Nervures horizontales', + 'jabot' => 'Jabot', + 'sailor-collar' => 'Col Marin', + 'no-sleeves' => 'Sans manche', + 'hood' => 'Capuche', + 'dropped-waist' => 'Taille basse (hanches)', + 'boning' => 'Armatures', + 'removable-collar' => 'Col amovible', + 'built-in-petticoat' => 'Jupon intégré', + 'removable-belt' => 'Ceinture amovible', + 'detachable-sleeves' => 'Manches amovibles', + 'princess-sleeves' => 'Manches princesse', + 'corset-lace-(decorative)' => 'Laçage décoratif', + 'removable-sash' => 'Écharpe amovible', + 'empire-waist' => 'Taille empire', + 'neck-ties' => 'Bretelles tour de cou', + 'scalloped' => 'Festonné', + 'bustled' => 'Tournure', + 'buttoned-front' => 'Boutonnière avant', + 'detachable-trim' => 'Bordure décorée amovible', + 'back zip' => 'Fermeture éclair arrière', + 'pleats' => 'Plis', + 'elasticized-cuffs' => 'Manches élastiquées', + 'high-neck-collar' => 'Col haut', + 'adjustable-straps' => 'Bretelles ajustables', + 'full-shirring' => 'Totalement élastiqué.e', + 'pintucks' => 'Nervures', + 'buttoned-cuffs' => 'Poignets boutonnés', + 'peter-pan-collar' => 'Col Claudine', + 'back-shirring' => 'Dos élastiqué', + 'high-waist' => 'Taille haute', + 'pockets' => 'Poches', + 'tiered-skirt' => 'Jupe à volants', + 'side-zip' => 'Fermeture éclair sur le côté', + 'detachable-waist-ties' => 'Waist ties amovibles', + 'partial-shirring' => 'Partiellement élastiqué', + 'short-sleeves' => 'Manches courtes', + 'detachable-bow' => 'Noeud amovible', + 'corset-lacing' => 'Laçage', + 'long-sleeves' => 'Manches longues', + 'no-shirring' => 'Non élastiqué', + 'lining' => 'Doublure', +]; diff --git a/resources/lang/fr/tags.php b/resources/lang/fr/tags.php new file mode 100644 index 00000000..56e15a05 --- /dev/null +++ b/resources/lang/fr/tags.php @@ -0,0 +1,391 @@ + 'Marque Indépendante : Little Chili Shop', + 'cloud-chamber' => 'Marque Indépendante : Cloud Chamber', + 'shotgun-wedding' => 'Sous-marque : Shotgun Wedding', + 'aguglieria' => 'Sous-marque : Aguglieria', + 'white-moon' => 'Marque Indépendante : White Moon', + 'lethes-castle' => 'Marque Indépendante : Lethe\'s Castle', + 'swimmer' => 'Marque Indépendante : SWIMMER', + 'strawberry-on-the-shortcake' => 'Marque Indépendante : Strawberry on the Shortcake', + 'recalled' => 'Articles Rappelés', + 'mystery-garden' => 'Marque Indépendante : Mystery Garden', + 'peter-pan' => 'Peter Pan', + 'bathrooms' => 'Salles de bain', + 'orchestra' => 'Orchestre', + 'rose-trianon' => 'Marque Indépendante : Rose Trianon', + 'morun-x-muuna-stoik' => 'Marque Indépendante : Morun x Muuna Stoik', + 'were-all-mad-here' => 'Marque Indépendante : We\'re All Mad Here', + 'doves' => 'Colombes', + 'ma' => 'Sous-marque : MA', + 'gloomy-bear' => 'Gloomy Bear', + 'boguta' => 'Marque Indépendante : Boguta', + 'kuragehime' => 'Kuragehime', + 'sunglasses' => 'Lunettes de soleil', + 'brand-classical-lolita' => 'Marque Indépendante : Classical Lolita', + 'the-snow-field' => 'Marque Indépendante : The Snow Field', + 'spica' => 'Marque Indépendante : Spica', + 'leur-getter' => 'Marque Indépendante : Leur Getter', + 'puppets' => 'Marionnettes', + 'mew' => 'Marque Indépendante : Mew', + 'cherie-cerise' => 'Marque Indépendant : Cherie Cerise', + 'phantom-of-the-opera' => 'Le Fantôme de l\'Opéra', + 'uf' => 'Marque Indépendante : Uf', + 'pretty' => 'Marque Indépendante : Pretty/Pretty Scandal', + 'hands' => 'Mains', + 'sole-cork' => 'Semelle : Liège', + 'purses-print' => 'Imprimé Sacs à main', + 'sole-foam' => 'Semelle : Mousse', + 'blood' => 'Sang', + 'shoe-clips' => 'Objet : Pinces à Chaussures', + 'ange' => 'Marque Indépendante : Ange', + 'gramm' => 'Marque Indépendante : GRAMM', + 'dark-box' => 'Sous-marque : Dark Box', + 'nursery-rhymes' => 'Comptines', + 'creamy-mami' => 'Creamy Mami', + 'beauty-and-the-beast' => 'La Belle et la Bête', + 'the-nutcracker' => 'Casse-Noisette', + 'marchenmerry' => 'Marque Indépendante : Marchenmerry', + 'vallee-lys' => 'Sous-marque : Vallee Lys', + 'A-Plus-Lidel' => 'Marque Indépendante : A+Lidel', + 'abilletage' => 'Marque Indépendante : abilletage', + 'gilet' => 'Article : Gilet', + 'magic-potion' => 'Marque Indépendante : Magic Potion', + 'dear-margaret' => 'Marque Indépendante : Dear Margaret', + 'lipsticks' => 'Rouges à lèvres', + 'hmhm' => 'Marque Indépendante : HMHM', + 'kazuko-ogawa' => 'Marque Indépendante : Kazuko Ogawa', + 'elpress-l' => 'Marque Indépendante : Elpress L', + 'the-little-mermaid' => 'La Petite Sirène', + 'ptmy' => 'Sous-marque : PtMY (Putumayo)', + 'camo' => 'Motif : Camouflage', + 'weddings' => 'Mariages', + 'lustyn-wonderland' => 'Marque Indépendante : Lusty\'n Wonderland', + 'kidsyoyo' => 'Marque Indépendante : KidsYoyo', + 'dolphins' => 'Dauphins', + 'grass' => 'Herbe', + 'elephants' => 'Éléphants', + 'toile' => 'Motif : Toile', + 'axes-femme-poetique' => 'Sous-marque : Axes Femme Poetique', + 'eyes' => 'Yeux', + 'doors' => 'Portes', + 'pina-sweetcollection' => 'Marque Indépendante : Pina Sweetcollection', + 'pillows' => 'Oreillers', + 'snow-globes' => 'Boules à neiges', + 'suede' => 'Finitions : Daim', + 'rapunzel' => 'Raiponce', + 'sensitive-content' => 'Contenu Sensible', + 'sleeping-beauty' => 'Belle au bois dormant', + 'harps' => 'Harpes', + 'beds' => 'Lits', + 'canvas' => 'Tissu : Toile', + 'seraphim' => 'Marque indépendante : Seraphim', + 'little-dipper' => 'Marque indépendante : Little Dipper', + 'schwarz-schmetterling' => 'Marque Indépendante : Schwarz Schmetterling', + 'dandy-pupps' => 'Marque Indépendante : Dandy Puppeteer', + 'easter' => 'Pâques', + 'visible' => 'Marque Indépendante : Visible', + 'Na-Plus-H' => 'Marque Indépendante : Na+H', + 'laurels' => 'Lauriers', + 'print-replica' => 'Réplique de l\'Impression', + 'long-ears' => 'Marque Indépendante : Long Ears Sharp Ears', + 'chocochip-cookie' => 'Marque Indépendante : Chocochip Cookie', + 'dolly-house' => 'Marque Indépendante : Dolly House', + 'theatre' => 'Théâtre', + 'pegasus' => 'Pégase', + 'vierge-vampur' => 'Marque Indépendante : Vierge Vampur', + 'raspberries' => 'Framboises', + 'miss-point' => 'Marque Indépendante : Miss Point', + 'pumpkin-cat' => 'Marque Indépendante : Pumpkin Cat', + 'arm-warmers' => 'Article : Mitaines ou Manchettes', + 'me-likes-tea' => 'Marque Indépendante : Me Likes Tea', + 'fantastic-wind' => 'Marque Indépendante : Fantastic Wind', + 'baroque' => 'Marque Indépendante : Baroque', + 'arcadian-deer' => 'Marque Indépendante : Arcadian Deer', + 'staircases' => 'Escaliers', + 'strawberry-witch' => 'Marque Indépendante : Strawberry Witch', + 'to-alice' => 'Marque Indépendante : To Alice', + 'horoscope-astrology' => 'Horoscope/Astrologie', + 'tarot' => 'Tarot', + 'sweet-mildred' => 'Marque Indépendante : Sweet Mildred', + 'novala-takemoto' => 'Designer: Novala Takemoto', + 'eat-me-ink-me' => 'Marque Indépendante : Eat Me Ink Me', + 'lamps-not-chandeliers' => 'Lampes', + 'swan-lake' => 'Lac des cygnes', + 'spiders' => 'Araignées', + 'cinderella' => 'Cendrillon', + 'curtains-drapes' => 'Rideaux/Drapés', + 'tournewsoul' => 'Marque Indépendante : TourNewSoul', + 'gradient' => 'Motif : Dégradé', + 'lollipops' => 'Sucettes', + 'r-r-memorandum' => 'Marque indépendante : R. R. Memorandum', + 'sole-wood' => 'Semelle : Bois', + 'pies' => 'Tartes', + 'umbrellas' => 'Parapluies', + 'corduroy' => 'Tissu : Velours côtélé', + 'plates' => 'Assiettes', + 'mice' => 'Souris', + 'fur' => 'Tissu : Fourrure', + 'chocomint' => 'Marque Indépendante : Chocomint', + 'jams' => 'Confitures', + 'automatic-honey' => 'Marque Indépendante : Automatic Honey', + 'numbers' => 'Nombres', + 'mermaids' => 'Sirènes', + 'cosmetics' => 'Cosmétiques', + 'classical-puppets' => 'Marque Indépendante : Classical Puppets', + 'marchen-die-prinzessin' => 'Marque Indépendante : Marchen die Prinzessin', + 'r-series' => 'Marque Indépendante : R Series', + 'fairy-wish' => 'Marque Indépendante : Fairy Wish', + 'foxes' => 'Renards', + 'snow-white' => 'Blanche Neige', + 'sheep' => 'Moutons', + 'arts' => 'Arts', + 'fans' => 'Éventails', + 'imai-kira' => 'Designer : Imai Kira', + 'belladonna' => 'Marque Indépendante : Belladonna', + 'treasures' => 'Coffres à trésors', + 'violet fane' => 'Marque Indépendante : Violet Fane', + 'fairies' => 'Fées', + 'wolves' => 'Loups', + 'eiffel-tower' => 'Tour Eiffel', + 'argyle' => 'Motif : Argyle (losanges)', + 'masks' => 'Masques', + 'sanrio' => 'Sanrio', + 'clothing-and-shoe-prints' => 'Imprimé de vêtements et de chaussures', + 'flags' => 'Drapeaux', + 'nurse' => 'Style : Infirmière', + 'lullaby' => 'Marque Indépendante : Sing a Lullaby for You', + 'gardens' => 'Jardins', + 'fanplusfriend' => 'Marque Indépendante : Fanplusfriend', + 'pirates' => 'Pirates', + 'gears' => 'Engrenages', + 'diamond-honey' => 'Marque Indépendante : Diamond Honey', + 'replica' => 'Réplique', + 'magic-tea-party' => 'Marque Indépendante : Magic Tea Party', + 'russian-indie' => 'Marque Indépendante Russe', + 'dear-celine' => 'Marque Indépendante : Dear Celine', + 'royal-princess-alice' => 'Marque Indépendante : Royal Princess Alice', + 'forest' => 'Forêt', + 'spiderwebs' => 'Toiles d\'araignée', + 'doughnuts' => 'Beignets', + 'melody-basket' => 'Marque Indépendante : Melody BasKet', + 'little-red-riding-hood' => 'Le Petit Chaperon Rouge', + 'disney' => 'Disney', + 'chess' => 'Échecs', + 'pocket-watches' => 'Montre a gousset', + 'ships' => 'Navires', + 'pianos' => 'Pianos', + 'anna-house' => 'Marque Indépendante : Anna House', + 'elegy' => 'Marque Indépendante : Elegy', + 'churches-cathedrals' => 'Églises / Cathédrales', + 'mirrors' => 'Miroirs', + 'christmas' => 'Noël', + 'stained-glass' => 'Vitraux', + 'shoes-print' => 'Imprimé de chaussures', + 'lapin-agill' => 'Sous-marque : Lapin Agill', + 'ballerinas' => 'Ballerines', + 'thorns' => 'Épines', + 'black-ribbon' => 'Marque Indépendante : The Black Ribbon', + 'butcher' => 'Tissu : Lin de boucher', + 'swallow-tail' => 'Détail : Queue de pie', + 'lady-sloth' => 'Marque Indépendante : Lady Sloth', + 'lumiebre' => 'Marque Indépendante : Lumiebre', + 'violets-pansies' => 'Violettes/Pensées', + 'forks' => 'Fourchettes', + 'denim' => 'Tissu : Denim', + 'bubbles' => 'Bulles', + 'lacy' => 'Dentelles', + 'motif-hats' => 'Motif : Chapeaux', + 'lucky-pack' => 'Article : Lucky Pack', + 'squirrels' => 'Écureuils', + 'cherubs' => 'Chérubins', + 'clubs' => 'Enseignes de cartes', + 'ornaments' => 'Décorations de Noël', + 'maid' => 'Style : Servante', + 'dolls' => 'Poupées', + 'mushrooms' => 'Champignons', + 'birdcages' => 'Cages a oiseaux', + 'gates' => 'Portail', + 'lemons' => 'Citrons', + 'coffins' => 'Cercueils', + 'glossy' => 'Fini : Brillant/Vernis', + 'violins' => 'Violons', + 'houndstooth' => 'Motif : Pied de poule', + 'perfumes' => 'Parfums', + 'circus' => 'Cirques', + 'chairs' => 'Chaises', + 'whipped-cream' => 'Crème fouettée', + 'unicorns' => 'Licornes', + 'spades' => 'Piques', + 'seashells' => 'Coquillages', + 'damask' => 'Motif : Damas', + 'lions' => 'Lions', + 'anchors' => 'Ancres', + 'animal-print' => 'Motif : Animal', + 'apron' => 'Article : Tablier', + 'veils' => 'Article : Voile', + 'canotier' => 'Article : Canotier', + 'coaches-carriages' => 'Carrosses', + 'snowflakes' => 'Flocons de neige', + 'plastic' => 'Matériau : Plastique', + 'furniture' => 'Meubles', + 'macarons' => 'Macarons', + 'gloves' => 'Article : Gants', + 'mam' => 'Sous-marque : MAM', + 'headdress-hair-accessories-not-a-tag' => 'Headdress Accessoires à Cheveux (Pas Un Tag)', + 'leather' => 'Matériau : Cuir', + 'spoons' => 'Cuillères', + 'witches-magic' => 'Sorcières/Magie', + 'gifts' => 'Cadeaux', + 'crown-label' => 'Sous-marque : Crown Label', + 'windows' => 'Fenêtres', + 'axes-femme-kawaii' => 'Sous-marque : Axes Femme Kawaii', + 'cupcakes' => 'Cupcakes/Muffins', + 'straw-wicker' => 'Matériel : Osier/Paille', + 'rickrack' => 'Détail : Rickrack', + 'jewelry' => 'Bijoux', + 'trees' => 'Arbres', + 'apples' => 'Pommes', + 'balloons' => 'Ballons', + 'buildings' => 'Bâtiments', + 'carousels' => 'Carousels (manèges)', + 'scrunchie' => 'Article : Chouchou / Élastique à cheveux', + 'bottles' => 'Bouteilles', + 'poodles' => 'Caniches', + 'astronomy-space' => 'Astronomie/Espace', + 'marine' => 'Marin', + 'twill' => 'Tissu : Sergé', + 'korean-indie' => 'Marque Indépendante Coréenne', + 'ice-creams' => 'Glaces', + 'white-rabbit' => 'Le Lapin blanc', + 'reindeer-deer-bambi' => 'Renne/Cerf/Bambi', + 'paintings' => 'Peintures', + 'dogs' => 'Chiens/Chiots', + 'chandeliers' => 'Lustres', + 'cups' => 'Tasses', + 'crepe de chine' => 'Tissu : Crêpe de Chine', + 'bracelet' => 'Article : Bracelet', + 'gobelin' => 'Tissu : Gobelin', + 'halloween' => 'Halloween', + 'letters' => 'Lettres/Courriers', + 'instruments' => 'Instruments (de musique)', + 'flocking' => 'Détail : Flocage', + 'candles' => 'Bougies', + 'religious-motifs' => 'Motifs religieux', + 'earrings' => 'Article : Boucles d\'oreilles', + 'daisies' => 'Marguerites', + 'bunnybears' => 'Ours-lapins', + 'clouds' => 'Nuages', + 'sole-rubber' => 'Semelle : Gomme', + 'toys' => 'Jouets', + 'royalty' => 'Royauté', + 'bats' => 'Chauve-souris', + 'desserts' => 'Desserts', + 'playing-cards' => 'Cartes a jouer', + 'skulls' => 'Crânes', + 'cutlery' => 'Couverts', + 'cameos' => 'Camées', + 'music' => 'Musique', + 'tassels' => 'Pampille', + 'books' => 'Livres', + 'military' => 'Style : Militaire', + 'shantung' => 'Tissu : Soie sauvage', + 'pom-pom' => 'Détail : Pompons', + 'fairy-tales' => 'Contes de fée', + 'plants' => 'Plantes', + 'matte' => 'Fini : Mat', + 'lace-print' => 'Motif : imprimé dentelle', + 'applique' => 'Détail : Appliqué', + 'wrist-cuffs' => 'Articles : Manchettes', + 'architectural' => 'Architecture', + 'castles' => 'Châteaux', + 'east-asian' => 'Asie de l\'est', + 'tea' => 'Thé', + 'beads' => 'Perles', + 'acrylic-resin' => 'Matériau : Résine acrylique', + 'jewels' => 'Joyaux', + 'wings' => 'Ailes', + 'musical-notes' => 'Notes de musique', + 'clocks' => 'Horloges', + 'bouquets' => 'Bouquets', + 'swans' => 'Cygnes', + 'cakes' => 'Gâteaux', + 'cookies' => 'Biscuits', + 'food' => 'Nourriture', + 'angels' => 'Anges', + 'pinstripes' => 'Motif : Rayures Verticales', + 'comb' => 'Article : Peigne', + 'choker' => 'Article : Ras-de-cou', + 'feathers' => 'Plumes', + 'chains' => 'Chaînes', + 'bonnets' => 'Article : Bonnet', + 'wool' => 'Tissu : Laine', + 'keys-non-piano' => 'Clés (pas de piano)', + 'chocolates' => 'Chocolats', + 'satin' => 'Tissu : Satin', + 'fleur-de-lis' => 'Fleurs de lys', + 'organdy-organza' => 'Tissu : Organdi / Organza', + 'horses-ponies' => 'Chevaux/Poneys', + 'japanese-indie' => 'Marque Indépendante Japonaise', + 'brooches' => 'Article : Broche', + 'candy' => 'Bonbon', + 'animal-ears' => 'Oreilles d\'animal', + 'regimental-stripes' => 'Motif : Rayures Régimentaires', + 'heraldry' => 'Blasons', + 'burberry' => 'Tissu : Burberry', + 'birds' => 'Oiseaux', + 'knitted' => 'Détail : Tricoté', + 'moons' => 'Lunes', + 'butterflies' => 'Papillons', + 'alice-in-wonderland' => 'Alice au pays des Merveilles', + 'diamonds' => 'Diamants', + 'Tulle' => 'Tissu : Tulle', + 'rings' => 'Article : Bague', + 'trumps' => 'Enseignes (trèfle, cœur, pique, carreau)', + 'jacquard' => 'Tissu : Jacquard', + 'sailor' => 'Style : Marin', + 'cherries' => 'Cerises', + 'synthetic-leather' => 'Tissu : Cuir synthétique', + 'glitter' => 'Détail : Paillettes', + 'fruits' => 'Fruits', + 'abstract-decorative' => 'Décorations abstraites', + 'sweets' => 'Sucreries', + 'broadcloth' => 'Tissu : Drap fin', + 'frames' => 'Cadres', + 'chinese-indie' => 'Marque Indépendante Chinoise', + 'gingham' => 'Motif : Vichy', + 'collaboration' => 'Collaboration', + 'faux-fur' => 'Tissu : Fausse Fourrure', + 'rhinestones' => 'Détail : Strass', + 'western-indie' => 'Marque Indépendante Occidentale', + 'hairclip' => 'Article : Pince à cheveux', + 'item-hat' => 'Article : Chapeau', + 'figures' => 'Personnages', + 'cats' => 'Chats', + 'strawberries' => 'Fraises', + 'bears' => 'Ours', + 'necklace' => 'Articles : Collier', + 'velveteen' => 'Tissu : Velours', + 'motif-ribbons' => 'Motif : Rubans/Noeuds', + 'lace' => 'Tissu : Dentelle', + 'plaids' => 'Motif : Plaid, Tartan', + 'crosses' => 'Croix', + 'rabbits' => 'Lapins', + 'animals' => 'Animaux', + 'stars' => 'Étoiles', + 'chiffon' => 'Tissu : Chiffon', + 'headbands' => 'Article : Serre-tête', + 'embroidery' => 'Détail : Broderie', + 'polka-dots' => 'Motif : Pois', + 'pearls' => 'Perles (nacrées)', + 'crowns' => 'Couronnes', + 'stripes' => 'Motif : Rayures', + 'hearts' => 'Cœurs', + 'detail-bows' => 'Détail : Rubans', + 'incomplete-colorways' => 'Coloris-incomplets', + 'writing' => 'Écritures', + 'florals' => 'Fleurs', + 'partial' => 'Partiel (Informations incomplètes)', + 'roses' => 'Roses', + 'solid' => 'Motif : Solide (OP, JSK & SKs Seulement)', +]; diff --git a/resources/lang/fr/validation.php b/resources/lang/fr/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/fr/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/it/categories.php b/resources/lang/it/categories.php new file mode 100644 index 00000000..0a0329a6 --- /dev/null +++ b/resources/lang/it/categories.php @@ -0,0 +1,30 @@ + 'Mantello', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => 'Altro', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => 'Gonna', + 'shoes' => 'Scarpe', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => 'Set', + 'op' => '', +]; diff --git a/resources/lang/it/features.php b/resources/lang/it/features.php new file mode 100644 index 00000000..2e3ac76d --- /dev/null +++ b/resources/lang/it/features.php @@ -0,0 +1,63 @@ + 'Stile: Oxford', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => 'Maniche A Kimono', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/it/tags.php b/resources/lang/it/tags.php new file mode 100644 index 00000000..f7b21a89 --- /dev/null +++ b/resources/lang/it/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => 'Peter Pan', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => 'Colombe', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => 'Occhiali da sole', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => 'Mani', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => 'Sangue', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => 'La bella e la bestia', + 'the-nutcracker' => 'Lo schiaccianoci', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => 'Rossetti', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => 'Matrimoni', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => 'Delfini', + 'grass' => 'Erba', + 'elephants' => 'Elefanti', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => 'Occhi', + 'doors' => 'Porte', + 'pina-sweetcollection' => '', + 'pillows' => 'Cuscini', + 'snow-globes' => 'Palle di vetro con neve', + 'suede' => '', + 'rapunzel' => 'Raperonzolo', + 'sensitive-content' => '', + 'sleeping-beauty' => 'La bella addormentata', + 'harps' => 'Arpe', + 'beds' => 'Letti', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => 'Pasqua', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => 'Lamponi', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => 'Tarocchi', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => 'Ragni', + 'cinderella' => 'Cenerentola', + 'curtains-drapes' => 'Tende', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => 'Lecca lecca', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => 'Piatti', + 'mice' => 'Topi', + 'fur' => '', + 'chocomint' => '', + 'jams' => 'Marmellate', + 'automatic-honey' => '', + 'numbers' => 'Numeri', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => 'Volpi', + 'snow-white' => 'Biancaneve', + 'sheep' => 'Pecore', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => 'Lupi', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => 'Maschere', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => 'Bandiere', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => 'Pirati', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => 'Ragnatele', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => 'Scacchi', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => 'Specchi', + 'christmas' => 'Natale', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => 'Ballerine', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => 'Forchette', + 'denim' => '', + 'bubbles' => 'Bolle', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => 'Scoiattoli', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => 'Bambole', + 'mushrooms' => 'Funghi', + 'birdcages' => '', + 'gates' => '', + 'lemons' => 'Limoni', + 'coffins' => '', + 'glossy' => '', + 'violins' => 'Violini', + 'houndstooth' => '', + 'perfumes' => 'Profumi', + 'circus' => '', + 'chairs' => 'Sedie', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => 'Conchiglie', + 'damask' => '', + 'lions' => 'Leoni', + 'anchors' => '', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => 'Fiocchi di neve', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => 'Cucchiai', + 'witches-magic' => 'Magia / Streghe', + 'gifts' => '', + 'crown-label' => '', + 'windows' => 'Finestre', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => 'Alberi', + 'apples' => 'Mele', + 'balloons' => 'Palloncini', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => 'Bottiglie', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => 'Gelati', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => 'Dipinti', + 'dogs' => 'Cani/Cuccioli', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => 'Candele', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => 'Margherite', + 'bunnybears' => 'Conigliorsi', + 'clouds' => 'Nuvole', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => 'Pipistrelli', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => 'Teschi', + 'cutlery' => '', + 'cameos' => '', + 'music' => 'Musica', + 'tassels' => '', + 'books' => 'Libri', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => 'Piante', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => 'Ali', + 'musical-notes' => '', + 'clocks' => 'Orologi', + 'bouquets' => '', + 'swans' => '', + 'cakes' => 'Torte', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => '', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => '', + 'roses' => '', + 'solid' => '', +]; diff --git a/resources/lang/it/validation.php b/resources/lang/it/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/it/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/ja/categories.php b/resources/lang/ja/categories.php new file mode 100644 index 00000000..1afb1d2e --- /dev/null +++ b/resources/lang/ja/categories.php @@ -0,0 +1,30 @@ + 'ケープ', + 'publications' => '', + 'hair-accessories' => 'ヘアアクセサリー', + 'corsetbustier' => 'コルセット', + 'unmentionables' => '', + 'cutsew' => 'カットソー', + 'petticoat' => 'パニエ', + 'vest' => 'ベスト', + 'cardigan' => 'カーディガン', + 'blouse' => 'ブラウス', + 'accessories' => 'アクセサリー', + 'bolero' => 'ボレロ', + 'other' => '雑貨', + 'bloomers' => 'ブルマ/ドロワーズ', + 'apron' => 'エプロン', + 'socks' => 'レッグウェア', + 'jsk' => 'ジャンパースカート', + 'umbrellas-parasols' => 'アンブレラ', + 'salopette' => 'サロペット', + 'pants' => 'パンツ', + 'skirt' => 'スカート', + 'shoes' => 'シューズ', + 'coats' => 'コート', + 'bags' => 'バッグ', + 'jewelry' => '', + 'sets' => 'SET', + 'op' => 'ワンピース', +]; diff --git a/resources/lang/ja/features.php b/resources/lang/ja/features.php new file mode 100644 index 00000000..6612878c --- /dev/null +++ b/resources/lang/ja/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => 'ケープ', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => 'ノースリーブ', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '姫袖', + 'corset-lace-(decorative)' => 'スピンドール', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '全ゴム', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '編み上げ', + 'long-sleeves' => '長袖', + 'no-shirring' => '', + 'lining' => '裏地', +]; diff --git a/resources/lang/ja/tags.php b/resources/lang/ja/tags.php new file mode 100644 index 00000000..7e2c4092 --- /dev/null +++ b/resources/lang/ja/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '', + 'grass' => '', + 'elephants' => '', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => '', + 'beds' => '', + 'canvas' => '布: カツラギ', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => '', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '布: コーデュロイ', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '', + 'snow-white' => '', + 'sheep' => '', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => '', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => '', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => '', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => '', + 'christmas' => '', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '布: ブッチャー', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => '', + 'denim' => '', + 'bubbles' => '', + 'lacy' => '', + 'motif-hats' => '柄: ハット', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '', + 'mushrooms' => '', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => '', + 'glossy' => '', + 'violins' => '', + 'houndstooth' => '柄: 千鳥', + 'perfumes' => '', + 'circus' => '', + 'chairs' => '', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => '', + 'anchors' => 'イカリ', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => '', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '布: 本皮', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => '', + 'balloons' => '', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => '', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '布: ツイル', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '布: デシン', + 'bracelet' => '', + 'gobelin' => '布: ゴブラン', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => 'マーガレット', + 'bunnybears' => '', + 'clouds' => '', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => 'どくろ', + 'cutlery' => '', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => 'メルヘン', + 'plants' => '', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => '', + 'musical-notes' => '', + 'clocks' => '', + 'bouquets' => '', + 'swans' => '', + 'cakes' => '', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '布: ウール', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '布: サテン', + 'fleur-de-lis' => 'ユリ紋章', + 'organdy-organza' => '布: オーガンジー', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '布: バーバリー', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '布: チュール', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '布: ジャガード', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '布: 合皮', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '布: ブロード', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '布: フェイクファー', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => 'くま', + 'necklace' => '', + 'velveteen' => '布: 別珍', + 'motif-ribbons' => '柄: リボン', + 'lace' => '布: 総レース', + 'plaids' => '', + 'crosses' => '十字', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '布: シフォン', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '柄: 水玉', + 'pearls' => '', + 'crowns' => '王冠', + 'stripes' => '柄: ボーダー', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '花柄', + 'partial' => '', + 'roses' => '', + 'solid' => '柄: 無地', +]; diff --git a/resources/lang/ja/validation.php b/resources/lang/ja/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/ja/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/nb_NO/categories.php b/resources/lang/nb_NO/categories.php new file mode 100644 index 00000000..2398a46e --- /dev/null +++ b/resources/lang/nb_NO/categories.php @@ -0,0 +1,30 @@ + '', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => '', + 'shoes' => '', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => '', + 'op' => '', +]; diff --git a/resources/lang/nb_NO/features.php b/resources/lang/nb_NO/features.php new file mode 100644 index 00000000..e458d8a8 --- /dev/null +++ b/resources/lang/nb_NO/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/nb_NO/tags.php b/resources/lang/nb_NO/tags.php new file mode 100644 index 00000000..ab2ba53b --- /dev/null +++ b/resources/lang/nb_NO/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => 'Mønster: Kamuflasje', + 'weddings' => 'Bryllup', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => 'Delfiner', + 'grass' => 'Gress', + 'elephants' => 'Elefanter', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => 'Øyne', + 'doors' => 'Dører', + 'pina-sweetcollection' => '', + 'pillows' => 'Puter', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => 'Harper', + 'beds' => 'Senger', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => 'Teater', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => 'Bringebær', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => 'Tarot', + 'sweet-mildred' => '', + 'novala-takemoto' => 'Designer: Novala Takemoto', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => 'Lamper (ikke lysekroner)', + 'swan-lake' => '', + 'spiders' => 'Edderkopper', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => 'Rever', + 'snow-white' => 'Snøhvit', + 'sheep' => 'Sauer', + 'arts' => 'Kunst', + 'fans' => '', + 'imai-kira' => 'Designer: Imai Kira', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => 'Pirater', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => 'Skog', + 'spiderwebs' => 'Spindelvev', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => 'Sjakk', + 'pocket-watches' => 'Lommeur', + 'ships' => 'Skip', + 'pianos' => 'Piano', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => 'Kirker/katedraler', + 'mirrors' => 'Speil', + 'christmas' => 'Jul', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => 'Ballerinaer', + 'thorns' => 'Torner', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => 'Gafler', + 'denim' => '', + 'bubbles' => 'Bobler', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => 'Dukker', + 'mushrooms' => 'Sopp', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => 'Kister', + 'glossy' => '', + 'violins' => 'Fioliner', + 'houndstooth' => '', + 'perfumes' => 'Parfymer', + 'circus' => 'Sirkus', + 'chairs' => 'Stoler', + 'whipped-cream' => '', + 'unicorns' => 'Enhjørninger', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => 'Løver', + 'anchors' => 'Anker', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => 'Snøflak', + 'plastic' => 'Materiale: Plast', + 'furniture' => 'Møblement', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => 'Epler', + 'balloons' => 'Ballonger', + 'buildings' => 'Bygninger', + 'carousels' => 'Karuseller', + 'scrunchie' => '', + 'bottles' => 'Flasker', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => 'Instrumenter', + 'flocking' => '', + 'candles' => 'Stearinlys', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => '', + 'bunnybears' => '', + 'clouds' => 'Skyer', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => 'Desserter', + 'playing-cards' => '', + 'skulls' => 'Hodeskaller', + 'cutlery' => '', + 'cameos' => '', + 'music' => 'Musikk', + 'tassels' => '', + 'books' => 'Bøker', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => 'Planter', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => 'Te', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => 'Vinger', + 'musical-notes' => '', + 'clocks' => 'Klokker', + 'bouquets' => '', + 'swans' => 'Svaner', + 'cakes' => 'Kaker', + 'cookies' => 'Kjeks', + 'food' => 'Mat', + 'angels' => 'Engler', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => 'Fjær', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => 'Dyreører', + 'regimental-stripes' => '', + 'heraldry' => 'Heraldikk', + 'burberry' => '', + 'birds' => 'Fugler', + 'knitted' => '', + 'moons' => 'Måner', + 'butterflies' => 'Sommerfugler', + 'alice-in-wonderland' => '', + 'diamonds' => 'Diamanter', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => 'Frukt', + 'abstract-decorative' => '', + 'sweets' => 'Søtsaker', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => 'Kroner', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => 'Delvis (ufullstendig info)', + 'roses' => 'Roser', + 'solid' => '', +]; diff --git a/resources/lang/nb_NO/validation.php b/resources/lang/nb_NO/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/nb_NO/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/nl/categories.php b/resources/lang/nl/categories.php new file mode 100644 index 00000000..2398a46e --- /dev/null +++ b/resources/lang/nl/categories.php @@ -0,0 +1,30 @@ + '', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => '', + 'shoes' => '', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => '', + 'op' => '', +]; diff --git a/resources/lang/nl/features.php b/resources/lang/nl/features.php new file mode 100644 index 00000000..e458d8a8 --- /dev/null +++ b/resources/lang/nl/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/nl/tags.php b/resources/lang/nl/tags.php new file mode 100644 index 00000000..d4c69202 --- /dev/null +++ b/resources/lang/nl/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '', + 'grass' => '', + 'elephants' => '', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => '', + 'beds' => '', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => '', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '', + 'snow-white' => '', + 'sheep' => '', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => '', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => '', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => '', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => '', + 'christmas' => '', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => '', + 'denim' => '', + 'bubbles' => '', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '', + 'mushrooms' => '', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => '', + 'glossy' => '', + 'violins' => '', + 'houndstooth' => '', + 'perfumes' => '', + 'circus' => '', + 'chairs' => '', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => '', + 'anchors' => '', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => '', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => '', + 'balloons' => '', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => '', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => '', + 'bunnybears' => '', + 'clouds' => '', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => '', + 'cutlery' => '', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => '', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => '', + 'musical-notes' => '', + 'clocks' => '', + 'bouquets' => '', + 'swans' => '', + 'cakes' => '', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => '', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => '', + 'roses' => '', + 'solid' => '', +]; diff --git a/resources/lang/nl/validation.php b/resources/lang/nl/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/nl/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/pl/categories.php b/resources/lang/pl/categories.php new file mode 100644 index 00000000..2398a46e --- /dev/null +++ b/resources/lang/pl/categories.php @@ -0,0 +1,30 @@ + '', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => '', + 'shoes' => '', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => '', + 'op' => '', +]; diff --git a/resources/lang/pl/features.php b/resources/lang/pl/features.php new file mode 100644 index 00000000..e458d8a8 --- /dev/null +++ b/resources/lang/pl/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/pl/tags.php b/resources/lang/pl/tags.php new file mode 100644 index 00000000..d4c69202 --- /dev/null +++ b/resources/lang/pl/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '', + 'grass' => '', + 'elephants' => '', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => '', + 'beds' => '', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => '', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '', + 'snow-white' => '', + 'sheep' => '', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => '', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => '', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => '', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => '', + 'christmas' => '', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => '', + 'denim' => '', + 'bubbles' => '', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '', + 'mushrooms' => '', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => '', + 'glossy' => '', + 'violins' => '', + 'houndstooth' => '', + 'perfumes' => '', + 'circus' => '', + 'chairs' => '', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => '', + 'anchors' => '', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => '', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => '', + 'balloons' => '', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => '', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => '', + 'bunnybears' => '', + 'clouds' => '', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => '', + 'cutlery' => '', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => '', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => '', + 'musical-notes' => '', + 'clocks' => '', + 'bouquets' => '', + 'swans' => '', + 'cakes' => '', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => '', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => '', + 'roses' => '', + 'solid' => '', +]; diff --git a/resources/lang/pl/validation.php b/resources/lang/pl/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/pl/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/sv/categories.php b/resources/lang/sv/categories.php new file mode 100644 index 00000000..2398a46e --- /dev/null +++ b/resources/lang/sv/categories.php @@ -0,0 +1,30 @@ + '', + 'publications' => '', + 'hair-accessories' => '', + 'corsetbustier' => '', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '', + 'vest' => '', + 'cardigan' => '', + 'blouse' => '', + 'accessories' => '', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '', + 'jsk' => '', + 'umbrellas-parasols' => '', + 'salopette' => '', + 'pants' => '', + 'skirt' => '', + 'shoes' => '', + 'coats' => '', + 'bags' => '', + 'jewelry' => '', + 'sets' => '', + 'op' => '', +]; diff --git a/resources/lang/sv/features.php b/resources/lang/sv/features.php new file mode 100644 index 00000000..e458d8a8 --- /dev/null +++ b/resources/lang/sv/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '', + 'platform' => '', + 'underbust' => '', + 'detachable-yoke' => '', + 'detachable-strap' => '', + 'detachable-apron' => '', + 'convertible-straps' => '', + 'halter-neckline' => '', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => '', + 'no-sleeves' => '', + 'hood' => '', + 'dropped-waist' => '', + 'boning' => '', + 'removable-collar' => '', + 'built-in-petticoat' => '', + 'removable-belt' => '', + 'detachable-sleeves' => '', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '', + 'back-shirring' => '', + 'high-waist' => '', + 'pockets' => '', + 'tiered-skirt' => '', + 'side-zip' => '', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '', + 'detachable-bow' => '', + 'corset-lacing' => '', + 'long-sleeves' => '', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/sv/tags.php b/resources/lang/sv/tags.php new file mode 100644 index 00000000..d4c69202 --- /dev/null +++ b/resources/lang/sv/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '', + 'orchestra' => '', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '', + 'the-nutcracker' => '', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '', + 'grass' => '', + 'elephants' => '', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '', + 'sensitive-content' => '', + 'sleeping-beauty' => '', + 'harps' => '', + 'beds' => '', + 'canvas' => '', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '', + 'pegasus' => '', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '', + 'spiders' => '', + 'cinderella' => '', + 'curtains-drapes' => '', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '', + 'mice' => '', + 'fur' => '', + 'chocomint' => '', + 'jams' => '', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '', + 'cosmetics' => '', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '', + 'snow-white' => '', + 'sheep' => '', + 'arts' => '', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '', + 'wolves' => '', + 'eiffel-tower' => '', + 'argyle' => '', + 'masks' => '', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '', + 'fanplusfriend' => '', + 'pirates' => '', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '', + 'spiderwebs' => '', + 'doughnuts' => '', + 'melody-basket' => '', + 'little-red-riding-hood' => '', + 'disney' => '', + 'chess' => '', + 'pocket-watches' => '', + 'ships' => '', + 'pianos' => '', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '', + 'mirrors' => '', + 'christmas' => '', + 'stained-glass' => '', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '', + 'thorns' => '', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '', + 'forks' => '', + 'denim' => '', + 'bubbles' => '', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '', + 'cherubs' => '', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '', + 'mushrooms' => '', + 'birdcages' => '', + 'gates' => '', + 'lemons' => '', + 'coffins' => '', + 'glossy' => '', + 'violins' => '', + 'houndstooth' => '', + 'perfumes' => '', + 'circus' => '', + 'chairs' => '', + 'whipped-cream' => '', + 'unicorns' => '', + 'spades' => '', + 'seashells' => '', + 'damask' => '', + 'lions' => '', + 'anchors' => '', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '', + 'snowflakes' => '', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '', + 'spoons' => '', + 'witches-magic' => '', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '', + 'axes-femme-kawaii' => '', + 'cupcakes' => '', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '', + 'trees' => '', + 'apples' => '', + 'balloons' => '', + 'buildings' => '', + 'carousels' => '', + 'scrunchie' => '', + 'bottles' => '', + 'poodles' => '', + 'astronomy-space' => '', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '', + 'paintings' => '', + 'dogs' => '', + 'chandeliers' => '', + 'cups' => '', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '', + 'religious-motifs' => '', + 'earrings' => '', + 'daisies' => '', + 'bunnybears' => '', + 'clouds' => '', + 'sole-rubber' => '', + 'toys' => '', + 'royalty' => '', + 'bats' => '', + 'desserts' => '', + 'playing-cards' => '', + 'skulls' => '', + 'cutlery' => '', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '', + 'plants' => '', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '', + 'castles' => '', + 'east-asian' => '', + 'tea' => '', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => '', + 'wings' => '', + 'musical-notes' => '', + 'clocks' => '', + 'bouquets' => '', + 'swans' => '', + 'cakes' => '', + 'cookies' => '', + 'food' => '', + 'angels' => '', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '', + 'chains' => '', + 'bonnets' => '', + 'wool' => '', + 'keys-non-piano' => '', + 'chocolates' => '', + 'satin' => '', + 'fleur-de-lis' => '', + 'organdy-organza' => '', + 'horses-ponies' => '', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '', + 'animal-ears' => '', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => '', + 'knitted' => '', + 'moons' => '', + 'butterflies' => '', + 'alice-in-wonderland' => '', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '', + 'abstract-decorative' => '', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => '', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '', + 'strawberries' => '', + 'bears' => '', + 'necklace' => '', + 'velveteen' => '', + 'motif-ribbons' => '', + 'lace' => '', + 'plaids' => '', + 'crosses' => '', + 'rabbits' => '', + 'animals' => '', + 'stars' => '', + 'chiffon' => '', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '', + 'pearls' => '', + 'crowns' => '', + 'stripes' => '', + 'hearts' => '', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '', + 'partial' => '', + 'roses' => '', + 'solid' => '', +]; diff --git a/resources/lang/vi/categories.php b/resources/lang/vi/categories.php new file mode 100644 index 00000000..79bf8ea3 --- /dev/null +++ b/resources/lang/vi/categories.php @@ -0,0 +1,30 @@ + 'Cape', + 'publications' => 'Ấn phẩm được xuất bản', + 'hair-accessories' => 'Phụ kiện tóc', + 'corsetbustier' => 'Corset/ Bustier', + 'unmentionables' => 'Không tag được', + 'cutsew' => 'Cutsew', + 'petticoat' => 'Tùng phồng', + 'vest' => 'Áo vét', + 'cardigan' => 'Áo cardigan', + 'blouse' => 'Áo blouse', + 'accessories' => 'Phụ kiện', + 'bolero' => 'Áo bolero', + 'other' => 'Khác', + 'bloomers' => 'Quần bí/Đồ lót trong', + 'apron' => 'Tạp dề', + 'socks' => 'Vớ/Quần tất', + 'jsk' => 'JSK', + 'umbrellas-parasols' => 'Ô/Dù', + 'salopette' => 'Salopette', + 'pants' => 'Quần', + 'skirt' => 'SK', + 'shoes' => 'Giày', + 'coats' => 'Áo khoác dài', + 'bags' => 'Túi xách', + 'jewelry' => 'Trang sức', + 'sets' => 'Set', + 'op' => 'OP', +]; diff --git a/resources/lang/vi/features.php b/resources/lang/vi/features.php new file mode 100644 index 00000000..6234aa7c --- /dev/null +++ b/resources/lang/vi/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => 'Đế hở', + 'ankle-boot' => 'Kiểu dáng: Giày cao cổ', + 'open-toe' => '(Giày) Hở mũi', + 'wedge' => 'Đế cao', + 'kimono-sleeves' => 'Tay áo Kimono', + 'frog-closure' => 'Cúc áo kiểu Trung Hoa', + 'sandal' => 'Kiểu dáng: Xăng đan', + 'style-boot' => 'Kiểu dáng: Bốt', + 'shoes-lacing' => '', + 'platform' => 'Đế bánh mì', + 'underbust' => 'Cổ dưới ngực', + 'detachable-yoke' => 'Yếm tháo được', + 'detachable-strap' => '', + 'detachable-apron' => 'Tạp dề tháo được', + 'convertible-straps' => '', + 'halter-neckline' => 'Cổ áo có dây đeo', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '', + 'sailor-collar' => 'Cổ áo thuỷ thủ', + 'no-sleeves' => 'Không có tay áo', + 'hood' => 'Mũ áo', + 'dropped-waist' => 'Eo thấp', + 'boning' => '', + 'removable-collar' => 'Cổ áo tháo được', + 'built-in-petticoat' => 'Tùng phồng được may trong đồ', + 'removable-belt' => 'Thắt lưng tháo được', + 'detachable-sleeves' => 'Tay áo tháo được', + 'princess-sleeves' => '', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => 'Mép hình vỏ sò (scalloped)', + 'bustled' => '', + 'buttoned-front' => 'Khuy áo trước ngực', + 'detachable-trim' => 'Viền trang trí tháo được', + 'back zip' => 'Khoá kéo đằng sau', + 'pleats' => 'Xếp ly', + 'elasticized-cuffs' => 'Tay áo co giãn', + 'high-neck-collar' => 'Cao cổ', + 'adjustable-straps' => '', + 'full-shirring' => 'Có chun co giãn toàn bộ', + 'pintucks' => '', + 'buttoned-cuffs' => 'Khuy cài ở tay áo', + 'peter-pan-collar' => 'Cổ áo Peter Pan', + 'back-shirring' => 'Chun co giãn ở lưng', + 'high-waist' => '', + 'pockets' => 'Túi (quần áo)', + 'tiered-skirt' => '', + 'side-zip' => 'Khoá kéo ở cạnh', + 'detachable-waist-ties' => 'Đai lưng tháo được', + 'partial-shirring' => 'Có chun co giãn một phần', + 'short-sleeves' => 'Tay áo ngắn', + 'detachable-bow' => 'Nơ tháo được', + 'corset-lacing' => '', + 'long-sleeves' => 'Tay áo dài', + 'no-shirring' => 'Không có chun co giãn', + 'lining' => 'Có vải lót', +]; diff --git a/resources/lang/vi/tags.php b/resources/lang/vi/tags.php new file mode 100644 index 00000000..4beefeba --- /dev/null +++ b/resources/lang/vi/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => 'Sản phẩm bị recall', + 'mystery-garden' => '', + 'peter-pan' => 'Peter Pan', + 'bathrooms' => 'Phòng tắm', + 'orchestra' => 'Dàn nhạc giao hưởng', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => 'Chim bồ câu', + 'ma' => '', + 'gloomy-bear' => 'Gloomy Bear', + 'boguta' => '', + 'kuragehime' => 'Kuragehime/Công chúa Sứa', + 'sunglasses' => 'Kính râm', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => 'Con rối', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => 'Bóng ma trong Nhà hát', + 'uf' => '', + 'pretty' => '', + 'hands' => 'Tay', + 'sole-cork' => 'Đế: Cork (Gỗ)', + 'purses-print' => '', + 'sole-foam' => 'Đế: Xốp', + 'blood' => 'Máu', + 'shoe-clips' => 'Món đồ: Kẹp giày', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '', + 'creamy-mami' => 'Creamy Mami', + 'beauty-and-the-beast' => 'Người Đẹp và Quái Vật', + 'the-nutcracker' => 'Kẹp Hạt Dẻ', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => 'Món đồ: Áo Gi-lê (Gilet)', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => 'Son môi', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '', + 'ptmy' => '', + 'camo' => 'Hoạ tiết: Rằn ri', + 'weddings' => 'Lễ cưới', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => 'Cá heo', + 'grass' => 'Cỏ', + 'elephants' => 'Voi', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => 'Mắt', + 'doors' => 'Cánh cửa', + 'pina-sweetcollection' => '', + 'pillows' => 'Gối', + 'snow-globes' => 'Quả cầu tuyết', + 'suede' => 'Hoàn thiện: Da lộn', + 'rapunzel' => 'Rapunzel', + 'sensitive-content' => 'Nội dung nhạy cảm', + 'sleeping-beauty' => 'Công chúa ngủ trong rừng', + 'harps' => 'Đàn Hạc (Nhạc cụ)', + 'beds' => 'Giường ngủ', + 'canvas' => 'Vải: Canvas', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => 'Lễ Phục Sinh', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => 'Vòng nguyệt quế', + 'print-replica' => 'Print Replica', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => 'Nhà hát', + 'pegasus' => 'Ngựa Pegasus', + 'vierge-vampur' => '', + 'raspberries' => 'Quả mâm xôi', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => 'Cầu thang', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => 'Tử vi/ Chiêm tinh', + 'tarot' => 'Tarot', + 'sweet-mildred' => '', + 'novala-takemoto' => 'Nhà thiết kế: Novala Takemoto', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => 'Đèn (Không phải đèn chùm)', + 'swan-lake' => 'Hồ Thiên nga', + 'spiders' => 'Nhện', + 'cinderella' => 'Lọ Lem', + 'curtains-drapes' => 'Rèm/Màn che', + 'tournewsoul' => '', + 'gradient' => 'Hoạ tiết: Gradient (Chuyển màu)', + 'lollipops' => 'Kẹo mút', + 'r-r-memorandum' => '', + 'sole-wood' => 'Đế: Gỗ', + 'pies' => 'Bánh nướng', + 'umbrellas' => 'Ô/Dù', + 'corduroy' => 'Vải: Nhung kẻ', + 'plates' => 'Đĩa', + 'mice' => 'Chuột', + 'fur' => 'Vải: Lông', + 'chocomint' => '', + 'jams' => 'Mứt', + 'automatic-honey' => '', + 'numbers' => 'Những con số', + 'mermaids' => 'Tiên cá', + 'cosmetics' => 'Mỹ phẩm', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => 'Cáo', + 'snow-white' => 'Bạch Tuyết', + 'sheep' => 'Cừu', + 'arts' => '', + 'fans' => 'Quạt', + 'imai-kira' => 'Nhà thiết kế: Imai Kira', + 'belladonna' => '', + 'treasures' => 'Kho báu', + 'violet fane' => '', + 'fairies' => 'Những nàng tiên', + 'wolves' => 'Sói', + 'eiffel-tower' => 'Tháp Eiffel', + 'argyle' => '', + 'masks' => 'Mặt nạ', + 'sanrio' => 'Sanrio', + 'clothing-and-shoe-prints' => 'Print về quần áo và giày dép', + 'flags' => 'Cờ', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => 'Vườn', + 'fanplusfriend' => '', + 'pirates' => 'Cướp biển', + 'gears' => 'Bánh răng', + 'diamond-honey' => '', + 'replica' => 'Replica ( Hàng nhái )', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => 'Khu rừng', + 'spiderwebs' => 'Mạng nhện', + 'doughnuts' => 'Bánh donut', + 'melody-basket' => '', + 'little-red-riding-hood' => 'Cô bé quàng Khăn đỏ', + 'disney' => 'Disney', + 'chess' => 'Cờ vua', + 'pocket-watches' => 'Đồng hồ bỏ túi', + 'ships' => 'Tàu thuyền', + 'pianos' => 'Đàn piano', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => 'Nhà thờ/ Thánh đường', + 'mirrors' => 'Gương', + 'christmas' => 'Giáng sinh', + 'stained-glass' => 'Kính màu', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => 'Vũ công ba lê', + 'thorns' => 'Gai', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => 'Hoa violet/hoa păng-xê', + 'forks' => 'Nĩa', + 'denim' => 'Vải: Denim', + 'bubbles' => 'Bong bóng', + 'lacy' => '', + 'motif-hats' => 'Mô típ: Mũ', + 'lucky-pack' => '', + 'squirrels' => 'Sóc', + 'cherubs' => 'Tiểu thiên sứ', + 'clubs' => '', + 'ornaments' => 'Đồ trang trí (cây)', + 'maid' => '', + 'dolls' => 'Búp bê', + 'mushrooms' => 'Nấm', + 'birdcages' => 'Lồng chim', + 'gates' => 'Cổng lớn', + 'lemons' => 'Chanh', + 'coffins' => 'Quan tài', + 'glossy' => '', + 'violins' => 'Đàn violin', + 'houndstooth' => '', + 'perfumes' => 'Nước hoa', + 'circus' => 'Rạp xiếc', + 'chairs' => 'Ghế', + 'whipped-cream' => 'Kem tươi (Whipped Cream)', + 'unicorns' => 'Ngựa một sừng', + 'spades' => 'Hoạ tiết con bích (trong bộ bài)', + 'seashells' => 'Vỏ sò', + 'damask' => '', + 'lions' => 'Sư tử', + 'anchors' => 'Mỏ neo', + 'animal-print' => 'Hoạ tiết: Print động vật', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => 'Xe ngựa', + 'snowflakes' => 'Bông tuyết', + 'plastic' => 'Chất liệu: Nhựa', + 'furniture' => 'Nội thất', + 'macarons' => 'Bánh macaron', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => 'Vải: Da', + 'spoons' => 'Thìa', + 'witches-magic' => 'Phù thuỷ/Phép thuật', + 'gifts' => 'Quà tặng', + 'crown-label' => '', + 'windows' => 'Cửa sổ', + 'axes-femme-kawaii' => '', + 'cupcakes' => 'Bánh nướng cupcake/muffin', + 'straw-wicker' => 'Vật liệu: Nan/Liễu gai (cho đồ đan)', + 'rickrack' => '', + 'jewelry' => 'Trang sức', + 'trees' => 'Cây', + 'apples' => 'Táo', + 'balloons' => 'Bóng bay', + 'buildings' => 'Toà nhà', + 'carousels' => 'Vòng quay ngựa gỗ', + 'scrunchie' => '', + 'bottles' => 'Bình nước', + 'poodles' => 'Cún Poodle', + 'astronomy-space' => 'Thiên văn học/Vũ trụ', + 'marine' => '(Thuộc) về biển', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => 'Kem', + 'white-rabbit' => 'Thỏ trắng', + 'reindeer-deer-bambi' => 'Tuần lộc/Hươu/Nai', + 'paintings' => 'Tranh vẽ', + 'dogs' => 'Cún/Chó con', + 'chandeliers' => 'Đèn chùm', + 'cups' => 'Cốc/Tách', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => 'Halloween', + 'letters' => 'Thư từ/Bưu phẩm', + 'instruments' => 'Nhạc cụ', + 'flocking' => '', + 'candles' => 'Nến', + 'religious-motifs' => 'Mô típ về tôn giáo', + 'earrings' => '', + 'daisies' => 'Hoa Cúc', + 'bunnybears' => '', + 'clouds' => 'Mây', + 'sole-rubber' => 'Đế: Cao su', + 'toys' => 'Đồ chơi', + 'royalty' => 'Hoàng gia', + 'bats' => 'Dơi', + 'desserts' => 'Tráng miệng/Đồ ngọt', + 'playing-cards' => 'Thẻ chơi bài', + 'skulls' => 'Đầu lâu', + 'cutlery' => '', + 'cameos' => '', + 'music' => 'Âm nhạc', + 'tassels' => '', + 'books' => 'Sách', + 'military' => '', + 'shantung' => '', + 'pom-pom' => 'Chi tiết: Cục bông tròn Pom-Pom', + 'fairy-tales' => 'Cổ tích', + 'plants' => 'Cây (Plants)', + 'matte' => '', + 'lace-print' => 'Hoạ tiết: Print ren', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => 'Kiến trúc', + 'castles' => 'Lâu đài', + 'east-asian' => 'Đông Á', + 'tea' => 'Trà', + 'beads' => '', + 'acrylic-resin' => '', + 'jewels' => 'Đá quý', + 'wings' => 'Cánh', + 'musical-notes' => 'Nốt nhạc', + 'clocks' => 'Đồng hồ treo tường', + 'bouquets' => 'Bó hoa', + 'swans' => 'Thiên nga', + 'cakes' => 'Bánh ngọt', + 'cookies' => 'Bánh quy', + 'food' => 'Thức ăn', + 'angels' => 'Thiên thần', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => 'Lông vũ', + 'chains' => 'Xiềng xích', + 'bonnets' => '', + 'wool' => 'Vải: Len', + 'keys-non-piano' => 'Chìa khoá', + 'chocolates' => 'Sô cô la', + 'satin' => 'Vải: Sa tanh', + 'fleur-de-lis' => '', + 'organdy-organza' => 'Vải: Organdy/Organza', + 'horses-ponies' => 'Ngựa/Ngựa con', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => 'Kẹo', + 'animal-ears' => 'Tai thú', + 'regimental-stripes' => '', + 'heraldry' => '', + 'burberry' => '', + 'birds' => 'Chim chóc', + 'knitted' => 'Chi tiết: Đan (len, sợi)', + 'moons' => 'Mặt trăng', + 'butterflies' => 'Bướm', + 'alice-in-wonderland' => 'Alice ở Xứ Sở Thần Tiên', + 'diamonds' => 'Kim cương', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => 'Sơ ri/Cherry', + 'synthetic-leather' => 'Vải: Da PU/Da giả', + 'glitter' => 'Chi tiết: Kim tuyến/Nhũ', + 'fruits' => 'Hoa quả', + 'abstract-decorative' => '', + 'sweets' => 'Đồ ngọt', + 'broadcloth' => '', + 'frames' => 'Khung tranh/Khung ảnh', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '', + 'faux-fur' => 'Vải: Lông giả', + 'rhinestones' => 'Chi tiết: Đính đá', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => 'Mèo', + 'strawberries' => 'Dâu tây', + 'bears' => 'Gấu', + 'necklace' => 'Món đồ: Vòng cổ', + 'velveteen' => 'Vải: Nhung', + 'motif-ribbons' => 'Mô típ: Ruy băng/Nơ', + 'lace' => 'Vải: Ren', + 'plaids' => '', + 'crosses' => 'Thánh giá', + 'rabbits' => 'Thỏ', + 'animals' => 'Động vật', + 'stars' => 'Ngôi sao', + 'chiffon' => 'Vải: Chiffon', + 'headbands' => 'Món đồ: Băng đô/Bờm tóc', + 'embroidery' => 'Chi tiết: Thêu', + 'polka-dots' => 'Hoạ tiết: Chấm bi', + 'pearls' => 'Ngọc trai', + 'crowns' => 'Vương miện', + 'stripes' => '', + 'hearts' => 'Trái tim', + 'detail-bows' => 'Chi tiết: Nơ', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '(Về) Hoa', + 'partial' => 'Một phần (Không có đầy đủ dữ liệu)', + 'roses' => 'Hoa hồng', + 'solid' => 'Hoạ tiết: Trơn ( Chỉ dành cho OP,JSK & SK)', +]; diff --git a/resources/lang/vi/validation.php b/resources/lang/vi/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/vi/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/lang/zh_Hans/categories.php b/resources/lang/zh_Hans/categories.php new file mode 100644 index 00000000..7ac7fb7e --- /dev/null +++ b/resources/lang/zh_Hans/categories.php @@ -0,0 +1,30 @@ + '披风', + 'publications' => '', + 'hair-accessories' => '头饰', + 'corsetbustier' => '束腰/抹胸', + 'unmentionables' => '', + 'cutsew' => '', + 'petticoat' => '裙撑', + 'vest' => '背心', + 'cardigan' => '开衫', + 'blouse' => '', + 'accessories' => '配饰', + 'bolero' => '', + 'other' => '', + 'bloomers' => '', + 'apron' => '', + 'socks' => '袜子', + 'jsk' => 'JSK', + 'umbrellas-parasols' => '伞', + 'salopette' => '背带裙', + 'pants' => '裤子', + 'skirt' => 'SK', + 'shoes' => '鞋子', + 'coats' => '外套', + 'bags' => '包', + 'jewelry' => '首饰', + 'sets' => '套装', + 'op' => 'OP', +]; diff --git a/resources/lang/zh_Hans/features.php b/resources/lang/zh_Hans/features.php new file mode 100644 index 00000000..17353c63 --- /dev/null +++ b/resources/lang/zh_Hans/features.php @@ -0,0 +1,63 @@ + '', + 'open-heel' => '', + 'ankle-boot' => '', + 'open-toe' => '', + 'wedge' => '', + 'kimono-sleeves' => '', + 'frog-closure' => '', + 'sandal' => '', + 'style-boot' => '', + 'shoes-lacing' => '绑带', + 'platform' => '', + 'underbust' => '下胸围', + 'detachable-yoke' => '可拆卸轭领', + 'detachable-strap' => '可拆卸肩带', + 'detachable-apron' => '可拆卸围裙', + 'convertible-straps' => '两用带条', + 'halter-neckline' => '吊带领口', + 'capelet' => '', + 'tucks' => '', + 'jabot' => '假领子', + 'sailor-collar' => '海军领', + 'no-sleeves' => '無袖', + 'hood' => '', + 'dropped-waist' => '低腰', + 'boning' => '鱼骨撑', + 'removable-collar' => '可拆卸衣领', + 'built-in-petticoat' => '内嵌式衬裙', + 'removable-belt' => '可拆卸皮带', + 'detachable-sleeves' => '可拆卸袖子', + 'princess-sleeves' => '公主袖', + 'corset-lace-(decorative)' => '', + 'removable-sash' => '', + 'empire-waist' => '', + 'neck-ties' => '', + 'scalloped' => '', + 'bustled' => '', + 'buttoned-front' => '', + 'detachable-trim' => '可拆卸装饰', + 'back zip' => '', + 'pleats' => '', + 'elasticized-cuffs' => '', + 'high-neck-collar' => '', + 'adjustable-straps' => '可调带条', + 'full-shirring' => '', + 'pintucks' => '', + 'buttoned-cuffs' => '', + 'peter-pan-collar' => '小飞侠领', + 'back-shirring' => '', + 'high-waist' => '高腰', + 'pockets' => '口袋', + 'tiered-skirt' => '', + 'side-zip' => '侧拉链', + 'detachable-waist-ties' => '', + 'partial-shirring' => '', + 'short-sleeves' => '短袖', + 'detachable-bow' => '可拆卸蝴蝶结', + 'corset-lacing' => '', + 'long-sleeves' => '长袖', + 'no-shirring' => '', + 'lining' => '', +]; diff --git a/resources/lang/zh_Hans/tags.php b/resources/lang/zh_Hans/tags.php new file mode 100644 index 00000000..43f9e844 --- /dev/null +++ b/resources/lang/zh_Hans/tags.php @@ -0,0 +1,391 @@ + '', + 'cloud-chamber' => '', + 'shotgun-wedding' => '', + 'aguglieria' => '', + 'white-moon' => '', + 'lethes-castle' => '', + 'swimmer' => '', + 'strawberry-on-the-shortcake' => '', + 'recalled' => '', + 'mystery-garden' => '', + 'peter-pan' => '', + 'bathrooms' => '浴室', + 'orchestra' => '管弦乐队', + 'rose-trianon' => '', + 'morun-x-muuna-stoik' => '', + 'were-all-mad-here' => '', + 'doves' => '', + 'ma' => '', + 'gloomy-bear' => '', + 'boguta' => '', + 'kuragehime' => '', + 'sunglasses' => '太阳镜', + 'brand-classical-lolita' => '', + 'the-snow-field' => '', + 'spica' => '', + 'leur-getter' => '', + 'puppets' => '木偶', + 'mew' => '', + 'cherie-cerise' => '', + 'phantom-of-the-opera' => '', + 'uf' => '', + 'pretty' => '', + 'hands' => '', + 'sole-cork' => '', + 'purses-print' => '', + 'sole-foam' => '', + 'blood' => '', + 'shoe-clips' => '', + 'ange' => '', + 'gramm' => '', + 'dark-box' => '', + 'nursery-rhymes' => '童谣', + 'creamy-mami' => '', + 'beauty-and-the-beast' => '美女与野兽', + 'the-nutcracker' => '胡桃夹子', + 'marchenmerry' => '', + 'vallee-lys' => '', + 'A-Plus-Lidel' => '', + 'abilletage' => '', + 'gilet' => '', + 'magic-potion' => '', + 'dear-margaret' => '', + 'lipsticks' => '口红', + 'hmhm' => '', + 'kazuko-ogawa' => '', + 'elpress-l' => '', + 'the-little-mermaid' => '小美人鱼', + 'ptmy' => '', + 'camo' => '', + 'weddings' => '', + 'lustyn-wonderland' => '', + 'kidsyoyo' => '', + 'dolphins' => '海豚', + 'grass' => '青草', + 'elephants' => '象', + 'toile' => '', + 'axes-femme-poetique' => '', + 'eyes' => '', + 'doors' => '', + 'pina-sweetcollection' => '', + 'pillows' => '枕头', + 'snow-globes' => '', + 'suede' => '', + 'rapunzel' => '长发公主', + 'sensitive-content' => '', + 'sleeping-beauty' => '睡美人', + 'harps' => '竖琴', + 'beds' => '', + 'canvas' => '布料: 帆布', + 'seraphim' => '', + 'little-dipper' => '', + 'schwarz-schmetterling' => '', + 'dandy-pupps' => '', + 'easter' => '', + 'visible' => '', + 'Na-Plus-H' => '', + 'laurels' => '', + 'print-replica' => '', + 'long-ears' => '', + 'chocochip-cookie' => '', + 'dolly-house' => '', + 'theatre' => '戏院', + 'pegasus' => '天马', + 'vierge-vampur' => '', + 'raspberries' => '', + 'miss-point' => '', + 'pumpkin-cat' => '', + 'arm-warmers' => '', + 'me-likes-tea' => '', + 'fantastic-wind' => '', + 'baroque' => '', + 'arcadian-deer' => '', + 'staircases' => '楼梯', + 'strawberry-witch' => '', + 'to-alice' => '', + 'horoscope-astrology' => '', + 'tarot' => '塔罗纸牌', + 'sweet-mildred' => '', + 'novala-takemoto' => '', + 'eat-me-ink-me' => '', + 'lamps-not-chandeliers' => '', + 'swan-lake' => '天鹅湖', + 'spiders' => '蜘蛛', + 'cinderella' => '灰姑娘', + 'curtains-drapes' => '窗帘', + 'tournewsoul' => '', + 'gradient' => '', + 'lollipops' => '棒棒糖', + 'r-r-memorandum' => '', + 'sole-wood' => '', + 'pies' => '果馅派', + 'umbrellas' => '', + 'corduroy' => '', + 'plates' => '盘子', + 'mice' => '老鼠', + 'fur' => '', + 'chocomint' => '', + 'jams' => '果酱', + 'automatic-honey' => '', + 'numbers' => '', + 'mermaids' => '美人鱼', + 'cosmetics' => '化妆品', + 'classical-puppets' => '', + 'marchen-die-prinzessin' => '', + 'r-series' => '', + 'fairy-wish' => '', + 'foxes' => '狐狸', + 'snow-white' => '白雪公主', + 'sheep' => '绵羊', + 'arts' => '艺术', + 'fans' => '', + 'imai-kira' => '', + 'belladonna' => '', + 'treasures' => '', + 'violet fane' => '', + 'fairies' => '小精灵', + 'wolves' => '', + 'eiffel-tower' => '埃菲尔铁塔', + 'argyle' => '', + 'masks' => '面具', + 'sanrio' => '', + 'clothing-and-shoe-prints' => '', + 'flags' => '', + 'nurse' => '', + 'lullaby' => '', + 'gardens' => '花园', + 'fanplusfriend' => '', + 'pirates' => '海盗', + 'gears' => '', + 'diamond-honey' => '', + 'replica' => '复制品', + 'magic-tea-party' => '', + 'russian-indie' => '', + 'dear-celine' => '', + 'royal-princess-alice' => '', + 'forest' => '森林', + 'spiderwebs' => '蜘蛛网', + 'doughnuts' => '甜甜圈', + 'melody-basket' => '', + 'little-red-riding-hood' => '小红帽', + 'disney' => '迪士尼', + 'chess' => '', + 'pocket-watches' => '怀表', + 'ships' => '船舶', + 'pianos' => '钢琴', + 'anna-house' => '', + 'elegy' => '', + 'churches-cathedrals' => '基督教堂', + 'mirrors' => '镜子', + 'christmas' => '圣诞', + 'stained-glass' => '彩窗', + 'shoes-print' => '', + 'lapin-agill' => '', + 'ballerinas' => '芭蕾', + 'thorns' => '棘刺', + 'black-ribbon' => '', + 'butcher' => '', + 'swallow-tail' => '', + 'lady-sloth' => '', + 'lumiebre' => '', + 'violets-pansies' => '紫罗兰', + 'forks' => '餐叉', + 'denim' => '布料: 牛仔布', + 'bubbles' => '泡泡; 气泡', + 'lacy' => '', + 'motif-hats' => '', + 'lucky-pack' => '', + 'squirrels' => '松鼠', + 'cherubs' => '小天使', + 'clubs' => '', + 'ornaments' => '', + 'maid' => '', + 'dolls' => '玩偶', + 'mushrooms' => '蘑菇', + 'birdcages' => '鸟笼', + 'gates' => '栅栏门', + 'lemons' => '', + 'coffins' => '棺椁', + 'glossy' => '', + 'violins' => '小提琴', + 'houndstooth' => '', + 'perfumes' => '香水', + 'circus' => '马戏团', + 'chairs' => '椅子', + 'whipped-cream' => '', + 'unicorns' => '独角兽', + 'spades' => '', + 'seashells' => '海贝壳', + 'damask' => '', + 'lions' => '狮子', + 'anchors' => '锚', + 'animal-print' => '', + 'apron' => '', + 'veils' => '', + 'canotier' => '', + 'coaches-carriages' => '马车车厢', + 'snowflakes' => '雪花', + 'plastic' => '', + 'furniture' => '', + 'macarons' => '老鼠', + 'gloves' => '', + 'mam' => '', + 'headdress-hair-accessories-not-a-tag' => '', + 'leather' => '布料: 皮革', + 'spoons' => '勺子', + 'witches-magic' => '巫术', + 'gifts' => '', + 'crown-label' => '', + 'windows' => '窗户', + 'axes-femme-kawaii' => '', + 'cupcakes' => '纸杯蛋糕', + 'straw-wicker' => '', + 'rickrack' => '', + 'jewelry' => '首饰', + 'trees' => '树', + 'apples' => '苹果', + 'balloons' => '气球', + 'buildings' => '建筑', + 'carousels' => '旋转木马', + 'scrunchie' => '', + 'bottles' => '瓶子', + 'poodles' => '鬈毛狗', + 'astronomy-space' => '宇宙', + 'marine' => '', + 'twill' => '', + 'korean-indie' => '', + 'ice-creams' => '', + 'white-rabbit' => '', + 'reindeer-deer-bambi' => '驯鹿斑比', + 'paintings' => '', + 'dogs' => '高', + 'chandeliers' => '枝形吊灯', + 'cups' => '杯子', + 'crepe de chine' => '', + 'bracelet' => '', + 'gobelin' => '', + 'halloween' => '万圣节', + 'letters' => '', + 'instruments' => '', + 'flocking' => '', + 'candles' => '蜡烛', + 'religious-motifs' => '宗教主题', + 'earrings' => '', + 'daisies' => '雏菊', + 'bunnybears' => '', + 'clouds' => '云朵', + 'sole-rubber' => '', + 'toys' => '玩具', + 'royalty' => '皇家', + 'bats' => '蝙蝠', + 'desserts' => '甜点', + 'playing-cards' => '扑克牌', + 'skulls' => '头骨', + 'cutlery' => '餐具', + 'cameos' => '', + 'music' => '', + 'tassels' => '', + 'books' => '', + 'military' => '', + 'shantung' => '', + 'pom-pom' => '', + 'fairy-tales' => '童话', + 'plants' => '植物', + 'matte' => '', + 'lace-print' => '', + 'applique' => '', + 'wrist-cuffs' => '', + 'architectural' => '建筑结构', + 'castles' => '城堡', + 'east-asian' => '东亚', + 'tea' => '', + 'beads' => '有孔小珠', + 'acrylic-resin' => '', + 'jewels' => '宝石', + 'wings' => '翅膀', + 'musical-notes' => '音符', + 'clocks' => '时钟', + 'bouquets' => '花束', + 'swans' => '天鹅', + 'cakes' => '蛋糕', + 'cookies' => '曲奇饼', + 'food' => '', + 'angels' => '天使', + 'pinstripes' => '', + 'comb' => '', + 'choker' => '', + 'feathers' => '羽饰', + 'chains' => '', + 'bonnets' => '', + 'wool' => '布料: 羊毛', + 'keys-non-piano' => '', + 'chocolates' => '巧克力', + 'satin' => '布料: 色丁', + 'fleur-de-lis' => '', + 'organdy-organza' => '布料: 玻璃紗', + 'horses-ponies' => '马', + 'japanese-indie' => '', + 'brooches' => '', + 'candy' => '糖果', + 'animal-ears' => '动物耳朵', + 'regimental-stripes' => '', + 'heraldry' => '纹章', + 'burberry' => '', + 'birds' => '鸟', + 'knitted' => '', + 'moons' => '月亮', + 'butterflies' => '蝴蝶', + 'alice-in-wonderland' => '爱丽丝梦游仙境', + 'diamonds' => '', + 'Tulle' => '', + 'rings' => '', + 'trumps' => '', + 'jacquard' => '', + 'sailor' => '', + 'cherries' => '樱桃', + 'synthetic-leather' => '', + 'glitter' => '', + 'fruits' => '水果', + 'abstract-decorative' => '抽象装饰', + 'sweets' => '', + 'broadcloth' => '', + 'frames' => '框架', + 'chinese-indie' => '', + 'gingham' => '', + 'collaboration' => '合作款', + 'faux-fur' => '布料: 人造毛', + 'rhinestones' => '', + 'western-indie' => '', + 'hairclip' => '', + 'item-hat' => '', + 'figures' => '', + 'cats' => '猫', + 'strawberries' => '草莓', + 'bears' => '熊', + 'necklace' => '', + 'velveteen' => '布料: 平绒', + 'motif-ribbons' => '', + 'lace' => '布料: 雷絲', + 'plaids' => '花纹: 格子', + 'crosses' => '十字架', + 'rabbits' => '兔子', + 'animals' => '动物', + 'stars' => '星星', + 'chiffon' => '布料: 雪纺', + 'headbands' => '', + 'embroidery' => '', + 'polka-dots' => '花纹: 水珠', + 'pearls' => '珍珠', + 'crowns' => '皇冠', + 'stripes' => '花纹: 条纹', + 'hearts' => '心形', + 'detail-bows' => '', + 'incomplete-colorways' => '', + 'writing' => '', + 'florals' => '碎花', + 'partial' => '', + 'roses' => '玫瑰', + 'solid' => '', +]; diff --git a/resources/lang/zh_Hans/validation.php b/resources/lang/zh_Hans/validation.php new file mode 100644 index 00000000..66aa8ff5 --- /dev/null +++ b/resources/lang/zh_Hans/validation.php @@ -0,0 +1,157 @@ + '', + 'email' => '', + 'max' => [ + 'string' => '', + + // 'numeric' => 'The :attribute may not be greater than :max.', + // 'file' => 'The :attribute may not be greater than :max kilobytes.', + // 'array' => 'The :attribute may not have more than :max items.', + ], + 'min' => [ + 'string' => '', + + // 'numeric' => 'The :attribute must be at least :min.', + // 'file' => 'The :attribute must be at least :min kilobytes.', + // 'array' => 'The :attribute must have at least :min items.', + ], + 'regex' => '', + 'required' => '', + 'string' => '', + 'unique' => '', + + + + // 'accepted' => 'The :attribute must be accepted.', + // 'active_url' => 'The :attribute is not a valid URL.', + // 'after' => 'The :attribute must be a date after :date.', + // 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', + // 'alpha' => 'The :attribute may only contain letters.', + // 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', + // 'alpha_num' => 'The :attribute may only contain letters and numbers.', + // 'array' => 'The :attribute must be an array.', + // 'before' => 'The :attribute must be a date before :date.', + // 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', + // 'between' => [ + // 'numeric' => 'The :attribute must be between :min and :max.', + // 'file' => 'The :attribute must be between :min and :max kilobytes.', + // 'string' => 'The :attribute must be between :min and :max characters.', + // 'array' => 'The :attribute must have between :min and :max items.', + // ], + // 'boolean' => 'The :attribute field must be true or false.', + // 'date' => 'The :attribute is not a valid date.', + // 'date_equals' => 'The :attribute must be a date equal to :date.', + // 'date_format' => 'The :attribute does not match the format :format.', + // 'different' => 'The :attribute and :other must be different.', + // 'digits' => 'The :attribute must be :digits digits.', + // 'digits_between' => 'The :attribute must be between :min and :max digits.', + // 'dimensions' => 'The :attribute has invalid image dimensions.', + // 'distinct' => 'The :attribute field has a duplicate value.', + // 'ends_with' => 'The :attribute must end with one of the following: :values.', + // 'exists' => 'The selected :attribute is invalid.', + // 'file' => 'The :attribute must be a file.', + // 'filled' => 'The :attribute field must have a value.', + // 'gt' => [ + // 'numeric' => 'The :attribute must be greater than :value.', + // 'file' => 'The :attribute must be greater than :value kilobytes.', + // 'string' => 'The :attribute must be greater than :value characters.', + // 'array' => 'The :attribute must have more than :value items.', + // ], + // 'gte' => [ + // 'numeric' => 'The :attribute must be greater than or equal :value.', + // 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + // 'string' => 'The :attribute must be greater than or equal :value characters.', + // 'array' => 'The :attribute must have :value items or more.', + // ], + // 'image' => 'The :attribute must be an image.', + // 'in' => 'The selected :attribute is invalid.', + // 'in_array' => 'The :attribute field does not exist in :other.', + // 'integer' => 'The :attribute must be an integer.', + // 'ip' => 'The :attribute must be a valid IP address.', + // 'ipv4' => 'The :attribute must be a valid IPv4 address.', + // 'ipv6' => 'The :attribute must be a valid IPv6 address.', + // 'json' => 'The :attribute must be a valid JSON string.', + // 'lt' => [ + // 'numeric' => 'The :attribute must be less than :value.', + // 'file' => 'The :attribute must be less than :value kilobytes.', + // 'string' => 'The :attribute must be less than :value characters.', + // 'array' => 'The :attribute must have less than :value items.', + // ], + // 'lte' => [ + // 'numeric' => 'The :attribute must be less than or equal :value.', + // 'file' => 'The :attribute must be less than or equal :value kilobytes.', + // 'string' => 'The :attribute must be less than or equal :value characters.', + // 'array' => 'The :attribute must not have more than :value items.', + // ], + // 'mimes' => 'The :attribute must be a file of type: :values.', + // 'mimetypes' => 'The :attribute must be a file of type: :values.', + // 'not_in' => 'The selected :attribute is invalid.', + // 'not_regex' => 'The :attribute format is invalid.', + // 'numeric' => 'The :attribute must be a number.', + // 'password' => 'The password is incorrect.', + // 'present' => 'The :attribute field must be present.', + + // 'required_if' => 'The :attribute field is required when :other is :value.', + // 'required_unless' => 'The :attribute field is required unless :other is in :values.', + // 'required_with' => 'The :attribute field is required when :values is present.', + // 'required_with_all' => 'The :attribute field is required when :values are present.', + // 'required_without' => 'The :attribute field is required when :values is not present.', + // 'required_without_all' => 'The :attribute field is required when none of :values are present.', + // 'same' => 'The :attribute and :other must match.', + // 'size' => [ + // 'numeric' => 'The :attribute must be :size.', + // 'file' => 'The :attribute must be :size kilobytes.', + // 'string' => 'The :attribute must be :size characters.', + // 'array' => 'The :attribute must contain :size items.', + // ], + // 'starts_with' => 'The :attribute must start with one of the following: :values.', + // 'timezone' => 'The :attribute must be a valid zone.', + // 'uploaded' => 'The :attribute failed to upload.', + // 'url' => 'The :attribute format is invalid.', + // 'uuid' => 'The :attribute must be a valid UUID.', + + /* + |-------------------------------------------------------------------------- + | Custom Validation Language Lines + |-------------------------------------------------------------------------- + | + | Here you may specify custom validation messages for attributes using the + | convention "attribute.rule" to name the lines. This makes it quick to + | specify a specific custom language line for a given attribute rule. + | + */ + + // 'custom' => [ + // 'attribute-name' => [ + // 'rule-name' => 'custom-message', + // ], + // ], + + /* + |-------------------------------------------------------------------------- + | Custom Validation Attributes + |-------------------------------------------------------------------------- + | + | The following language lines are used to swap our attribute placeholder + | with something more reader friendly such as "E-Mail Address" instead + | of "email". This simply helps us make our message more expressive. + | + */ + + // 'attributes' => [], + +]; diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 7b7414cd..d0ad275d 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -80,7 +80,7 @@ @if (session('status')) @endif diff --git a/resources/views/profile/index.blade.php b/resources/views/profile/index.blade.php index 292f1ee8..d43216ed 100644 --- a/resources/views/profile/index.blade.php +++ b/resources/views/profile/index.blade.php @@ -1,6 +1,17 @@ @extends('profile.layout', ['title' => 'Profile']) @section('profile') + +@if ($errors->any()) +
+ +
+@endif +