Merge pull request #505 from magiczocker10/Nintendogs4

[Nintendogs + Cats] Add all available languages
This commit is contained in:
Marc Robledo
2025-09-08 11:19:08 +02:00
committed by GitHub
20 changed files with 4802 additions and 242 deletions

View File

@@ -278,9 +278,34 @@
<div id="container-language" class="text-center">
<label for="select-language">Select your language</label>
<select id="select-language">
<option value="en">English</option>
<option value="de">Deutsch</option>
<option value="qqx">System messages</option>
<optgroup label="EUR">
<option value="en">English</option>
<option value="fr">Français</option>
<option value="de">Deutsch</option>
<option value="es">Español</option>
<option value="it">Italiano</option>
<option value="nl">Nederlands</option>
<option value="pt">Português</option>
<option value="ru">Русский</option>
</optgroup>
<optgroup label="USA">
<option value="en_alt">English</option>
<option value="fr_alt">Français (Canada)</option>
<option value="es_alt">Español latino</option>
</optgroup>
<optgroup label="JPN">
<option value="jp">日本語</option>
</optgroup>
<optgroup label="KOR">
<option value="ko">한국어</option>
</optgroup>
<optgroup label="CHN">
<option value="zh">中文 (simplified)</option>
<option value="zh_alt">中文 (traditional)</option>
</optgroup>
<optgroup label="Debug">
<option value="qqx">System messages</option>
</optgroup>
</select>
</div>
</div>

View File

@@ -10,39 +10,33 @@
// items[ 1 ] = Item name
// items[ 2 ] = Hex location in save file
// items[ 3 ] = Prefixed icon
// * 1 = dog
// * 2 = cat
// * 3 = music
// * 4 = recycle
SavegameEditor.Constants.items = [
[ 0, 'Item_Foods_Water', '0xE5' ],
[ 0, 'Item_Foods_Milk', '0xE6' ],
[ 0, 'Item_Foods_Dry', '0xDD', 1 ],
[ 0, 'Item_Foods_Wet', '0xDE', 1 ],
[ 0, 'Item_Foods_Diet', '0xDF', 1 ],
[ 0, 'Item_Foods_Premium', '0xE0', 1 ],
[ 0, 'Item_Foods_Cat_Dry', '0xE1', 2 ],
[ 0, 'Item_Foods_Cat_Diet', '0xE2', 2 ],
[ 0, 'Item_Foods_Cat_Wet', '0xE3', 2 ],
[ 0, 'Item_Foods_Cat_Premium', '0xE4', 2 ],
[ 0, 'Item_Foods_Dry', '0xDD' ],
[ 0, 'Item_Foods_Wet', '0xDE' ],
[ 0, 'Item_Foods_Diet', '0xDF' ],
[ 0, 'Item_Foods_Premium', '0xE0' ],
[ 0, 'Item_Foods_Cat_Dry', '0xE1' ],
[ 0, 'Item_Foods_Cat_Diet', '0xE2' ],
[ 0, 'Item_Foods_Cat_Wet', '0xE3' ],
[ 0, 'Item_Foods_Cat_Premium', '0xE4' ],
[ 0, 'Item_Snack_Biscuit', '0xE7' ],
[ 0, 'Item_Snack_Dog', '0xEB', 1 ],
[ 0, 'Item_Snack_Bone', '0xE9', 1 ],
[ 0, 'Item_Snack_Bolo', '0xEA', 1 ],
[ 0, 'Item_Snack_Jky', '0xE8', 1 ],
[ 0, 'Item_Snack_Hart', '0xEC', 1 ],
[ 0, 'Item_Snack_Gum', '0xF2', 1 ],
[ 0, 'Item_Snack_Cat_Cookies', '0xEF', 2 ],
[ 0, 'Item_Snack_Cat_Jerky', '0xEE', 2 ],
[ 0, 'Item_Snack_Dog', '0xEB' ],
[ 0, 'Item_Snack_Bone', '0xE9' ],
[ 0, 'Item_Snack_Bolo', '0xEA' ],
[ 0, 'Item_Snack_Jky', '0xE8' ],
[ 0, 'Item_Snack_Hart', '0xEC' ],
[ 0, 'Item_Snack_Gum', '0xF2' ],
[ 0, 'Item_Snack_Cat_Cookies', '0xEF' ],
[ 0, 'Item_Snack_Cat_Jerky', '0xEE' ],
[ 0, 'Item_Snack_Voice', '0xF1' ],
[ 0, 'Item_Snack_Cat_Chicken', '0xED', 2 ],
[ 0, 'Item_Snack_Cat_Grass', '0xF0', 2 ],
[ 0, 'Item_Brush_Animal', '0x159', 1 ],
[ 0, 'Item_Brush_Pin', '0x15A', 1 ],
[ 0, 'Item_Brush_Rubber', '0x15B', 2 ],
[ 0, 'Item_Brush_Corm', '0x15C', 2 ],
[ 0, 'Item_Snack_Cat_Chicken', '0xED' ],
[ 0, 'Item_Snack_Cat_Grass', '0xF0' ],
[ 0, 'Item_Brush_Animal', '0x159' ],
[ 0, 'Item_Brush_Pin', '0x15A' ],
[ 0, 'Item_Brush_Rubber', '0x15B' ],
[ 0, 'Item_Brush_Corm', '0x15C' ],
[ 0, 'Item_Shampoo_Normal', '0x157' ],
[ 0, 'Item_Shampoo_Premium', '0x158' ],
[ 1, 'Item_Tennisball_Yellow', '0xA4' ],
@@ -115,24 +109,24 @@ SavegameEditor.Constants.items = [
[ 1, 'Item_AR', '0x15D' ],
[ 1, 'Item_Card', '0x15E' ],
[ 1, 'Item_Piano', '0x14A' ],
[ 1, 'Item_Record_00', '0x14B', 3 ],
[ 1, 'Item_Record_01', '0x14C', 3 ],
[ 1, 'Item_Record_02', '0x14D', 3 ],
[ 1, 'Item_Record_03', '0x14E', 3 ],
[ 1, 'Item_Record_04', '0x14F', 3 ],
[ 1, 'Item_Record_06', '0x151', 3 ],
[ 1, 'Item_Record_05', '0x150', 3 ],
[ 1, 'Item_Record_07', '0x152', 3 ],
[ 1, 'Item_Record_08', '0x153', 3 ],
[ 1, 'Item_Record_09', '0x154', 3 ],
[ 1, 'Item_Record_10', '0x155', 3 ],
[ 1, 'Item_Record_11', '0x156', 3 ],
[ 1, 'Item_Handiwork_Twig', '0x127', 4 ],
[ 1, 'Item_Handiwork_Iron', '0x128', 4 ],
[ 1, 'Item_Handiwork_Gom', '0x129', 4 ],
[ 1, 'Item_Handiwork_Leather', '0x12A', 4 ],
[ 1, 'Item_Handiwork_Plastic', '0x12B', 4 ],
[ 1, 'Item_Handiwork_Ore', '0x12C', 4 ],
[ 1, 'Item_Record_00', '0x14B' ],
[ 1, 'Item_Record_01', '0x14C' ],
[ 1, 'Item_Record_02', '0x14D' ],
[ 1, 'Item_Record_03', '0x14E' ],
[ 1, 'Item_Record_04', '0x14F' ],
[ 1, 'Item_Record_06', '0x151' ],
[ 1, 'Item_Record_05', '0x150' ],
[ 1, 'Item_Record_07', '0x152' ],
[ 1, 'Item_Record_08', '0x153' ],
[ 1, 'Item_Record_09', '0x154' ],
[ 1, 'Item_Record_10', '0x155' ],
[ 1, 'Item_Record_11', '0x156' ],
[ 1, 'Item_Handiwork_Twig', '0x127' ],
[ 1, 'Item_Handiwork_Iron', '0x128' ],
[ 1, 'Item_Handiwork_Gom', '0x129' ],
[ 1, 'Item_Handiwork_Leather', '0x12A' ],
[ 1, 'Item_Handiwork_Plastic', '0x12B' ],
[ 1, 'Item_Handiwork_Ore', '0x12C' ],
[ 2, 'Item_Coller_Normal_Red', '0x15F' ],
[ 2, 'Item_Coller_Normal_Blue', '0x160' ],
[ 2, 'Item_Coller_Normal_Yellow', '0x161' ],

View File

@@ -1,67 +1,67 @@
const Locale = ( function () {
const VALID_LOCALES = [ 'de', 'en' ];
let _currentLocale = null;
let _currentLocaleAlt = null;
const _cachedLocales = {};
const _setSelectLanguageStatus = function ( status ) {
if ( document.getElementById( 'select-language' ) ) {
document.getElementById( 'select-language' ).disabled = !status;
}
};
const _setLocale = function ( langCode ) {
_currentLocale = _cachedLocales[ langCode ];
if ( /_alt$/.test( langCode ) ) {
_currentLocaleAlt = _cachedLocales[ langCode.replace( '_alt', '' ) ];
} else {
_currentLocaleAlt = null;
}
document.querySelectorAll( '*[data-translate-title]' ).forEach( ( elem ) => {
elem.setAttribute( 'title', '' );
elem.setAttribute( 'data-tooltip', Locale._( elem.getAttribute( 'data-translate-title' ) ) );
} );
document.querySelectorAll( '*[data-translate]' ).forEach( ( elem ) => {
elem.textContent = Locale._( elem.getAttribute( 'data-translate' ) );
} );
};
return {
_: function ( str ) {
if ( _currentLocale && _currentLocale[ str ] ) {
return _currentLocale[ str ];
} else if ( _currentLocaleAlt && _currentLocaleAlt[ str ] ) {
return _currentLocaleAlt[ str ];
}
return str;
},
set: function ( langCode ) {
if ( langCode === 'qqx' || _cachedLocales[ langCode ] ) {
_setLocale( langCode );
} else if ( VALID_LOCALES.includes( langCode ) ) {
const langCodeAll = langCode.replace( '_alt', '' );
// ui.toast( `Loading ${ langCodeAll.toUpperCase() } translation...`, 'locale' );
_setSelectLanguageStatus( false );
const script = document.createElement( 'script' );
script.type = 'text/javascript';
script.onload = function () {
// ui.toast( false, 'locale' );
_setSelectLanguageStatus( true );
_setLocale( langCode );
};
script.onerror = function () {
// ui.toast( 'Unexpected error: can\'t download locale file', 'locale' );
_setSelectLanguageStatus( true );
};
script.src = `./locale/${ langCodeAll }.js`;
document.head.appendChild( script );
}
},
add: function ( langCode, strings ) {
_cachedLocales[ langCode ] = strings;
}
};
}() );
const Locale = ( function () {
const VALID_LOCALES = [ 'de', 'en', 'en_alt', 'es', 'es_alt', 'fr', 'fr_alt', 'it', 'jp', 'ko', 'nl', 'pt', 'ru', 'zh', 'zh_alt' ];
let _currentLocale = null;
let _currentLocaleAlt = null;
const _cachedLocales = {};
const _setSelectLanguageStatus = function ( status ) {
if ( document.getElementById( 'select-language' ) ) {
document.getElementById( 'select-language' ).disabled = !status;
}
};
const _setLocale = function ( langCode ) {
_currentLocale = _cachedLocales[ langCode ];
if ( /_alt$/.test( langCode ) ) {
_currentLocaleAlt = _cachedLocales[ langCode.replace( '_alt', '' ) ];
} else {
_currentLocaleAlt = null;
}
document.querySelectorAll( '*[data-translate-title]' ).forEach( ( elem ) => {
elem.setAttribute( 'title', '' );
elem.setAttribute( 'data-tooltip', Locale._( elem.getAttribute( 'data-translate-title' ) ) );
} );
document.querySelectorAll( '*[data-translate]' ).forEach( ( elem ) => {
elem.innerHTML = Locale._( elem.getAttribute( 'data-translate' ) );
} );
};
return {
_: function ( str ) {
if ( _currentLocale && _currentLocale[ str ] ) {
return _currentLocale[ str ];
} else if ( _currentLocaleAlt && _currentLocaleAlt[ str ] ) {
return _currentLocaleAlt[ str ];
}
return str;
},
set: function ( langCode ) {
if ( langCode === 'qqx' || _cachedLocales[ langCode ] ) {
_setLocale( langCode );
} else if ( VALID_LOCALES.includes( langCode ) ) {
const langCodeAll = langCode.replace( '_alt', '' );
// ui.toast( `Loading ${ langCodeAll.toUpperCase() } translation...`, 'locale' );
_setSelectLanguageStatus( false );
const script = document.createElement( 'script' );
script.type = 'text/javascript';
script.onload = function () {
// ui.toast( false, 'locale' );
_setSelectLanguageStatus( true );
_setLocale( langCode );
};
script.onerror = function () {
// ui.toast( 'Unexpected error: can\'t download locale file', 'locale' );
_setSelectLanguageStatus( true );
};
script.src = `./locale/${ langCodeAll }.js`;
document.head.appendChild( script );
}
},
add: function ( langCode, strings ) {
_cachedLocales[ langCode ] = strings;
}
};
}() );

View File

@@ -3,30 +3,30 @@ Locale.add( 'de', {
// Food & Drinks
Item_Foods_Water: 'Wasser',
Item_Foods_Milk: 'Spezialmilch',
Item_Foods_Dry: 'Trockenfutter',
Item_Foods_Wet: 'Nassfutter',
Item_Foods_Diet: 'Diätfutter',
Item_Foods_Premium: 'Deluxe-Dosenfutter',
Item_Foods_Cat_Dry: 'Trockenfutter',
Item_Foods_Cat_Wet: 'Nassfutter',
Item_Foods_Cat_Diet: 'Diätfutter',
Item_Foods_Cat_Premium: 'Deluxe-Dosenfutter',
Item_Foods_Dry: '<span class="icon-dog"></span>Trockenfutter',
Item_Foods_Wet: '<span class="icon-dog"></span>Nassfutter',
Item_Foods_Diet: '<span class="icon-dog"></span>Diätfutter',
Item_Foods_Premium: '<span class="icon-dog"></span>Deluxe-Dosenfutter',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span>Trockenfutter',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span>Dosenfutter',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span>Diätfutter',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span>Deluxe-Dosenfutter',
Item_Snack_Biscuit: 'Kekse',
Item_Snack_Dog: 'Welpenkekse',
Item_Snack_Bone: 'Knochenkekse',
Item_Snack_Bolo: 'Runde Hundekekse',
Item_Snack_Jky: 'Trockenfleisch (Rind)',
Item_Snack_Hart: 'Herzchenkekse',
Item_Snack_Gum: 'Kauknochen',
Item_Snack_Cat_Cookies: 'Fischkekse',
Item_Snack_Cat_Jerky: 'Trockenfisch',
Item_Snack_Dog: '<span class="icon-dog"></span>Welpenkekse',
Item_Snack_Bone: '<span class="icon-dog"></span>Knochenkekse',
Item_Snack_Bolo: '<span class="icon-dog"></span>Runde Hundekekse',
Item_Snack_Jky: '<span class="icon-dog"></span>Trockenfleisch (Rind)',
Item_Snack_Hart: '<span class="icon-dog"></span>Herzchenkekse',
Item_Snack_Gum: '<span class="icon-dog"></span>Kauknochen',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span>Fischkekse',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span>Trockenfisch',
Item_Snack_Voice: 'Überraschungskekse',
Item_Snack_Cat_Chicken: 'Trockenfleisch (Huhn)',
Item_Snack_Cat_Grass: 'Katzengras',
Item_Brush_Animal: 'Naturbürste',
Item_Brush_Pin: 'Metallstiftbürste',
Item_Brush_Rubber: 'Gummibürste',
Item_Brush_Corm: 'Kamm',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span>Trockenfleisch (Huhn)',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span>Katzengras',
Item_Brush_Animal: '<span class="icon-dog"></span>Naturbürste',
Item_Brush_Pin: '<span class="icon-dog"></span>Metallstiftbürste',
Item_Brush_Rubber: '<span class="icon-cat"></span>Gummibürste',
Item_Brush_Corm: '<span class="icon-cat"></span>Kamm',
Item_Shampoo_Normal: 'Shampoo',
Item_Shampoo_Premium: 'Deluxe-Shampoo',
@@ -66,7 +66,7 @@ Locale.add( 'de', {
Item_Lure_Normal_Beginner_Yellow: 'Gelber Köder',
Item_Lure_Normal_Beginner_Pink: 'Rosa Köder',
Item_Lure_Normal_Pro_White: 'Weißer Profiköder',
Item_Lure_Normal_Pro_Green: 'Gründer Profiköder',
Item_Lure_Normal_Pro_Green: 'Grüner Profiköder',
Item_Lure_Normal_Pro_Orange: 'Orangefarbener Profiköder',
Item_Lure_Normal_Pro_Blue: 'Blauer Profiköder',
Item_Lure_Toy_Meat: 'Gummisteak-Köder',
@@ -80,7 +80,7 @@ Locale.add( 'de', {
Item_Foxtail_Normal_Blue: 'Blauer Federwedel',
Item_Foxtail_Normal_Green: 'Grüner Federwedel',
Item_Foxtail_FishingPole_2: 'Katzenangel mit Vogelfedern',
Item_Foxtail_FishingPole_1: 'Ketzenangel mit Maus',
Item_Foxtail_FishingPole_1: 'Katzenangel mit Maus',
Item_Foxtail_FishingPole_4: 'Katzenangel mit Schmetterling',
Item_Foxtail_FishingPole_3: 'Katzenangel mit Fisch',
Item_Toy_Chick: 'Aufziehküken',
@@ -101,24 +101,24 @@ Locale.add( 'de', {
Item_AR: 'AR-Kamera',
Item_Card: 'Wauboter-Gutschein',
Item_Piano: 'Keyboard',
Item_Record_00: 'Hund und Katz',
Item_Record_01: 'Schwertduell',
Item_Record_02: 'Schlafenszeit',
Item_Record_03: 'Überraschung',
Item_Record_04: 'Telefon',
Item_Record_06: 'Club Dog',
Item_Record_05: 'Der Flohwalzer',
Item_Record_07: 'Tanz der Rohrflöten',
Item_Record_08: 'Maple Leaf Rag',
Item_Record_09: 'Csikós Post',
Item_Record_10: 'Die Schlittschuhläufer',
Item_Record_11: 'Danke schön!',
Item_Handiwork_Twig: 'Holzstock',
Item_Handiwork_Iron: 'Schraube und Mutter',
Item_Handiwork_Gom: 'Autoreifen',
Item_Handiwork_Leather: 'Leder-Schlüsselanhänger',
Item_Handiwork_Plastic: 'Plastikflasche',
Item_Handiwork_Ore: 'Sternensplitter',
Item_Record_00: '<span class="icon-note"></span>Hund und Katz',
Item_Record_01: '<span class="icon-note"></span>Schwertduell',
Item_Record_02: '<span class="icon-note"></span>Schlafenszeit',
Item_Record_03: '<span class="icon-note"></span>Überraschung',
Item_Record_04: '<span class="icon-note"></span>Telefon',
Item_Record_06: '<span class="icon-note"></span>Club Dog',
Item_Record_05: '<span class="icon-note"></span>Der Flohwalzer',
Item_Record_07: '<span class="icon-note"></span>Tanz der Rohrflöten',
Item_Record_08: '<span class="icon-note"></span>Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span>Csikós Post',
Item_Record_10: '<span class="icon-note"></span>Die Schlittschuhläufer',
Item_Record_11: '<span class="icon-note"></span> Danke schön!',
Item_Handiwork_Twig: '<span class="icon-recycle"></span>Holzstock',
Item_Handiwork_Iron: '<span class="icon-recycle"></span>Schraube und Mutter',
Item_Handiwork_Gom: '<span class="icon-recycle"></span>Autoreifen',
Item_Handiwork_Leather: '<span class="icon-recycle"></span>Leder-Schlüsselanhänger',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span>Plastikflasche',
Item_Handiwork_Ore: '<span class="icon-recycle"></span>Sternensplitter',
// Accessories
Item_Coller_Normal_Red: 'Rotes Lederhalsband',
@@ -161,9 +161,9 @@ Locale.add( 'de', {
Item_Coller_Chain: 'Kettenhalsband',
Item_Coller_Silver: 'Silberhalskette',
Item_Coller_Platinum: 'Platinhalsband',
Item_Coller_Cashmere: 'Kaschmishalsband',
Item_Coller_Cashmere: 'Kaschmirhalsband',
Item_Coller_Pearl_White: 'Perlenhalskette',
Item_Coller_Pearl_Black: 'Schwarze Perlenhalskette',
Item_Coller_Pearl_Black: 'Schwarze Perlenkette',
Item_Coller_Diamond: 'Diamantenhalsband',
Item_Coller_Jewelry: 'Königliches Collier',
Item_Coller_Champ: 'Siegermedaille',
@@ -251,7 +251,7 @@ Locale.add( 'de', {
Item_Glass_Celeb_Black: 'Schwarze VIP-Sonnenbrille',
Item_Glass_Celeb_Brown: 'VIP-Sonnenbrille',
Item_Glass_Celeb_Pink: 'Rosa VIP-Sonnenbrille',
Item_Glass_Star: 'Strernenbrille',
Item_Glass_Star: 'Sternenbrille',
Item_Glass_Heart: 'Herzbrille',
Item_Glass_Mask: 'Ballmaske',
Item_Glass_Champ: 'Siegerbrille',
@@ -302,7 +302,7 @@ Locale.add( 'de', {
Item_Lead_Brown: 'Braune Leine',
Item_Lead_Black: 'Schwarze Leine',
// Water Bowls (currently untranslated)
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
@@ -312,7 +312,7 @@ Locale.add( 'de', {
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls (currently untranslated)
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
@@ -331,5 +331,17 @@ Locale.add( 'de', {
Room_Luxury: 'Luxus-Ambiente',
Room_Fairy: 'Märchen',
Room_Mario: 'Mario',
Room_Future: 'Futuristisch'
Room_Future: 'Futuristisch',
// Competitions
GP_Disc: 'Disc-Wettbewerb',
GP_Lure: 'Coursing',
GP_Contest: 'Gehorsamkeitstest',
// Ranks
GP_Rank1: 'Juniorenpokal',
GP_Rank2: 'Amateurpokal',
GP_Rank3: 'Profipokal',
GP_Rank4: 'Meisterpokal',
GP_Rank5: 'Nintendogs-Pokal'
} );

View File

@@ -3,30 +3,30 @@ Locale.add( 'en', {
// Food & Drinks
Item_Foods_Water: 'Water',
Item_Foods_Milk: 'Milk',
Item_Foods_Dry: 'Dry Food',
Item_Foods_Wet: 'Wet Food',
Item_Foods_Diet: 'Diet Food',
Item_Foods_Premium: 'Premium Tinned Food',
Item_Foods_Cat_Dry: 'Dry Food',
Item_Foods_Cat_Wet: 'Wet Food',
Item_Foods_Cat_Diet: 'Diet Food',
Item_Foods_Cat_Premium: 'Premium Tinned Food',
Item_Foods_Dry: '<span class="icon-dog"></span> Dry Food',
Item_Foods_Wet: '<span class="icon-dog"></span> Wet Food',
Item_Foods_Diet: '<span class="icon-dog"></span> Diet Food',
Item_Foods_Premium: '<span class="icon-dog"></span> Premium Tinned Food',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Dry Food',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Wet Food',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Diet Food',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Premium Tinned Food',
Item_Snack_Biscuit: 'Biscuits',
Item_Snack_Dog: 'Puppy Biscuits',
Item_Snack_Bone: 'Bone Biscuits',
Item_Snack_Bolo: 'Biscuit Bits',
Item_Snack_Jky: 'Beef Jerky',
Item_Snack_Hart: 'Heart Biscuits',
Item_Snack_Gum: 'Puppy Chews',
Item_Snack_Cat_Cookies: 'Fish Biscuits',
Item_Snack_Cat_Jerky: 'Fish Jerky',
Item_Snack_Dog: '<span class="icon-dog"></span> Puppy Biscuits',
Item_Snack_Bone: '<span class="icon-dog"></span> Bone Biscuits',
Item_Snack_Bolo: '<span class="icon-dog"></span> Biscuit Bits',
Item_Snack_Jky: '<span class="icon-dog"></span> Beef Jerky',
Item_Snack_Hart: '<span class="icon-dog"></span> Heart Biscuits',
Item_Snack_Gum: '<span class="icon-dog"></span> Puppy Chews',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Fish Biscuits',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Fish Jerky',
Item_Snack_Voice: 'Surprise Biscuits',
Item_Snack_Cat_Chicken: 'Chicken Jerky',
Item_Snack_Cat_Grass: 'Cat Grass',
Item_Brush_Animal: 'Natural Bristle Brush',
Item_Brush_Pin: 'Wire Brush',
Item_Brush_Rubber: 'Rubber Brush',
Item_Brush_Corm: 'Comb',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Chicken Jerky',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Cat Grass',
Item_Brush_Animal: '<span class="icon-dog"></span> Natural Bristle Brush',
Item_Brush_Pin: '<span class="icon-dog"></span> Wire Brush',
Item_Brush_Rubber: '<span class="icon-cat"></span> Rubber Brush',
Item_Brush_Corm: '<span class="icon-cat"></span> Comb',
Item_Shampoo_Normal: 'Shampoo',
Item_Shampoo_Premium: 'Premium Shampoo',
@@ -40,7 +40,7 @@ Locale.add( 'en', {
Item_Bone_Meat: 'Meat Toy',
Item_Bone_Dumbbell: 'Rubber Dumb-Bell',
Item_Ball_Temari: 'Bell Ball',
Item_Ball_Wanwan: 'Squeky Ball',
Item_Ball_Wanwan: 'Squeaky Ball',
Item_Ball_Mushroom: 'Mushroom Toy',
Item_TowelCube: 'Soft Cube',
Item_Hamburger: 'Burger Toy',
@@ -80,7 +80,7 @@ Locale.add( 'en', {
Item_Foxtail_Normal_Blue: 'Blue Feather Cat Wand',
Item_Foxtail_Normal_Green: 'Green Feather Cat Wand',
Item_Foxtail_FishingPole_2: 'Dancing Feather Cat Wand',
Item_Foxtail_FishingPole_1: 'Hopping Mouse Cat Wand',
Item_Foxtail_FishingPole_1: 'Hopping Mouse Cat Wand ',
Item_Foxtail_FishingPole_4: 'Flying Butterfly Cat Wand',
Item_Foxtail_FishingPole_3: 'Jumping Fish Cat Wand',
Item_Toy_Chick: 'Wind-Up Miss Chickie',
@@ -90,7 +90,7 @@ Locale.add( 'en', {
Item_Kart_Peach: 'Peach Kart',
Item_Kart_Yoshi: 'Yoshi Kart',
Item_Heli_Nomal: 'RC Helicopter',
Item_Heli_Combat: 'Combar Copter',
Item_Heli_Combat: 'Combat Copter',
Item_Shoe: 'Leather Shoe',
Item_Shoe_Highheel: 'High Heel',
Item_Dog: 'Stuffed Dog',
@@ -101,24 +101,24 @@ Locale.add( 'en', {
Item_AR: 'AR Camera',
Item_Card: 'RoboPup Voucher',
Item_Piano: 'Keyboard',
Item_Record_00: 'Dog & Cat',
Item_Record_01: 'Frantic Frolics',
Item_Record_02: 'Up in the Clouds',
Item_Record_03: 'Surprise Beat',
Item_Record_04: 'Telephone',
Item_Record_06: 'Club Dog',
Item_Record_05: 'The Flea Waltz',
Item_Record_07: 'Danse des mirlitons',
Item_Record_08: 'Maple Leaf Rag',
Item_Record_09: 'Csikós Post',
Item_Record_10: 'Skaters\' Waltz',
Item_Record_11: 'Thank You',
Item_Handiwork_Twig: 'Wooden Stick',
Item_Handiwork_Iron: 'Metal Bolt',
Item_Handiwork_Gom: 'Rubber Tyre Chunk',
Item_Handiwork_Leather: 'Leather Key Ring',
Item_Handiwork_Plastic: 'Plastic Bottle',
Item_Handiwork_Ore: 'Stardust',
Item_Record_00: '<span class="icon-note"></span> Dog & Cat',
Item_Record_01: '<span class="icon-note"></span> Frantic Frolics',
Item_Record_02: '<span class="icon-note"></span> Up in the Clouds',
Item_Record_03: '<span class="icon-note"></span> Surprise Beat',
Item_Record_04: '<span class="icon-note"></span> Telephone',
Item_Record_06: '<span class="icon-note"></span> Club Dog',
Item_Record_05: '<span class="icon-note"></span> The Flea Waltz',
Item_Record_07: '<span class="icon-note"></span> Danse des mirlitons',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> Skaters\' Waltz',
Item_Record_11: '<span class="icon-note"></span> Thank You',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Wooden Stick',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Metal Bolt',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Rubber Tyre Chunk',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Leather Key Ring',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Plastic Bottle',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Stardust',
// Accessories
Item_Coller_Normal_Red: 'Red Leather Collar',
@@ -172,7 +172,7 @@ Locale.add( 'en', {
Item_Coller_Bowtie: 'Bow Tie',
Item_Coller_Scarf: 'Chef\'s Scarf',
Item_Coller_Women_Scarf: 'Lady\'s Scarf',
Item_Coller_Men_Scarf: 'Men\'s Scarf',
Item_Coller_Men_Scarf: 'Man\'s Scarf',
Item_Coller_Muffler: 'Red Woolly Scarf',
Item_Ribbon_Normal_Red: 'Red Bows',
Item_Ribbon_Normal_Yellow: 'Yellow Bows',
@@ -185,7 +185,7 @@ Locale.add( 'en', {
Item_Ribbon_Stripe_BlackWhite: 'Black Striped Bows',
Item_Ribbon_Stripe_RedWhite: 'Red Striped Bows',
Item_Ribbon_Torico: 'Tricolour Bows',
Item_Ribbon_Luxury: 'Fancy Bows',
Item_Ribbon_Luxury: 'Fancy Bow',
Item_Flower_Rose_Red: 'Red Rose',
Item_Flower_Rose_Pink: 'Pink Rose',
Item_Flower_Hibiscus_Red: 'Red Hibiscus Flower',
@@ -293,14 +293,14 @@ Locale.add( 'en', {
Furni_CatTowerHouse: 'Kitty Tree House',
// Leashes
Item_Lead_Red: 'Red Leash',
Item_Lead_White: 'White Leash',
Item_Lead_Blue: 'Blue Leash',
Item_Lead_Yellow: 'Yellow Leash',
Item_Lead_Green: 'Green Leash',
Item_Lead_Pink: 'Pink Leash',
Item_Lead_Brown: 'Brown Leash',
Item_Lead_Black: 'Black Leash',
Item_Lead_Red: 'Red Lead',
Item_Lead_White: 'White Lead',
Item_Lead_Blue: 'Blue Lead',
Item_Lead_Yellow: 'Yellow Lead',
Item_Lead_Green: 'Green Lead',
Item_Lead_Pink: 'Pink Lead',
Item_Lead_Brown: 'Brown Lead',
Item_Lead_Black: 'Black Lead',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
@@ -327,9 +327,21 @@ Locale.add( 'en', {
Room_Japanese: 'Japanese',
Room_Asia: 'Asian',
Room_Modern: 'Modern',
Room_Country: 'Country',
Room_Luxury: 'Luxerious House',
Room_Country: 'Country Home',
Room_Luxury: 'Luxurious',
Room_Fairy: 'Fairy Tale',
Room_Mario: 'Mario House',
Room_Future: 'Futuristic'
Room_Mario: 'Mario',
Room_Future: 'Futuristic',
// Competitions
GP_Disc: 'Disc Competition',
GP_Lure: 'Lure Coursing',
GP_Contest: 'Obedience Trial',
// Ranks
GP_Rank1: 'Junior Cup',
GP_Rank2: 'Amateur Cup',
GP_Rank3: 'Pro Cup',
GP_Rank4: 'Master Cup',
GP_Rank5: 'Nintendogs Cup'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in USA
Locale.add( 'en_alt', {
// Food & Drinks
Item_Foods_Water: 'Water',
Item_Foods_Milk: 'Formula',
Item_Foods_Dry: '<span class="icon-dog"></span> Dry Food',
Item_Foods_Wet: '<span class="icon-dog"></span> Wet Food',
Item_Foods_Diet: '<span class="icon-dog"></span> Diet Food',
Item_Foods_Premium: '<span class="icon-dog"></span> Premium Canned Food',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Dry Food',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Canned Food',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Diet Food',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Premium Canned Food',
Item_Snack_Biscuit: 'Biscuits',
Item_Snack_Dog: '<span class="icon-dog"></span> Puppy Biscuits',
Item_Snack_Bone: '<span class="icon-dog"></span> Bone Biscuits',
Item_Snack_Bolo: '<span class="icon-dog"></span> Treats',
Item_Snack_Jky: '<span class="icon-dog"></span> Beef Jerky',
Item_Snack_Hart: '<span class="icon-dog"></span> Heart Cookies',
Item_Snack_Gum: '<span class="icon-dog"></span> Puppy Chews',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Fish Cookies',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Fish Jerky',
Item_Snack_Voice: 'Surprise Cookies',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Chicken Jerky',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Cat Grass',
Item_Brush_Animal: '<span class="icon-dog"></span> Natural-Bristle Brush',
Item_Brush_Pin: '<span class="icon-dog"></span> Wire Brush',
Item_Brush_Rubber: '<span class="icon-cat"></span> Rubber Brush',
Item_Brush_Corm: '<span class="icon-cat"></span> Comb',
Item_Shampoo_Normal: 'Shampoo',
Item_Shampoo_Premium: 'Premium Shampoo',
// Toys
Item_Tennisball_Yellow: 'Tennis Ball',
Item_Tennisball_Pink: 'Pink-Contrast Tennis Ball',
Item_Tennisball_Blue: 'Blue-Contrast Tennis Ball',
Item_Bone_Normal_White: 'White Rubber Bone',
Item_Bone_Normal_Blue: 'Light-Blue Rubber Bone',
Item_Bone_Normal_Pink: 'Pink Rubber Bone',
Item_Bone_Meat: 'Meat Toy',
Item_Bone_Dumbbell: 'Rubber Dumbbell',
Item_Ball_Temari: 'Bell Ball',
Item_Ball_Wanwan: 'Squeaky Ball',
Item_Ball_Mushroom: 'Mushroom Toy',
Item_TowelCube: 'Soft Cube',
Item_Hamburger: 'Burger Toy',
Item_Ball_Soccer: 'Soccer Ball',
Item_Ball_Beach: 'Beach Ball',
Item_Flyingdisk_Normal_Beginner_Red: 'Red Flying Disc',
Item_Flyingdisk_Normal_Beginner_Blue: 'Blue Flying Disc',
Item_Flyingdisk_Normal_Beginner_Orange: 'Orange Flying Disc',
Item_Flyingdisk_Normal_Beginner_Green: 'Green Flying Disc',
Item_Flyingdisk_Normal_Pro_White: 'White Pro Flying Disc',
Item_Flyingdisk_Normal_Pro_Pink: 'Pink Pro Flying Disc',
Item_Flyingdisk_Normal_Pro_Yellow: 'Yellow Pro Flying Disc',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Light-Blue Pro Flying Disc',
Item_Flyingdisk_Toy_Candy: 'Lollipop Disc',
Item_Flyingdisk_Toy_Nabe: 'Pot Lid',
Item_Flyingdisk_Toy_Pizza: 'Pizza Disc',
Item_Fryingdisk_Toy_Hoop: 'Hoop',
Item_Flyingdisk_Rainbow: 'Rainbow Flying Disc',
Item_Boomerang_Blue: 'Blue Boomerang',
Item_Boomerang_Yellow: 'Yellow Boomerang',
Item_Lure_Normal_Beginner_Red: 'Red Lure',
Item_Lure_Normal_Beginner_Blue: 'Blue Lure',
Item_Lure_Normal_Beginner_Yellow: 'Yellow Lure',
Item_Lure_Normal_Beginner_Pink: 'Pink Lure',
Item_Lure_Normal_Pro_White: 'White Pro Lure',
Item_Lure_Normal_Pro_Green: 'Green Pro Lure',
Item_Lure_Normal_Pro_Orange: 'Orange Pro Lure',
Item_Lure_Normal_Pro_Blue: 'Light-Blue Pro Lure',
Item_Lure_Toy_Meat: 'Meat Lure',
Item_Lure_Toy_Rabbit: 'Bunny-Doll Lure',
Item_Lure_Toy_Banana: 'Banana Lure',
Item_Lure_Toy_Shoes: 'Ballet-Shoe Lure',
Item_Lure_Rainbow: 'Rainbow Lure',
Item_Balloon: 'Balloon',
Item_Bring: 'Bubbles',
Item_Foxtail_Normal_Pink: 'Pink-Feather Cat Wand',
Item_Foxtail_Normal_Blue: 'Blue-Feather Cat Wand',
Item_Foxtail_Normal_Green: 'Green-Feather Cat Wand',
Item_Foxtail_FishingPole_2: 'Dancing-Feather Cat Wand',
Item_Foxtail_FishingPole_1: 'Hopping-Mouse Cat Wand ',
Item_Foxtail_FishingPole_4: 'Flying-Butterfly Cat Wand',
Item_Foxtail_FishingPole_3: 'Jumping-Fish Cat Wand',
Item_Toy_Chick: 'Windup Miss Chickie',
Item_Toy_Flog: 'Windup Mr. Froggins',
Item_Toy_Mouse: 'Windup Sir Nibbles',
Item_Kart_Mario: 'Mario Kart',
Item_Kart_Peach: 'Peach Kart',
Item_Kart_Yoshi: 'Yoshi Kart',
Item_Heli_Nomal: 'RC Helicopter',
Item_Heli_Combat: 'Combat Copter',
Item_Shoe: 'Leather Shoe',
Item_Shoe_Highheel: 'High Heel',
Item_Dog: 'Stuffed Dog',
Item_Daruma: 'Tippy Toy',
Item_Diamond: 'Promise Ring',
Item_Gold: 'Gold Bar',
Item_Pot: 'Piggy Bank',
Item_AR: 'AR Camera',
Item_Card: 'RoboPup Voucher',
Item_Piano: 'Keyboard',
Item_Record_00: '<span class="icon-note"></span> Dog & Cat',
Item_Record_01: '<span class="icon-note"></span> Swordplay',
Item_Record_02: '<span class="icon-note"></span> Naptime',
Item_Record_03: '<span class="icon-note"></span> Surprise Beat',
Item_Record_04: '<span class="icon-note"></span> Telephone',
Item_Record_06: '<span class="icon-note"></span> Club Dog',
Item_Record_05: '<span class="icon-note"></span> Stepped on a Cat',
Item_Record_07: '<span class="icon-note"></span> Dance of the Reed Pipes',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> Skaters\' Waltz',
Item_Record_11: '<span class="icon-note"></span> Thank You',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Wooden Stick',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Metal Bolt',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Rubber Tire Chunk',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Leather Key Ring',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Plastic Bottle',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Stardust',
// Accessories
Item_Coller_Normal_Red: 'Red Leather Collar',
Item_Coller_Normal_Blue: 'Blue Leather Collar',
Item_Coller_Normal_Yellow: 'Yellow Leather Collar',
Item_Coller_Normal_Green: 'Green Leather Collar',
Item_Coller_Normal_Brown: 'Brown Leather Collar',
Item_Coller_Normal_White: 'White Leather Collar',
Item_Coller_Normal_Black: 'Black Leather Collar',
Item_Coller_Normal_Purple: 'Purple Leather Collar',
Item_Coller_Dot_Black: 'Black Polka-Dot Collar',
Item_Coller_Dot_Red: 'Red Polka-Dot Collar',
Item_Coller_Dot_Colorful: 'Dot Collar',
Item_Coller_Camouflage: 'Camo Collar',
Item_Coller_Rainbow: 'Rainbow Ring',
Item_Coller_Stripe: 'Striped Collar',
Item_Coller_Net: 'Woven Collar',
Item_Coller_Flower_Necklace: 'Flower Collar',
Item_Coller_Bead: 'Beaded Collar',
Item_Coller_Flower: 'Hibiscus Flower Lei',
Item_Coller_linestone_Star: 'Star Collar',
Item_Coller_linestone_Heart: 'Heart Collar',
Item_Coller_Lace: 'Lace Necklace',
Item_Coller_Choker: 'Leather Necklace',
Item_Coller_Cat_Red: 'Red Bell Collar',
Item_Coller_Cat_Blue: 'Blue Bell Collar',
Item_Coller_Cat_Green: 'Green Bell Collar',
Item_Coller_Cat_Brown: 'Brown Bell Collar',
Item_Coller_Japanese_Green: 'Green Japanese-Print Collar',
Item_Coller_Japanese_Red: 'Red Japanese-Print Collar',
Item_Coller_Japanese_Blue: 'Blue Japanese-Print Collar',
Item_Coller_Spike_Red: 'Red Spiked Collar',
Item_Coller_Spike_Black: 'Black Spiked Collar',
Item_Coller_Pattern_Python: 'Faux-Python Collar',
Item_Coller_Pattern_Panther: 'Faux-Leopard Collar',
Item_Coller_Pattern_Zebra: 'Faux-Zebra Collar',
Item_Coller_Pattern_Crocodile: 'Faux-Crocodile Collar',
Item_Coller_Luck: 'Southwest Collar',
Item_Coller_Deco: 'Glitzy Collar',
Item_Coller_Chain: 'Metal-Link Necklace',
Item_Coller_Silver: 'Silver Necklace',
Item_Coller_Platinum: 'Platinum Collar',
Item_Coller_Cashmere: 'Classy Collar',
Item_Coller_Pearl_White: 'Pearl Necklace',
Item_Coller_Pearl_Black: 'Black Pearl Necklace',
Item_Coller_Diamond: 'Diamond Collar',
Item_Coller_Jewelry: 'Royal Heirloom Necklace',
Item_Coller_Champ: 'Victory Collar',
Item_Coller_Bandana: 'Kid\'s Bandanna',
Item_Coller_Western: 'Fringed Leather Collar',
Item_Coller_Bowtie: 'Bow Tie',
Item_Coller_Scarf: 'Chef\'s Scarf',
Item_Coller_Women_Scarf: 'Ladies\' Scarf',
Item_Coller_Men_Scarf: 'Men\'s Scarf',
Item_Coller_Muffler: 'Red Knit Scarf',
Item_Ribbon_Normal_Red: 'Red Bow',
Item_Ribbon_Normal_Yellow: 'Yellow Bow',
Item_Ribbon_Check_Red: 'Red-Checkered Bow',
Item_Ribbon_Check_Blue: 'Blue-Checkered Bow',
Item_Ribbon_Polkadot_Red: 'Pink Polka-Dot Bow',
Item_Ribbon_Polkadot_Blue: 'Blue Polka-Dot Bow',
Item_Ribbon_Pearl_Purple: 'Purple Pearl Bow',
Item_Ribbon_Pearl_Green: 'Green Pearl Bow',
Item_Ribbon_Stripe_BlackWhite: 'Black-Striped Bow',
Item_Ribbon_Stripe_RedWhite: 'Red-Striped Bow',
Item_Ribbon_Torico: 'Tricolor Bow',
Item_Ribbon_Luxury: 'Fancy Bow',
Item_Flower_Rose_Red: 'Red Rose',
Item_Flower_Rose_Pink: 'Pink Rose',
Item_Flower_Hibiscus_Red: 'Red Hibiscus Flower',
Item_Flower_Hibiscus_White: 'White Hibiscus Flower',
Item_Flower_Sunflower: 'Sunflower',
Item_Headgear_Cap_Red: 'Red Cap',
Item_Headgear_Cap_Yellow: 'Yellow Cap',
Item_Headgear_Cap_Black: 'Black Cap',
Item_Headgear_Casket: 'Newsboy Cap',
Item_Headgear_Leather: 'Leather Cap',
Item_Headgear_Knit_Red: 'Red Knit Hat',
Item_Headgear_Knit_Yellow: 'Yellow Knit Hat',
Item_Headgear_Knit_Black: 'Black Knit Hat',
Item_Headgear_Knit_White: 'White Knit Hat',
Item_Headgear_Knit2: 'Men\'s Knit Hat',
Item_Headgear_Beret: 'Beret',
Item_Headgear_Sunvisor: 'Sun Visor',
Item_Headgear_Mugi: 'Straw Hat',
Item_Headgear_Brim_White: 'White Bucket Hat',
Item_Headgear_Brim_Black: 'Black Bucket Hat',
Item_Headgear_Brim_Beige: 'Beige Bucket Hat',
Item_Headgear_Tengallon_Brown: 'Brown Safari Hat',
Item_Headgear_Tengallon_White: 'White Safari Hat',
Item_Headgear_Silk_Black: 'Black Top Hat',
Item_Headgear_Silk_White: 'White Top Hat',
Item_Headgear_Borsalino: 'Fedora',
Item_Headgear_Bucket: 'Bonnet',
Item_Headgear_Feather_Green: 'Feathered Green Hat',
Item_Headgear_Feather_Purple: 'Feathered Purple Hat',
Item_Headgear_Pixiehat: 'Pointy Hat',
Item_Headgear_Santa: 'Santa\'s Hat',
Item_Headgear_Cook: 'Chef\'s Hat',
Item_Headgear_Viking: 'Viking Hat',
Item_Headgear_Party: 'Party Hat',
Item_Headgear_Maid: 'Headpiece',
Item_Headgear_Helmet: 'Stunt Helmet',
Item_Headgear_Armor: 'Origami Hat',
Item_Headgear_Regent: 'Pompadour Wig',
Item_Headgear_Mushroom: 'Bowl-Cut Wig',
Item_Headgear_Afro: 'Rainbow Wig',
Item_Headgear_Fruit_Strawberry: 'Strawberry Hood',
Item_Headgear_Tiara: 'Tiara',
Item_Headgear_Crown: 'Crown',
Item_Headgear_Champ: 'Victory Crown',
Item_Headgear_Mario: 'Mario\'s Hat',
Item_Headgear_Luigi: 'Luigi\'s Hat',
Item_Headgear_Kinopio: 'Toad Hat',
Item_Headgear_Link: 'Hero\'s Hat',
Item_Headgear_PikminRed: 'Red Pikmin Hat',
Item_Headgear_PikminBlue: 'Blue Pikmin Hat',
Item_Headgear_PikminYellow: 'Yellow Pikmin Hat',
Item_Headgear_Samus: 'Power-Suit Helmet',
Item_Headgear_Kirby: 'Kirby Hat',
Item_Glass_Intell: 'Scholar Glasses',
Item_Glass_Business: 'Business Glasses',
Item_Glass_Cell_Red: 'Red Fashion Specs',
Item_Glass_Cell_Black: 'Black Fashion Specs',
Item_Glass_Deka: 'Cop Sunglasses',
Item_Glass_Sunglasses_White: 'White Sunglasses',
Item_Glass_Sunglasses_Yellow: 'Yellow Sunglasses',
Item_Glass_Sunglasses_Red: 'Red Sunglasses',
Item_Glass_UV: 'Sporty Sunglasses',
Item_Glass_Celeb_Black: 'Black Movie-Star Shades',
Item_Glass_Celeb_Brown: 'Brown Movie-Star Shades',
Item_Glass_Celeb_Pink: 'Pink Movie-Star Shades',
Item_Glass_Star: 'Star Shades',
Item_Glass_Heart: 'Heart Shades',
Item_Glass_Mask: 'Masquerade Mask',
Item_Glass_Champ: 'Victory Specs',
// Furnitures
Furni_BedRattan: 'Wicker Dog Bed',
Furni_BedCloth: 'Plush Dog Bed',
Furni_MiniBed: 'Miniature Bed',
Furni_SofaCouch: 'Comfy Couch',
Furni_SofaAntique: 'Antique Sofa',
Furni_SofaFairy: 'Fancy Love Seat',
Furni_SofaLeather: 'Leather Sofa',
Furni_SofaCF: 'Armchair',
Furni_ChairModern: 'Designer Chair',
Furni_ChairMario: 'Koopa-Shell Chair',
Furni_ChestStandard: 'Dresser',
Furni_ChestAntique: 'Antique Chest',
Furni_ShelfNorse: 'Wooden Cabinet',
Furni_ShelfAsia: 'Bookcase',
Furni_ShelfCupHigh: 'Cupboard',
Furni_ChestAsia: 'Display Shelves',
Furni_ChestJapanese: 'Japanese Step-Chest',
Furni_ClosetFairy: 'Fancy Wardrobe',
Furni_ShowCase: 'Display Case',
Furni_ShelfFuture: 'Starship Cabinet',
Furni_TableDining: 'Dining-Table Set',
Furni_TableMario: 'Mushroom-Table Set',
Furni_Fridge: 'Refrigerator',
Furni_ElectricFan: 'Retro Fan',
Furni_ElectricFanF: 'Electronic Fan',
Furni_StoveOil: 'Oil Heater',
Furni_AquariumSmall: 'Fishbowl',
Furni_AquariumBig: 'Arowana Aquarium',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Retro Tube TV',
Furni_TVLCD: 'Flat-Screen TV',
Furni_CatTowerSimple: 'Simple Cat Tower',
Furni_CatTowerSlim: 'Slim Cat Tower',
Furni_CatTowerHouse: 'Kitty Treehouse',
// Leashes
Item_Lead_Red: 'Red Leash',
Item_Lead_White: 'White Leash',
Item_Lead_Blue: 'Blue Leash',
Item_Lead_Yellow: 'Yellow Leash',
Item_Lead_Green: 'Green Leash',
Item_Lead_Pink: 'Pink Leash',
Item_Lead_Brown: 'Brown Leash',
Item_Lead_Black: 'Black Leash',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Scandinavian',
Room_Japanese: 'Japanese Style',
Room_Asia: 'Asian Style',
Room_Modern: 'Modern',
Room_Country: 'Country Home',
Room_Luxury: 'Luxurious',
Room_Fairy: 'Fairy Tale',
Room_Mario: 'Mario Style',
Room_Future: 'Futuristic',
// Competitions
GP_Disc: 'Disc Competition',
GP_Lure: 'Lure Coursing',
GP_Contest: 'Obedience Trial',
// Ranks
GP_Rank1: 'Junior Cup',
GP_Rank2: 'Amateur Cup',
GP_Rank3: 'Pro Cup',
GP_Rank4: 'Master Cup',
GP_Rank5: 'Nintendogs Cup'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'es', {
// Food & Drinks
Item_Foods_Water: 'Agua',
Item_Foods_Milk: 'Leche',
Item_Foods_Dry: '<span class="icon-dog"></span> Croquetas',
Item_Foods_Wet: '<span class="icon-dog"></span> Comida húmeda',
Item_Foods_Diet: '<span class="icon-dog"></span> Comida dietética',
Item_Foods_Premium: '<span class="icon-dog"></span> Comida enlatada especial',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Croquetas',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Comida húmeda',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Comida dietética',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Comida enlatada especial',
Item_Snack_Biscuit: 'Galletas',
Item_Snack_Dog: '<span class="icon-dog"></span> Galletas cachorro',
Item_Snack_Bone: '<span class="icon-dog"></span> Galletas hueso',
Item_Snack_Bolo: '<span class="icon-dog"></span> Bollitos',
Item_Snack_Jky: '<span class="icon-dog"></span> Golosinas de ternera',
Item_Snack_Hart: '<span class="icon-dog"></span> Galletas corazón',
Item_Snack_Gum: '<span class="icon-dog"></span> Golosinas de cuidado dental',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Galletas de pescado',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Golosinas de pescado',
Item_Snack_Voice: 'Galletas sorpresa',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Golosinas de pollo',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Hierba para gatos',
Item_Brush_Animal: '<span class="icon-dog"></span> Cepillo de cerdas naturales',
Item_Brush_Pin: '<span class="icon-dog"></span> Cepillo de púas',
Item_Brush_Rubber: '<span class="icon-cat"></span> Cepillo de goma',
Item_Brush_Corm: '<span class="icon-cat"></span> Peine',
Item_Shampoo_Normal: 'Champú',
Item_Shampoo_Premium: 'Champú especial',
// Toys
Item_Tennisball_Yellow: 'Pelota de tenis',
Item_Tennisball_Pink: 'Pelota de tenis rosa',
Item_Tennisball_Blue: 'Pelota de tenis azul',
Item_Bone_Normal_White: 'Hueso de goma blanco',
Item_Bone_Normal_Blue: 'Hueso de goma azul',
Item_Bone_Normal_Pink: 'Hueso de goma rosa',
Item_Bone_Meat: 'Trozo de carne de goma',
Item_Bone_Dumbbell: 'Mancuerna de goma',
Item_Ball_Temari: 'Pelota con cascabel',
Item_Ball_Wanwan: 'Pelota blanda',
Item_Ball_Mushroom: 'Champiñón de goma',
Item_TowelCube: 'Cojín de paño',
Item_Hamburger: 'Hamburguesa de goma',
Item_Ball_Soccer: 'Balón',
Item_Ball_Beach: 'Pelota de playa',
Item_Flyingdisk_Normal_Beginner_Red: 'Disco volador rojo',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disco volador azul',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disco volador naranja',
Item_Flyingdisk_Normal_Beginner_Green: 'Disco volador verde',
Item_Flyingdisk_Normal_Pro_White: 'Disco profesional blanco',
Item_Flyingdisk_Normal_Pro_Pink: 'Disco profesional rosa',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disco profesional amarillo',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disco profesional azul',
Item_Flyingdisk_Toy_Candy: 'Disco piruleta',
Item_Flyingdisk_Toy_Nabe: 'Tapadera',
Item_Flyingdisk_Toy_Pizza: 'Disco pizza',
Item_Fryingdisk_Toy_Hoop: 'Aro',
Item_Flyingdisk_Rainbow: 'Disco multicolor',
Item_Boomerang_Blue: 'Bumerán azul',
Item_Boomerang_Yellow: 'Bumerán amarillo',
Item_Lure_Normal_Beginner_Red: 'Señuelo rojo',
Item_Lure_Normal_Beginner_Blue: 'Señuelo azul',
Item_Lure_Normal_Beginner_Yellow: 'Señuelo amarillo',
Item_Lure_Normal_Beginner_Pink: 'Señuelo rosa',
Item_Lure_Normal_Pro_White: 'Señuelo profesional blanco',
Item_Lure_Normal_Pro_Green: 'Señuelo profesional verde',
Item_Lure_Normal_Pro_Orange: 'Señuelo profesional naranja',
Item_Lure_Normal_Pro_Blue: 'Señuelo profesional azul',
Item_Lure_Toy_Meat: 'Señuelo chuleta',
Item_Lure_Toy_Rabbit: 'Señuelo conejo',
Item_Lure_Toy_Banana: 'Señuelo plátanos',
Item_Lure_Toy_Shoes: 'Señuelo ballet',
Item_Lure_Rainbow: 'Señuelo multicolor',
Item_Balloon: 'Globo',
Item_Bring: 'Pompero',
Item_Foxtail_Normal_Pink: 'Caña con pluma rosa',
Item_Foxtail_Normal_Blue: 'Caña con pluma azul',
Item_Foxtail_Normal_Green: 'Caña con pluma verde',
Item_Foxtail_FishingPole_2: 'Caña con plumas',
Item_Foxtail_FishingPole_1: 'Caña con ratón',
Item_Foxtail_FishingPole_4: 'Caña con mariposa',
Item_Foxtail_FishingPole_3: 'Caña con pez',
Item_Toy_Chick: 'Pollito de cuerda',
Item_Toy_Flog: 'Ranita de cuerda',
Item_Toy_Mouse: 'Ratoncito de cuerda',
Item_Kart_Mario: 'Kart de Mario',
Item_Kart_Peach: 'Kart de Peach',
Item_Kart_Yoshi: 'Kart de Yoshi',
Item_Heli_Nomal: 'Helicóptero teledirigido',
Item_Heli_Combat: 'Helicóptero de combate',
Item_Shoe: 'Zapato de cuero',
Item_Shoe_Highheel: 'Zapato de tacón',
Item_Dog: 'Perro de peluche',
Item_Daruma: 'Tentetieso',
Item_Diamond: 'Anillo de compromiso',
Item_Gold: 'Lingote de oro',
Item_Pot: 'Hucha',
Item_AR: 'Cámara RA',
Item_Card: 'Vale por 1 perrobot',
Item_Piano: 'Teclado',
Item_Record_00: '<span class="icon-note"></span> Perro y gato',
Item_Record_01: '<span class="icon-note"></span> Duelo de espadachines',
Item_Record_02: '<span class="icon-note"></span> Siesta',
Item_Record_03: '<span class="icon-note"></span> Ritmo sorpresa',
Item_Record_04: '<span class="icon-note"></span> Teléfono',
Item_Record_06: '<span class="icon-note"></span> Club canino',
Item_Record_05: '<span class="icon-note"></span> La chocolatera',
Item_Record_07: '<span class="icon-note"></span> Danza de las flautas',
Item_Record_08: '<span class="icon-note"></span> Rag de la hoja de arce',
Item_Record_09: '<span class="icon-note"></span> Csikos Post',
Item_Record_10: '<span class="icon-note"></span> Vals de los patinadores',
Item_Record_11: '<span class="icon-note"></span> ¡Gracias!',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Palo de madera',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Tornillo de metal',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Neumático de goma',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Llavero de cuero',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Botella de plástico',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Polvo de estrella',
// Accessories
Item_Coller_Normal_Red: 'Collar de cuero rojo',
Item_Coller_Normal_Blue: 'Collar de cuero azul',
Item_Coller_Normal_Yellow: 'Collar de cuero amarillo',
Item_Coller_Normal_Green: 'Collar de cuero verde',
Item_Coller_Normal_Brown: 'Collar de cuero marrón',
Item_Coller_Normal_White: 'Collar de cuero blanco',
Item_Coller_Normal_Black: 'Collar de cuero negro',
Item_Coller_Normal_Purple: 'Collar de cuero lila',
Item_Coller_Dot_Black: 'Collar negro con topos',
Item_Coller_Dot_Red: 'Collar rojo con topos',
Item_Coller_Dot_Colorful: 'Collar de lunares',
Item_Coller_Camouflage: 'Collar de camuflaje',
Item_Coller_Rainbow: 'Collar multicolor',
Item_Coller_Stripe: 'Collar de rayas',
Item_Coller_Net: 'Collar trenzado',
Item_Coller_Flower_Necklace: 'Collar de flores',
Item_Coller_Bead: 'Collar de cuentas',
Item_Coller_Flower: 'Collar de flores de hibisco',
Item_Coller_linestone_Star: 'Collar de estrella',
Item_Coller_linestone_Heart: 'Collar de corazón',
Item_Coller_Lace: 'Gargantilla de encaje',
Item_Coller_Choker: 'Gargantilla de cuero',
Item_Coller_Cat_Red: 'Collar rojo con cascabel',
Item_Coller_Cat_Blue: 'Collar azul con cascabel',
Item_Coller_Cat_Green: 'Collar verde con cascabel',
Item_Coller_Cat_Brown: 'Collar marrón con cascabel',
Item_Coller_Japanese_Green: 'Collar oriental verde',
Item_Coller_Japanese_Red: 'Collar oriental rojo',
Item_Coller_Japanese_Blue: 'Collar oriental azul',
Item_Coller_Spike_Red: 'Collar de pinchos rojo',
Item_Coller_Spike_Black: 'Collar de pinchos negro',
Item_Coller_Pattern_Python: 'Collar de serpiente de imitación',
Item_Coller_Pattern_Panther: 'Collar de leopardo de imitación',
Item_Coller_Pattern_Zebra: 'Collar de cebra de imitación',
Item_Coller_Pattern_Crocodile: 'Collar de cocodrilo de imitación',
Item_Coller_Luck: 'Collar con turquesas',
Item_Coller_Deco: 'Collar de bisutería',
Item_Coller_Chain: 'Collar de metal',
Item_Coller_Silver: 'Collar de plata',
Item_Coller_Platinum: 'Collar de platino',
Item_Coller_Cashmere: 'Collar de cachemir',
Item_Coller_Pearl_White: 'Collar de perlas',
Item_Coller_Pearl_Black: 'Collar de perlas negras',
Item_Coller_Diamond: 'Collar de diamantes',
Item_Coller_Jewelry: 'Collar real',
Item_Coller_Champ: 'Medalla de campeón',
Item_Coller_Bandana: 'Pañuelo de niño',
Item_Coller_Western: 'Collar con flecos',
Item_Coller_Bowtie: 'Pajarita',
Item_Coller_Scarf: 'Pañuelo',
Item_Coller_Women_Scarf: 'Bufanda de señora',
Item_Coller_Men_Scarf: 'Bufanda de caballero',
Item_Coller_Muffler: 'Bufanda de lana roja',
Item_Ribbon_Normal_Red: 'Lazo rojo',
Item_Ribbon_Normal_Yellow: 'Lazo amarillo',
Item_Ribbon_Check_Red: 'Lazo rosa de cuadritos',
Item_Ribbon_Check_Blue: 'Lazo azul de cuadritos',
Item_Ribbon_Polkadot_Red: 'Lazo rosa con topos',
Item_Ribbon_Polkadot_Blue: 'Lazo azul con topos',
Item_Ribbon_Pearl_Purple: 'Lazo lila con perla',
Item_Ribbon_Pearl_Green: 'Lazo verde con perla',
Item_Ribbon_Stripe_BlackWhite: 'Lazo negro de rayas',
Item_Ribbon_Stripe_RedWhite: 'Lazo rojo de rayas',
Item_Ribbon_Torico: 'Lazo tricolor',
Item_Ribbon_Luxury: 'Lazo elegante',
Item_Flower_Rose_Red: 'Rosa roja',
Item_Flower_Rose_Pink: 'Rosa rosada',
Item_Flower_Hibiscus_Red: 'Flor de hibisco roja',
Item_Flower_Hibiscus_White: 'Flor de hibisco blanca',
Item_Flower_Sunflower: 'Girasol',
Item_Headgear_Cap_Red: 'Gorra roja',
Item_Headgear_Cap_Yellow: 'Gorra amarilla',
Item_Headgear_Cap_Black: 'Gorra negra',
Item_Headgear_Casket: 'Gorra de niño',
Item_Headgear_Leather: 'Gorra de cuero',
Item_Headgear_Knit_Red: 'Gorro de lana rojo',
Item_Headgear_Knit_Yellow: 'Gorro de lana amarillo',
Item_Headgear_Knit_Black: 'Gorro de lana negro',
Item_Headgear_Knit_White: 'Gorro de lana blanco',
Item_Headgear_Knit2: 'Gorro de lana',
Item_Headgear_Beret: 'Boina',
Item_Headgear_Sunvisor: 'Visera',
Item_Headgear_Mugi: 'Sombrero de paja',
Item_Headgear_Brim_White: 'Gorro de pescador blanco',
Item_Headgear_Brim_Black: 'Gorro de pescador negro',
Item_Headgear_Brim_Beige: 'Gorro de pescador beis',
Item_Headgear_Tengallon_Brown: 'Sombrero de vaquero marrón',
Item_Headgear_Tengallon_White: 'Sombrero de vaquero blanco',
Item_Headgear_Silk_Black: 'Chistera',
Item_Headgear_Silk_White: 'Chistera blanca',
Item_Headgear_Borsalino: 'Sombrero de caballero',
Item_Headgear_Bucket: 'Sombrero de señora',
Item_Headgear_Feather_Green: 'Sombrero verde con pluma',
Item_Headgear_Feather_Purple: 'Sombrero morado con pluma',
Item_Headgear_Pixiehat: 'Sombrero puntiagudo',
Item_Headgear_Santa: 'Gorro de Papá Noel',
Item_Headgear_Cook: 'Gorro de cocinero',
Item_Headgear_Viking: 'Casco vikingo',
Item_Headgear_Party: 'Sombrero de broma',
Item_Headgear_Maid: 'Tocado',
Item_Headgear_Helmet: 'Casco',
Item_Headgear_Armor: 'Sombrero de papel',
Item_Headgear_Regent: 'Peluca con tupé',
Item_Headgear_Mushroom: 'Peluca tazón',
Item_Headgear_Afro: 'Peluca multicolor',
Item_Headgear_Fruit_Strawberry: 'Capuchón fresa',
Item_Headgear_Tiara: 'Diadema plateada',
Item_Headgear_Crown: 'Corona',
Item_Headgear_Champ: 'Corona de campeón',
Item_Headgear_Mario: 'Gorra de Mario',
Item_Headgear_Luigi: 'Gorra de Luigi',
Item_Headgear_Kinopio: 'Gorro de Toad',
Item_Headgear_Link: 'Gorro de héroe',
Item_Headgear_PikminRed: 'Capuchón de Pikmin rojo',
Item_Headgear_PikminBlue: 'Capuchón de Pikmin azul',
Item_Headgear_PikminYellow: 'Capuchón de Pikmin amarillo',
Item_Headgear_Samus: 'Casco espacial',
Item_Headgear_Kirby: 'Gorro de Kirby',
Item_Glass_Intell: 'Gafas de intelectual',
Item_Glass_Business: 'Gafas de negocios',
Item_Glass_Cell_Red: 'Gafas de diseño rojas',
Item_Glass_Cell_Black: 'Gafas de diseño negras',
Item_Glass_Deka: 'Gafas de sol de policía',
Item_Glass_Sunglasses_White: 'Gafas de sol blancas',
Item_Glass_Sunglasses_Yellow: 'Gafas de sol amarillas',
Item_Glass_Sunglasses_Red: 'Gafas de sol rojas',
Item_Glass_UV: 'Gafas de sol deportivas',
Item_Glass_Celeb_Black: 'Gafas de famoso negras',
Item_Glass_Celeb_Brown: 'Gafas de famoso marrones',
Item_Glass_Celeb_Pink: 'Gafas de famoso rosas',
Item_Glass_Star: 'Gafas de estrellas',
Item_Glass_Heart: 'Gafas de corazones',
Item_Glass_Mask: 'Antifaz',
Item_Glass_Champ: 'Gafas de campeón',
// Furnitures
Furni_BedRattan: 'Cama de mimbre',
Furni_BedCloth: 'Cama mullida',
Furni_MiniBed: 'Camita',
Furni_SofaCouch: 'Sofá cómodo',
Furni_SofaAntique: 'Sofá antiguo',
Furni_SofaFairy: 'Sofá romántico',
Furni_SofaLeather: 'Sofá de cuero',
Furni_SofaCF: 'Sillón',
Furni_ChairModern: 'Silla de diseño',
Furni_ChairMario: 'Silla caparazón',
Furni_ChestStandard: 'Cómoda sencilla',
Furni_ChestAntique: 'Cómoda antigua',
Furni_ShelfNorse: 'Estante',
Furni_ShelfAsia: 'Estantería',
Furni_ShelfCupHigh: 'Aparador',
Furni_ChestAsia: 'Vitrina',
Furni_ChestJapanese: 'Cómoda japonesa',
Furni_ClosetFairy: 'Armario elegante',
Furni_ShowCase: 'Alacena',
Furni_ShelfFuture: 'Armario futurista',
Furni_TableDining: 'Mesa con sillas',
Furni_TableMario: 'Mesa champiñón con silla',
Furni_Fridge: 'Frigorífico',
Furni_ElectricFan: 'Ventilador retro',
Furni_ElectricFanF: 'Ventilador moderno',
Furni_StoveOil: 'Estufa',
Furni_AquariumSmall: 'Pecera',
Furni_AquariumBig: 'Acuario',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Televisor retro',
Furni_TVLCD: 'Televisor de pantalla plana',
Furni_CatTowerSimple: 'Mueble simple para gatos',
Furni_CatTowerSlim: 'Mueble alto para gatos',
Furni_CatTowerHouse: 'Mueble para gatos',
// Leashes
Item_Lead_Red: 'Correa roja',
Item_Lead_White: 'Correa blanca',
Item_Lead_Blue: 'Correa azul',
Item_Lead_Yellow: 'Correa amarilla',
Item_Lead_Green: 'Correa verde',
Item_Lead_Pink: 'Correa rosa',
Item_Lead_Brown: 'Correa marrón',
Item_Lead_Black: 'Correa negra',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Estilo escandinavo',
Room_Japanese: 'Estilo japonés',
Room_Asia: 'Estilo asiático',
Room_Modern: 'Estilo moderno',
Room_Country: 'Estilo rústico',
Room_Luxury: 'Estilo lujoso',
Room_Fairy: 'Estilo fantasía',
Room_Mario: 'Estilo Mario',
Room_Future: 'Estilo futurista',
// Competitions
GP_Disc: 'Concurso de disco',
GP_Lure: 'Carrera canina',
GP_Contest: 'Prueba de obediencia',
// Ranks
GP_Rank1: 'Copa principiante',
GP_Rank2: 'Copa aficionado',
GP_Rank3: 'Copa profesional',
GP_Rank4: 'Copa maestro',
GP_Rank5: 'Copa Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in USA
Locale.add( 'es_alt', {
// Food & Drinks
Item_Foods_Water: 'Agua',
Item_Foods_Milk: 'Leche',
Item_Foods_Dry: '<span class="icon-dog"></span> Croquetas',
Item_Foods_Wet: '<span class="icon-dog"></span> Comida húmeda',
Item_Foods_Diet: '<span class="icon-dog"></span> Comida dietética',
Item_Foods_Premium: '<span class="icon-dog"></span> Comida enlatada especial',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Croquetas',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Comida húmeda',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Comida dietética',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Comida enlatada especial',
Item_Snack_Biscuit: 'Galletas',
Item_Snack_Dog: '<span class="icon-dog"></span> Galletas cachorro',
Item_Snack_Bone: '<span class="icon-dog"></span> Galletas hueso',
Item_Snack_Bolo: '<span class="icon-dog"></span> Bollitos',
Item_Snack_Jky: '<span class="icon-dog"></span> Golosinas de ternera',
Item_Snack_Hart: '<span class="icon-dog"></span> Galletas corazón',
Item_Snack_Gum: '<span class="icon-dog"></span> Golosinas de cuidado dental',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Galletas de pescado',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Golosinas de pescado',
Item_Snack_Voice: '<span class="icon-dog"></span> Galletas sorpresa',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Golosinas de pollo',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Hierba para gatos',
Item_Brush_Animal: '<span class="icon-dog"></span> Cepillo de cerdas naturales',
Item_Brush_Pin: '<span class="icon-dog"></span> Cepillo de púas',
Item_Brush_Rubber: '<span class="icon-cat"></span> Cepillo de goma',
Item_Brush_Corm: '<span class="icon-cat"></span> Peine',
Item_Shampoo_Normal: 'Champú',
Item_Shampoo_Premium: 'Champú especial',
// Toys
Item_Tennisball_Yellow: 'Pelota de tenis',
Item_Tennisball_Pink: 'Pelota de tenis rosa',
Item_Tennisball_Blue: 'Pelota de tenis azul',
Item_Bone_Normal_White: 'Hueso de goma blanco',
Item_Bone_Normal_Blue: 'Hueso de goma azul',
Item_Bone_Normal_Pink: 'Hueso de goma rosa',
Item_Bone_Meat: 'Trozo de carne de goma',
Item_Bone_Dumbbell: 'Mancuerna de goma',
Item_Ball_Temari: 'Pelota con cascabel',
Item_Ball_Wanwan: 'Pelota blanda',
Item_Ball_Mushroom: 'Champiñon de goma',
Item_TowelCube: 'Cojín de paño',
Item_Hamburger: 'Hamburguesa de goma',
Item_Ball_Soccer: 'Balón',
Item_Ball_Beach: 'Pelota de playa',
Item_Flyingdisk_Normal_Beginner_Red: 'Disco volador rojo',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disco volador azul',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disco volador naranja',
Item_Flyingdisk_Normal_Beginner_Green: 'Disco volador verde',
Item_Flyingdisk_Normal_Pro_White: 'Disco profesional blanco',
Item_Flyingdisk_Normal_Pro_Pink: 'Disco profesional rosa',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disco profesional amarillo',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disco profesional azul',
Item_Flyingdisk_Toy_Candy: 'Disco paleta',
Item_Flyingdisk_Toy_Nabe: 'Tapadera',
Item_Flyingdisk_Toy_Pizza: 'Disco pizza',
Item_Fryingdisk_Toy_Hoop: 'Aro',
Item_Flyingdisk_Rainbow: 'Disco multicolor',
Item_Boomerang_Blue: 'Bumerán azul',
Item_Boomerang_Yellow: 'Bumerán amarillo',
Item_Lure_Normal_Beginner_Red: 'Señuelo rojo',
Item_Lure_Normal_Beginner_Blue: 'Señuelo azul',
Item_Lure_Normal_Beginner_Yellow: 'Señuelo amarillo',
Item_Lure_Normal_Beginner_Pink: 'Señuelo rosa',
Item_Lure_Normal_Pro_White: 'Señuelo profesional blanco',
Item_Lure_Normal_Pro_Green: 'Señuelo profesional verde',
Item_Lure_Normal_Pro_Orange: 'Señuelo profesional naranja',
Item_Lure_Normal_Pro_Blue: 'Señuelo profesional azul',
Item_Lure_Toy_Meat: 'Señuelo chuleta',
Item_Lure_Toy_Rabbit: 'Señuelo conejo',
Item_Lure_Toy_Banana: 'Señuelo plátanos',
Item_Lure_Toy_Shoes: 'Señuelo ballet',
Item_Lure_Rainbow: 'Señuelo multicolor',
Item_Balloon: 'Globo',
Item_Bring: 'Frasco de burbujas de jabón',
Item_Foxtail_Normal_Pink: 'Caña con pluma rosa',
Item_Foxtail_Normal_Blue: 'Caña con pluma azul',
Item_Foxtail_Normal_Green: 'Caña con pluma verde',
Item_Foxtail_FishingPole_2: 'Caña con plumas',
Item_Foxtail_FishingPole_1: 'Caña con ratón',
Item_Foxtail_FishingPole_4: 'Caña con mariposa',
Item_Foxtail_FishingPole_3: 'Caña con pez',
Item_Toy_Chick: 'Pollito de cuerda',
Item_Toy_Flog: 'Ranita de cuerda',
Item_Toy_Mouse: 'Ratoncito de cuerda',
Item_Kart_Mario: 'Kart de Mario',
Item_Kart_Peach: 'Kart de Peach',
Item_Kart_Yoshi: 'Kart de Yoshi',
Item_Heli_Nomal: 'Helicóptero teledirigido',
Item_Heli_Combat: 'Helicóptero de combate',
Item_Shoe: 'Zapato de cuero',
Item_Shoe_Highheel: 'Zapato de tacón',
Item_Dog: 'Perro de peluche',
Item_Daruma: 'Tentetieso',
Item_Diamond: 'Anillo de compromiso',
Item_Gold: 'Lingote de oro',
Item_Pot: 'Alcancía',
Item_AR: 'Cámara RA',
Item_Card: 'Vale por 1 perrobot',
Item_Piano: 'Teclado',
Item_Record_00: '<span class="icon-note"></span> Perro y gato',
Item_Record_01: '<span class="icon-note"></span> Duelo de espadachines',
Item_Record_02: '<span class="icon-note"></span> Siesta',
Item_Record_03: '<span class="icon-note"></span> Ritmo sorpresa',
Item_Record_04: '<span class="icon-note"></span> Teléfono',
Item_Record_06: '<span class="icon-note"></span> Estrella canina',
Item_Record_05: '<span class="icon-note"></span> La chocolatera',
Item_Record_07: '<span class="icon-note"></span> Danza de las flautas',
Item_Record_08: '<span class="icon-note"></span> Rag de la hoja de arce',
Item_Record_09: '<span class="icon-note"></span> Csikos Post',
Item_Record_10: '<span class="icon-note"></span> Vals de los patinadores',
Item_Record_11: '<span class="icon-note"></span> ¡Gracias!',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Palo de madera',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Tornillo de metal',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Trozo de llanta de caucho',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Llavero de cuero',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Botella de plástico',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Polvo de estrella',
// Accessories
Item_Coller_Normal_Red: 'Collar de cuero rojo',
Item_Coller_Normal_Blue: 'Collar de cuero azul',
Item_Coller_Normal_Yellow: 'Collar de cuero amarillo',
Item_Coller_Normal_Green: 'Collar de cuero verde',
Item_Coller_Normal_Brown: 'Collar de cuero marrón',
Item_Coller_Normal_White: 'Collar de cuero blanco',
Item_Coller_Normal_Black: 'Collar de cuero negro',
Item_Coller_Normal_Purple: 'Collar de cuero lila',
Item_Coller_Dot_Black: 'Collar negro de lunares',
Item_Coller_Dot_Red: 'Collar rojo de lunares',
Item_Coller_Dot_Colorful: 'Collar de lunares',
Item_Coller_Camouflage: 'Collar de camuflaje',
Item_Coller_Rainbow: 'Collar multicolor',
Item_Coller_Stripe: 'Collar de rayas',
Item_Coller_Net: 'Collar trenzado',
Item_Coller_Flower_Necklace: 'Collar de flores',
Item_Coller_Bead: 'Collar de cuentas',
Item_Coller_Flower: 'Collar de flores de hibisco',
Item_Coller_linestone_Star: 'Collar de estrellas',
Item_Coller_linestone_Heart: 'Collar de corazones',
Item_Coller_Lace: 'Gargantilla de encaje',
Item_Coller_Choker: 'Gargantilla de cuero',
Item_Coller_Cat_Red: 'Collar rojo con campanilla',
Item_Coller_Cat_Blue: 'Collar azul con campanilla',
Item_Coller_Cat_Green: 'Collar verde con campanilla',
Item_Coller_Cat_Brown: 'Collar marrón con campanilla',
Item_Coller_Japanese_Green: 'Collar oriental verde',
Item_Coller_Japanese_Red: 'Collar oriental rojo',
Item_Coller_Japanese_Blue: 'Collar oriental azul',
Item_Coller_Spike_Red: 'Collar de púas rojo',
Item_Coller_Spike_Black: 'Collar de púas negro',
Item_Coller_Pattern_Python: 'Collar de serpiente de imitación',
Item_Coller_Pattern_Panther: 'Collar de leopardo de imitación',
Item_Coller_Pattern_Zebra: 'Collar de cebra de imitación',
Item_Coller_Pattern_Crocodile: 'Collar de cocodrilo de imitación',
Item_Coller_Luck: 'Collar con turquesas',
Item_Coller_Deco: 'Collar de bisutería',
Item_Coller_Chain: 'Collar de metal',
Item_Coller_Silver: 'Collar de plata',
Item_Coller_Platinum: 'Collar de platino',
Item_Coller_Cashmere: 'Collar de cachemir',
Item_Coller_Pearl_White: 'Collar de perlas',
Item_Coller_Pearl_Black: 'Collar de perlas negro',
Item_Coller_Diamond: 'Collar de diamantes',
Item_Coller_Jewelry: 'Collar real',
Item_Coller_Champ: 'Medalla de campeón',
Item_Coller_Bandana: 'Pañuelo de niño',
Item_Coller_Western: 'Collar con flecos',
Item_Coller_Bowtie: 'Corbatín',
Item_Coller_Scarf: 'Pañuelo',
Item_Coller_Women_Scarf: 'Bufanda de dama',
Item_Coller_Men_Scarf: 'Bufanda de hombre',
Item_Coller_Muffler: 'Bufanda de lana roja',
Item_Ribbon_Normal_Red: 'Lazo rojo',
Item_Ribbon_Normal_Yellow: 'Lazo amarillo',
Item_Ribbon_Check_Red: 'Lazo rosa de cuadritos',
Item_Ribbon_Check_Blue: 'Lazo azul de cuadritos',
Item_Ribbon_Polkadot_Red: 'Lazo rosa de lunares',
Item_Ribbon_Polkadot_Blue: 'Lazo azul de lunares',
Item_Ribbon_Pearl_Purple: 'Lazo lila con perla',
Item_Ribbon_Pearl_Green: 'Lazo verde con perla',
Item_Ribbon_Stripe_BlackWhite: 'Lazo negro de rayas',
Item_Ribbon_Stripe_RedWhite: 'Lazo rojo de rayas',
Item_Ribbon_Torico: 'Lazo tricolor',
Item_Ribbon_Luxury: 'Lazo elegante',
Item_Flower_Rose_Red: 'Rosa roja',
Item_Flower_Rose_Pink: 'Rosa rosada',
Item_Flower_Hibiscus_Red: 'Flor de hibisco roja',
Item_Flower_Hibiscus_White: 'Flor de hibisco blanca',
Item_Flower_Sunflower: 'Girasol',
Item_Headgear_Cap_Red: 'Gorra roja',
Item_Headgear_Cap_Yellow: 'Gorra amarilla',
Item_Headgear_Cap_Black: 'Gorra negra',
Item_Headgear_Casket: 'Gorra de niño',
Item_Headgear_Leather: 'Gorra de cuero',
Item_Headgear_Knit_Red: 'Gorro de lana rojo',
Item_Headgear_Knit_Yellow: 'Gorro de lana amarillo',
Item_Headgear_Knit_Black: 'Gorro de lana negro',
Item_Headgear_Knit_White: 'Gorro de lana blanco',
Item_Headgear_Knit2: 'Gorro de lana',
Item_Headgear_Beret: 'Boina',
Item_Headgear_Sunvisor: 'Visera',
Item_Headgear_Mugi: 'Sombrero de paja',
Item_Headgear_Brim_White: 'Gorro de pescador blanco',
Item_Headgear_Brim_Black: 'Gorro de pescador negro',
Item_Headgear_Brim_Beige: 'Gorro de pescador beis',
Item_Headgear_Tengallon_Brown: 'Sombrero de vaquero marrón',
Item_Headgear_Tengallon_White: 'Sombrero de vaquero blanco',
Item_Headgear_Silk_Black: 'Chistera',
Item_Headgear_Silk_White: 'Chistera blanca',
Item_Headgear_Borsalino: 'Sombrero de caballero',
Item_Headgear_Bucket: 'Sombrero de señora',
Item_Headgear_Feather_Green: 'Sombrero verde con pluma',
Item_Headgear_Feather_Purple: 'Sombrero morado con pluma',
Item_Headgear_Pixiehat: 'Sombrero puntiagudo',
Item_Headgear_Santa: 'Gorro de Papá Noel',
Item_Headgear_Cook: 'Gorro de cocinero',
Item_Headgear_Viking: 'Casco vikingo',
Item_Headgear_Party: 'Sombrero de broma',
Item_Headgear_Maid: 'Tocado',
Item_Headgear_Helmet: 'Casco',
Item_Headgear_Armor: 'Sombrero de papel',
Item_Headgear_Regent: 'Peluca con tupé',
Item_Headgear_Mushroom: 'Peluca tazón',
Item_Headgear_Afro: 'Peluca multicolor',
Item_Headgear_Fruit_Strawberry: 'Capuchón fresa',
Item_Headgear_Tiara: 'Diadema plateada',
Item_Headgear_Crown: 'Corona',
Item_Headgear_Champ: 'Corona de campeón',
Item_Headgear_Mario: 'Gorra de Mario',
Item_Headgear_Luigi: 'Gorra de Luigi',
Item_Headgear_Kinopio: 'Gorro de Toad',
Item_Headgear_Link: 'Gorro de héroe',
Item_Headgear_PikminRed: 'Capuchón de Pikmin rojo',
Item_Headgear_PikminBlue: 'Capuchón de Pikmin azul',
Item_Headgear_PikminYellow: 'Capuchón de Pikmin amarillo',
Item_Headgear_Samus: 'Casco espacial',
Item_Headgear_Kirby: 'Gorro de Kirby',
Item_Glass_Intell: 'Gafas de intelectual',
Item_Glass_Business: 'Gafas de negocios',
Item_Glass_Cell_Red: 'Gafas de diseño rojas',
Item_Glass_Cell_Black: 'Gafas de diseño negras',
Item_Glass_Deka: 'Gafas de sol de policía',
Item_Glass_Sunglasses_White: 'Gafas de sol blancas',
Item_Glass_Sunglasses_Yellow: 'Gafas de sol amarillas',
Item_Glass_Sunglasses_Red: 'Gafas de sol rojas',
Item_Glass_UV: 'Gafas de sol deportivas',
Item_Glass_Celeb_Black: 'Gafas de famoso negras',
Item_Glass_Celeb_Brown: 'Gafas de famoso marrones',
Item_Glass_Celeb_Pink: 'Gafas de famoso rosas',
Item_Glass_Star: 'Gafas de estrellas',
Item_Glass_Heart: 'Gafas de corazones',
Item_Glass_Mask: 'Antifaz',
Item_Glass_Champ: 'Gafas de campeón',
// Furnitures
Furni_BedRattan: 'Cama de mimbre',
Furni_BedCloth: 'Cama mullida',
Furni_MiniBed: 'Camita',
Furni_SofaCouch: 'Sofá cómodo',
Furni_SofaAntique: 'Sofá antiguo',
Furni_SofaFairy: 'Sofá romántico',
Furni_SofaLeather: 'Sofá de cuero',
Furni_SofaCF: 'Sillón',
Furni_ChairModern: 'Silla de diseño',
Furni_ChairMario: 'Silla caparazón',
Furni_ChestStandard: 'Cómoda sencilla',
Furni_ChestAntique: 'Cómoda antigua',
Furni_ShelfNorse: 'Estante',
Furni_ShelfAsia: 'Estantería',
Furni_ShelfCupHigh: 'Aparador',
Furni_ChestAsia: 'Vitrina',
Furni_ChestJapanese: 'Cómoda japonesa',
Furni_ClosetFairy: 'Armario elegante',
Furni_ShowCase: 'Alacena',
Furni_ShelfFuture: 'Armario futurista',
Furni_TableDining: 'Mesa con sillas',
Furni_TableMario: 'Mesa champiñón con silla',
Furni_Fridge: 'Refrigerador',
Furni_ElectricFan: 'Ventilador retro',
Furni_ElectricFanF: 'Ventilador moderno',
Furni_StoveOil: 'Estufa',
Furni_AquariumSmall: 'Pecera',
Furni_AquariumBig: 'Acuario',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Televisor retro',
Furni_TVLCD: 'Televisor de pantalla plana',
Furni_CatTowerSimple: 'Mueble simple para gatos',
Furni_CatTowerSlim: 'Mueble alto para gatos',
Furni_CatTowerHouse: 'Mueble para gatos',
// Leashes
Item_Lead_Red: 'Correa roja',
Item_Lead_White: 'Correa blanca',
Item_Lead_Blue: 'Correa azul',
Item_Lead_Yellow: 'Correa amarilla',
Item_Lead_Green: 'Correa verde',
Item_Lead_Pink: 'Correa rosa',
Item_Lead_Brown: 'Correa marrón',
Item_Lead_Black: 'Correa negra',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Estilo escandinavo',
Room_Japanese: 'Estilo japonés',
Room_Asia: 'Estilo asiático',
Room_Modern: 'Estilo moderno',
Room_Country: 'Estilo rústico',
Room_Luxury: 'Estilo lujoso',
Room_Fairy: 'Estilo fantasía',
Room_Mario: 'Estilo Mario',
Room_Future: 'Estilo futurista',
// Competitions
GP_Disc: 'Concurso de disco',
GP_Lure: 'Carrera canina',
GP_Contest: 'Prueba de obediencia',
// Ranks
GP_Rank1: 'Copa principiante',
GP_Rank2: 'Copa aficionado',
GP_Rank3: 'Copa profesional',
GP_Rank4: 'Copa maestro',
GP_Rank5: 'Copa Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'fr', {
// Food & Drinks
Item_Foods_Water: 'Eau',
Item_Foods_Milk: 'Lait',
Item_Foods_Dry: '<span class="icon-dog"></span> Croquettes',
Item_Foods_Wet: '<span class="icon-dog"></span> Nourriture en boîte',
Item_Foods_Diet: '<span class="icon-dog"></span> Croquettes diététiques',
Item_Foods_Premium: '<span class="icon-dog"></span> Nourriture premium',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Croquettes',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Nourriture en boîte',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Croquettes diététiques',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Nourriture premium',
Item_Snack_Biscuit: 'Biscuits ronds',
Item_Snack_Dog: '<span class="icon-dog"></span> Biscuits en forme de chiot',
Item_Snack_Bone: '<span class="icon-dog"></span> Biscuits en forme d\'os',
Item_Snack_Bolo: '<span class="icon-dog"></span> Biscuits en boule',
Item_Snack_Jky: '<span class="icon-dog"></span> Bœuf séché',
Item_Snack_Hart: '<span class="icon-dog"></span> Biscuits en forme de cœur',
Item_Snack_Gum: '<span class="icon-dog"></span> Osselets à mâcher',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Biscuits en forme de poisson',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Poisson séché',
Item_Snack_Voice: 'Biscuits surprise',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Poulet séché',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Herbe à chat',
Item_Brush_Animal: '<span class="icon-dog"></span> Brosse poil court',
Item_Brush_Pin: '<span class="icon-dog"></span> Brosse poil long',
Item_Brush_Rubber: '<span class="icon-cat"></span> Brosse en caoutchouc',
Item_Brush_Corm: '<span class="icon-cat"></span> Peigne',
Item_Shampoo_Normal: 'Shampoing',
Item_Shampoo_Premium: 'Shampoing premium',
// Toys
Item_Tennisball_Yellow: 'Balle de tennis',
Item_Tennisball_Pink: 'Balle de tennis rose et rouge',
Item_Tennisball_Blue: 'Balle de tennis bleue et jaune',
Item_Bone_Normal_White: 'Os en caoutchouc blanc',
Item_Bone_Normal_Blue: 'Os en caoutchouc bleu',
Item_Bone_Normal_Pink: 'Os en caoutchouc rose',
Item_Bone_Meat: 'Viande en caoutchouc',
Item_Bone_Dumbbell: 'Haltère en caoutchouc',
Item_Ball_Temari: 'Balle à grelot',
Item_Ball_Wanwan: 'Balle sonore',
Item_Ball_Mushroom: 'Champignon en caoutchouc',
Item_TowelCube: 'Cube en éponge',
Item_Hamburger: 'Hamburger en caoutchouc',
Item_Ball_Soccer: 'Balle de football',
Item_Ball_Beach: 'Ballon de plage',
Item_Flyingdisk_Normal_Beginner_Red: 'Disque rouge',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disque bleu',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disque orange',
Item_Flyingdisk_Normal_Beginner_Green: 'Disque vert',
Item_Flyingdisk_Normal_Pro_White: 'Disque pro blanc',
Item_Flyingdisk_Normal_Pro_Pink: 'Disque pro rose',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disque pro jaune',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disque pro bleu',
Item_Flyingdisk_Toy_Candy: 'Disque sucette',
Item_Flyingdisk_Toy_Nabe: 'Disque couvercle',
Item_Flyingdisk_Toy_Pizza: 'Disque pizza',
Item_Fryingdisk_Toy_Hoop: 'Anneau',
Item_Flyingdisk_Rainbow: 'Disque arc-en-ciel',
Item_Boomerang_Blue: 'Boomerang bleu',
Item_Boomerang_Yellow: 'Boomerang jaune',
Item_Lure_Normal_Beginner_Red: 'Leurre rouge',
Item_Lure_Normal_Beginner_Blue: 'Leurre bleu',
Item_Lure_Normal_Beginner_Yellow: 'Leurre jaune',
Item_Lure_Normal_Beginner_Pink: 'Leurre rose',
Item_Lure_Normal_Pro_White: 'Leurre pro blanc',
Item_Lure_Normal_Pro_Green: 'Leurre pro vert',
Item_Lure_Normal_Pro_Orange: 'Leurre pro orange',
Item_Lure_Normal_Pro_Blue: 'Leurre pro bleu',
Item_Lure_Toy_Meat: 'Leurre steak',
Item_Lure_Toy_Rabbit: 'Leurre petit lapin',
Item_Lure_Toy_Banana: 'Leurre bananes',
Item_Lure_Toy_Shoes: 'Leurre ballerine',
Item_Lure_Rainbow: 'Leurre arc-en-ciel',
Item_Balloon: 'Ballon de baudruche',
Item_Bring: 'Bulles de savon',
Item_Foxtail_Normal_Pink: 'Plumeau rose',
Item_Foxtail_Normal_Blue: 'Plumeau bleu',
Item_Foxtail_Normal_Green: 'Plumeau vert',
Item_Foxtail_FishingPole_2: 'Canne à pêche plumes',
Item_Foxtail_FishingPole_1: 'Canne à pêche souris',
Item_Foxtail_FishingPole_4: 'Canne à pêche papillon',
Item_Foxtail_FishingPole_3: 'Canne à pêche poisson',
Item_Toy_Chick: 'Poussin mécanique',
Item_Toy_Flog: 'Grenouille mécanique',
Item_Toy_Mouse: 'Souris mécanique',
Item_Kart_Mario: 'Kart Mario',
Item_Kart_Peach: 'Kart Peach',
Item_Kart_Yoshi: 'Kart Yoshi',
Item_Heli_Nomal: 'Hélicoptère',
Item_Heli_Combat: 'Hélicoptère de combat',
Item_Shoe: 'Chaussure en cuir',
Item_Shoe_Highheel: 'Chaussure à talon haut',
Item_Dog: 'Chien en peluche',
Item_Daruma: 'Poupée poussah',
Item_Diamond: 'Bague de fiançailles',
Item_Gold: 'Lingot d\'or',
Item_Pot: 'Tirelire',
Item_AR: 'Appareil photo numérique RA',
Item_Card: 'Bon pour un Robochiot',
Item_Piano: 'Synthétiseur',
Item_Record_00: '<span class="icon-note"></span> Chien et chat',
Item_Record_01: '<span class="icon-note"></span> Quart d\'heure de folie',
Item_Record_02: '<span class="icon-note"></span> L\'heure de la sieste',
Item_Record_03: '<span class="icon-note"></span> Rythme surprise',
Item_Record_04: '<span class="icon-note"></span> Coup de fil',
Item_Record_06: '<span class="icon-note"></span> La danse des toutous',
Item_Record_05: '<span class="icon-note"></span> Flohwalzer',
Item_Record_07: '<span class="icon-note"></span> Danse des mirlitons',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> Les Patineurs (valse)',
Item_Record_11: '<span class="icon-note"></span> Merci',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Bout de bois',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Boulon métallique',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Bout de pneu en caoutchouc',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Porte-clés en cuir',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Bouteille en plastique',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Poussière d\'étoile',
// Accessories
Item_Coller_Normal_Red: 'Collier en cuir rouge',
Item_Coller_Normal_Blue: 'Collier en cuir bleu',
Item_Coller_Normal_Yellow: 'Collier en cuir jaune',
Item_Coller_Normal_Green: 'Collier en cuir vert',
Item_Coller_Normal_Brown: 'Collier en cuir brun',
Item_Coller_Normal_White: 'Collier en cuir blanc',
Item_Coller_Normal_Black: 'Collier en cuir noir',
Item_Coller_Normal_Purple: 'Collier en cuir violet',
Item_Coller_Dot_Black: 'Collier pop noir',
Item_Coller_Dot_Red: 'Collier pop rouge',
Item_Coller_Dot_Colorful: 'Collier pop blanc',
Item_Coller_Camouflage: 'Collier camouflage',
Item_Coller_Rainbow: 'Collier arc-en-ciel',
Item_Coller_Stripe: 'Collier rayé',
Item_Coller_Net: 'Collier tressé',
Item_Coller_Flower_Necklace: 'Collier à fleurs',
Item_Coller_Bead: 'Collier de perles de rocaille',
Item_Coller_Flower: 'Collier d\'hibiscus',
Item_Coller_linestone_Star: 'Collier à étoile',
Item_Coller_linestone_Heart: 'Collier à cœur',
Item_Coller_Lace: 'Collier ras du cou en dentelle',
Item_Coller_Choker: 'Collier ras du cou en cuir',
Item_Coller_Cat_Red: 'Collier à grelot rouge',
Item_Coller_Cat_Blue: 'Collier à grelot bleu',
Item_Coller_Cat_Green: 'Collier à grelot vert',
Item_Coller_Cat_Brown: 'Collier à grelot brun',
Item_Coller_Japanese_Green: 'Collier à motif japonais vert',
Item_Coller_Japanese_Red: 'Collier à motif japonais rouge',
Item_Coller_Japanese_Blue: 'Collier à motif japonais bleu',
Item_Coller_Spike_Red: 'Collier à clous rouge',
Item_Coller_Spike_Black: 'Collier à clous noir',
Item_Coller_Pattern_Python: 'Collier en imitation python',
Item_Coller_Pattern_Panther: 'Collier en imitation léopard',
Item_Coller_Pattern_Zebra: 'Collier en imitation zèbre',
Item_Coller_Pattern_Crocodile: 'Collier en imitation crocodile',
Item_Coller_Luck: 'Collier de turquoises',
Item_Coller_Deco: 'Collier en strass',
Item_Coller_Chain: 'Collier à mailles',
Item_Coller_Silver: 'Collier en argent',
Item_Coller_Platinum: 'Collier à boucle en platine',
Item_Coller_Cashmere: 'Collier en cachemire',
Item_Coller_Pearl_White: 'Collier de perles',
Item_Coller_Pearl_Black: 'Collier de perles noires',
Item_Coller_Diamond: 'Collier de diamants',
Item_Coller_Jewelry: 'Collier royal',
Item_Coller_Champ: 'Collier de champion',
Item_Coller_Bandana: 'Bandana enfantin',
Item_Coller_Western: 'Collier à franges',
Item_Coller_Bowtie: 'Nœud papillon',
Item_Coller_Scarf: 'Foulard de grand chef',
Item_Coller_Women_Scarf: 'Foulard élégant',
Item_Coller_Men_Scarf: 'Foulard de dandy',
Item_Coller_Muffler: 'Écharpe rouge',
Item_Ribbon_Normal_Red: 'Ruban rouge',
Item_Ribbon_Normal_Yellow: 'Ruban jaune',
Item_Ribbon_Check_Red: 'Ruban à carreaux rouge',
Item_Ribbon_Check_Blue: 'Ruban à carreaux bleu',
Item_Ribbon_Polkadot_Red: 'Ruban à pois rose',
Item_Ribbon_Polkadot_Blue: 'Ruban à pois bleu',
Item_Ribbon_Pearl_Purple: 'Ruban à perle lilas',
Item_Ribbon_Pearl_Green: 'Ruban à perle vert',
Item_Ribbon_Stripe_BlackWhite: 'Ruban à rayures noires',
Item_Ribbon_Stripe_RedWhite: 'Ruban à rayures rouges',
Item_Ribbon_Torico: 'Ruban tricolore',
Item_Ribbon_Luxury: 'Ruban de luxe',
Item_Flower_Rose_Red: 'Rose rouge',
Item_Flower_Rose_Pink: 'Rose rose',
Item_Flower_Hibiscus_Red: 'Hibiscus rouge',
Item_Flower_Hibiscus_White: 'Hibiscus blanc',
Item_Flower_Sunflower: 'Tournesol',
Item_Headgear_Cap_Red: 'Casquette rouge',
Item_Headgear_Cap_Yellow: 'Casquette jaune',
Item_Headgear_Cap_Black: 'Casquette noire',
Item_Headgear_Casket: 'Casquette gavroche',
Item_Headgear_Leather: 'Casquette en cuir',
Item_Headgear_Knit_Red: 'Bonnet en laine rouge',
Item_Headgear_Knit_Yellow: 'Bonnet en laine jaune',
Item_Headgear_Knit_Black: 'Bonnet en laine noir',
Item_Headgear_Knit_White: 'Bonnet en laine blanc',
Item_Headgear_Knit2: 'Bonnet cool',
Item_Headgear_Beret: 'Béret',
Item_Headgear_Sunvisor: 'Visière',
Item_Headgear_Mugi: 'Chapeau de paille',
Item_Headgear_Brim_White: 'Bob blanc',
Item_Headgear_Brim_Black: 'Bob noir',
Item_Headgear_Brim_Beige: 'Bob beige',
Item_Headgear_Tengallon_Brown: 'Chapeau de cow-boy brun',
Item_Headgear_Tengallon_White: 'Chapeau de cow-boy blanc',
Item_Headgear_Silk_Black: 'Haut-de-forme noir',
Item_Headgear_Silk_White: 'Haut-de-forme blanc',
Item_Headgear_Borsalino: 'Chapeau de feutre',
Item_Headgear_Bucket: 'Béguin élégant',
Item_Headgear_Feather_Green: 'Chapeau à plume vert',
Item_Headgear_Feather_Purple: 'Chapeau à plume violet',
Item_Headgear_Pixiehat: 'Chapeau pointu',
Item_Headgear_Santa: 'Bonnet de père Noël',
Item_Headgear_Cook: 'Toque',
Item_Headgear_Viking: 'Casque de Viking',
Item_Headgear_Party: 'Chapeau de fête',
Item_Headgear_Maid: 'Coiffe en dentelle',
Item_Headgear_Helmet: 'Casque de cascadeur',
Item_Headgear_Armor: 'Casque origami',
Item_Headgear_Regent: 'Perruque banane',
Item_Headgear_Mushroom: 'Perruque coupe au bol',
Item_Headgear_Afro: 'Perruque afro multicolore',
Item_Headgear_Fruit_Strawberry: 'Capuchon fraise',
Item_Headgear_Tiara: 'Diadème',
Item_Headgear_Crown: 'Couronne',
Item_Headgear_Champ: 'Couronne de champion',
Item_Headgear_Mario: 'Casquette de Mario',
Item_Headgear_Luigi: 'Casquette de Luigi',
Item_Headgear_Kinopio: 'Chapeau de Toad',
Item_Headgear_Link: 'Bonnet de Link',
Item_Headgear_PikminRed: 'Capuchon de Pikmin rouge',
Item_Headgear_PikminBlue: 'Capuchon de Pikmin bleu',
Item_Headgear_PikminYellow: 'Capuchon de Pikmin jaune',
Item_Headgear_Samus: 'Casque de Samus',
Item_Headgear_Kirby: 'Chapeau Kirby',
Item_Glass_Intell: 'Lunettes d\'intello',
Item_Glass_Business: 'Lunettes de business',
Item_Glass_Cell_Red: 'Lunettes à verres plans rouges',
Item_Glass_Cell_Black: 'Lunettes à verres plans noires',
Item_Glass_Deka: 'Lunettes de police',
Item_Glass_Sunglasses_White: 'Lunettes de soleil blanches',
Item_Glass_Sunglasses_Yellow: 'Lunettes de soleil jaunes',
Item_Glass_Sunglasses_Red: 'Lunettes de soleil rouges',
Item_Glass_UV: 'Lunettes de soleil sport',
Item_Glass_Celeb_Black: 'Lunettes de star noires',
Item_Glass_Celeb_Brown: 'Lunettes de star brunes',
Item_Glass_Celeb_Pink: 'Lunettes de star roses',
Item_Glass_Star: 'Lunettes en étoiles',
Item_Glass_Heart: 'Lunettes en cœurs',
Item_Glass_Mask: 'Masque de bal',
Item_Glass_Champ: 'Lunettes de champion',
// Furnitures
Furni_BedRattan: 'Corbeille en rotin',
Furni_BedCloth: 'Panier douillet',
Furni_MiniBed: 'Lit miniature',
Furni_SofaCouch: 'Canapé d\'angle',
Furni_SofaAntique: 'Sofa d\'époque',
Furni_SofaFairy: 'Causeuse fantaisiste',
Furni_SofaLeather: 'Canapé en cuir',
Furni_SofaCF: 'Fauteuil',
Furni_ChairModern: 'Chaise œuf',
Furni_ChairMario: 'Chaise carapace Koopa',
Furni_ChestStandard: 'Commode standard',
Furni_ChestAntique: 'Commode d\'époque',
Furni_ShelfNorse: 'Buffet haut',
Furni_ShelfAsia: 'Bibliothèque',
Furni_ShelfCupHigh: 'Vaisselier',
Furni_ChestAsia: 'Étagère décorative',
Furni_ChestJapanese: 'Commode escalier',
Furni_ClosetFairy: 'Armoire baroque',
Furni_ShowCase: 'Vitrine',
Furni_ShelfFuture: 'Étagère futuriste',
Furni_TableDining: 'Table et chaises rustiques',
Furni_TableMario: 'Table et chaise champignon',
Furni_Fridge: 'Réfrigérateur',
Furni_ElectricFan: 'Ventilateur rétro',
Furni_ElectricFanF: 'Ventilateur moderne',
Furni_StoveOil: 'Poêle à pétrole',
Furni_AquariumSmall: 'Bocal à poissons',
Furni_AquariumBig: 'Aquarium',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Téléviseur cathodique',
Furni_TVLCD: 'Téléviseur à écran plat',
Furni_CatTowerSimple: 'Arbre à chat simple',
Furni_CatTowerSlim: 'Arbre à chat intermédiaire',
Furni_CatTowerHouse: 'Arbre à chat complet',
// Leashes
Item_Lead_Red: 'Laisse rouge',
Item_Lead_White: 'Laisse blanche',
Item_Lead_Blue: 'Laisse bleue',
Item_Lead_Yellow: 'Laisse jaune',
Item_Lead_Green: 'Laisse verte',
Item_Lead_Pink: 'Laisse rose',
Item_Lead_Brown: 'Laisse brune',
Item_Lead_Black: 'Laisse noire',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Style scandinave',
Room_Japanese: 'Style tatami',
Room_Asia: 'Style asiatique',
Room_Modern: 'Style moderne',
Room_Country: 'Style rustique',
Room_Luxury: 'Style luxueux',
Room_Fairy: 'Style féerique',
Room_Mario: 'Style Mario',
Room_Future: 'Style futuriste',
// Competitions
GP_Disc: 'Concours de disque',
GP_Lure: 'Course au leurre',
GP_Contest: 'Obéissance',
// Ranks
GP_Rank1: 'Coupe junior',
GP_Rank2: 'Coupe amateur',
GP_Rank3: 'Coupe pro',
GP_Rank4: 'Coupe maître',
GP_Rank5: 'Coupe Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in USA
Locale.add( 'fr_alt', {
// Food & Drinks
Item_Foods_Water: 'Eau',
Item_Foods_Milk: 'Préparation',
Item_Foods_Dry: '<span class="icon-dog"></span> Nourriture sèche',
Item_Foods_Wet: '<span class="icon-dog"></span> Nourriture humide',
Item_Foods_Diet: '<span class="icon-dog"></span> Nourriture diététique',
Item_Foods_Premium: '<span class="icon-dog"></span> Nourriture extrafine',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Nourriture sèche',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Nourriture humide',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Nourriture diététique',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Nourriture extrafine',
Item_Snack_Biscuit: 'Biscuits ronds',
Item_Snack_Dog: '<span class="icon-dog"></span> Biscuits en forme de chiot',
Item_Snack_Bone: '<span class="icon-dog"></span> Biscuits en forme d\'os',
Item_Snack_Bolo: '<span class="icon-dog"></span> Friandises',
Item_Snack_Jky: '<span class="icon-dog"></span> Bœuf séché',
Item_Snack_Hart: '<span class="icon-dog"></span> Biscuits en forme de cœur',
Item_Snack_Gum: '<span class="icon-dog"></span> Os à mâcher',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Biscuits en forme de poisson',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Poisson séché',
Item_Snack_Voice: 'Biscuits surprise',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Poulet séché',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Herbe à chat',
Item_Brush_Animal: '<span class="icon-dog"></span> Brosse de crin',
Item_Brush_Pin: '<span class="icon-dog"></span> Brosse métallique',
Item_Brush_Rubber: '<span class="icon-cat"></span> Brosse de caoutchouc',
Item_Brush_Corm: '<span class="icon-cat"></span> Peigne',
Item_Shampoo_Normal: 'Shampoing',
Item_Shampoo_Premium: 'Shampoing supérieur',
// Toys
Item_Tennisball_Yellow: 'Balle de tennis',
Item_Tennisball_Pink: 'Balle de tennis rose et rouge',
Item_Tennisball_Blue: 'Balle de tennis bleu et jaune',
Item_Bone_Normal_White: 'Os en caoutchouc blanc',
Item_Bone_Normal_Blue: 'Os en caoutchouc bleu',
Item_Bone_Normal_Pink: 'Os en caoutchouc rose',
Item_Bone_Meat: 'Viande en caoutchouc',
Item_Bone_Dumbbell: 'Haltère en caoutchouc',
Item_Ball_Temari: 'Balle à grelot',
Item_Ball_Wanwan: 'Balle sonore',
Item_Ball_Mushroom: 'Champignon en caoutchouc',
Item_TowelCube: 'Cube en ratine',
Item_Hamburger: 'Hamburger en caoutchouc',
Item_Ball_Soccer: 'Ballon de soccer',
Item_Ball_Beach: 'Ballon de plage',
Item_Flyingdisk_Normal_Beginner_Red: 'Disque volant rouge',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disque volant bleu',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disque volant orange',
Item_Flyingdisk_Normal_Beginner_Green: 'Disque volant vert',
Item_Flyingdisk_Normal_Pro_White: 'Disque volant pro blanc',
Item_Flyingdisk_Normal_Pro_Pink: 'Disque volant pro rose',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disque volant pro jaune',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disque volant pro bleu',
Item_Flyingdisk_Toy_Candy: 'Disque volant suçon',
Item_Flyingdisk_Toy_Nabe: 'Disque volant couvercle',
Item_Flyingdisk_Toy_Pizza: 'Disque volant pizza',
Item_Fryingdisk_Toy_Hoop: 'Anneau',
Item_Flyingdisk_Rainbow: 'Disque volant arc-en-ciel',
Item_Boomerang_Blue: 'Boomerang bleu',
Item_Boomerang_Yellow: 'Boomerang jaune',
Item_Lure_Normal_Beginner_Red: 'Leurre rouge',
Item_Lure_Normal_Beginner_Blue: 'Leurre bleu',
Item_Lure_Normal_Beginner_Yellow: 'Leurre jaune',
Item_Lure_Normal_Beginner_Pink: 'Leurre rose',
Item_Lure_Normal_Pro_White: 'Leurre pro blanc',
Item_Lure_Normal_Pro_Green: 'Leurre pro vert',
Item_Lure_Normal_Pro_Orange: 'Leurre pro orange',
Item_Lure_Normal_Pro_Blue: 'Leurre pro bleu',
Item_Lure_Toy_Meat: 'Leurre steak',
Item_Lure_Toy_Rabbit: 'Leurre petit lapin',
Item_Lure_Toy_Banana: 'Leurre bananes',
Item_Lure_Toy_Shoes: 'Leurre ballerine',
Item_Lure_Rainbow: 'Leurre arc-en-ciel',
Item_Balloon: 'Ballon',
Item_Bring: 'Bulles de savon',
Item_Foxtail_Normal_Pink: 'Plumeau rose',
Item_Foxtail_Normal_Blue: 'Plumeau bleu',
Item_Foxtail_Normal_Green: 'Plumeau vert',
Item_Foxtail_FishingPole_2: 'Agace-chat plume',
Item_Foxtail_FishingPole_1: 'Agace-chat souris',
Item_Foxtail_FishingPole_4: 'Agace-chat papillon',
Item_Foxtail_FishingPole_3: 'Agace-chat poisson',
Item_Toy_Chick: 'Monsieur Pit Pit',
Item_Toy_Flog: 'Madame Ribbit',
Item_Toy_Mouse: 'Mademoiselle Trotte-Trotte',
Item_Kart_Mario: 'Kart Mario',
Item_Kart_Peach: 'Kart Peach',
Item_Kart_Yoshi: 'Kart Yoshi',
Item_Heli_Nomal: 'Hélicoptère',
Item_Heli_Combat: 'Hélicoptère de combat',
Item_Shoe: 'Soulier en cuir',
Item_Shoe_Highheel: 'Soulier à talon haut',
Item_Dog: 'Chien en peluche',
Item_Daruma: 'Figurine Poussah',
Item_Diamond: 'Bague de fiançailles',
Item_Gold: 'Lingot d\'or',
Item_Pot: 'Tirelire',
Item_AR: 'Appareil photo numérique RA',
Item_Card: 'Bon Robochiot',
Item_Piano: 'Synthétiseur',
Item_Record_00: '<span class="icon-note"></span> Chien et chat',
Item_Record_01: '<span class="icon-note"></span> Quart d\'heure de folie',
Item_Record_02: '<span class="icon-note"></span> L\'heure de la sieste',
Item_Record_03: '<span class="icon-note"></span> Rythme surprise',
Item_Record_04: '<span class="icon-note"></span> Coup de fil',
Item_Record_06: '<span class="icon-note"></span> La danse des toutous',
Item_Record_05: '<span class="icon-note"></span> Valse des puces',
Item_Record_07: '<span class="icon-note"></span> Danse des mirlitons',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> Les Patineurs (valse)',
Item_Record_11: '<span class="icon-note"></span> Merci',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Bout de bois',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Boulon métallique',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Bout de pneu en caoutchouc',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Porte-clés en cuir',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Bouteille en plastique',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Poussière d\'étoile',
// Accessories
Item_Coller_Normal_Red: 'Collier en cuir rouge',
Item_Coller_Normal_Blue: 'Collier en cuir bleu',
Item_Coller_Normal_Yellow: 'Collier en cuir jaune',
Item_Coller_Normal_Green: 'Collier en cuir vert',
Item_Coller_Normal_Brown: 'Collier en cuir brun',
Item_Coller_Normal_White: 'Collier en cuir blanc',
Item_Coller_Normal_Black: 'Collier en cuir noir',
Item_Coller_Normal_Purple: 'Collier en cuir mauve',
Item_Coller_Dot_Black: 'Collier noir à pois',
Item_Coller_Dot_Red: 'Collier rouge à pois',
Item_Coller_Dot_Colorful: 'Collier à pois multicolores',
Item_Coller_Camouflage: 'Collier camouflage',
Item_Coller_Rainbow: 'Collier arc-en-ciel',
Item_Coller_Stripe: 'Collier rayé',
Item_Coller_Net: 'Collier tressé',
Item_Coller_Flower_Necklace: 'Collier à fleurs',
Item_Coller_Bead: 'Collier de perles de rocaille',
Item_Coller_Flower: 'Collier d\'hibiscus',
Item_Coller_linestone_Star: 'Collier à étoile',
Item_Coller_linestone_Heart: 'Collier à cœur',
Item_Coller_Lace: 'Collier ras du cou en dentelle',
Item_Coller_Choker: 'Collier ras du cou en cuir',
Item_Coller_Cat_Red: 'Collier à grelot rouge',
Item_Coller_Cat_Blue: 'Collier à grelot bleu',
Item_Coller_Cat_Green: 'Collier à grelot vert',
Item_Coller_Cat_Brown: 'Collier à grelot brun',
Item_Coller_Japanese_Green: 'Collier à motif japonais vert',
Item_Coller_Japanese_Red: 'Collier à motif japonais rouge',
Item_Coller_Japanese_Blue: 'Collier à motif japonais bleu',
Item_Coller_Spike_Red: 'Collier à clous rouge',
Item_Coller_Spike_Black: 'Collier à clous noir',
Item_Coller_Pattern_Python: 'Collier en imitation python',
Item_Coller_Pattern_Panther: 'Collier en imitation léopard',
Item_Coller_Pattern_Zebra: 'Collier en imitation zèbre',
Item_Coller_Pattern_Crocodile: 'Collier en imitation crocodile',
Item_Coller_Luck: 'Collier de turquoises',
Item_Coller_Deco: 'Collier en perles du Rhin',
Item_Coller_Chain: 'Collier à mailles',
Item_Coller_Silver: 'Collier en argent',
Item_Coller_Platinum: 'Collier en platine',
Item_Coller_Cashmere: 'Collier en cachemire',
Item_Coller_Pearl_White: 'Collier de perles',
Item_Coller_Pearl_Black: 'Collier de perles noires',
Item_Coller_Diamond: 'Collier de diamants',
Item_Coller_Jewelry: 'Collier royal',
Item_Coller_Champ: 'Collier de champion',
Item_Coller_Bandana: 'Foulard de shérif',
Item_Coller_Western: 'Collier à franges',
Item_Coller_Bowtie: 'Nœud papillon',
Item_Coller_Scarf: 'Foulard de grand chef',
Item_Coller_Women_Scarf: 'Foulard pour dames',
Item_Coller_Men_Scarf: 'Foulard pour hommes',
Item_Coller_Muffler: 'Foulard rouge',
Item_Ribbon_Normal_Red: 'Boucle rouge',
Item_Ribbon_Normal_Yellow: 'Boucle jaune',
Item_Ribbon_Check_Red: 'Boucle à carreaux rouge',
Item_Ribbon_Check_Blue: 'Boucle à carreaux bleue',
Item_Ribbon_Polkadot_Red: 'Boucle à pois rose',
Item_Ribbon_Polkadot_Blue: 'Boucle à pois bleue',
Item_Ribbon_Pearl_Purple: 'Boucle à perle lilas',
Item_Ribbon_Pearl_Green: 'Boucle à perle verte',
Item_Ribbon_Stripe_BlackWhite: 'Boucle à rayures noires',
Item_Ribbon_Stripe_RedWhite: 'Boucle à rayures rouges',
Item_Ribbon_Torico: 'Boucle tricolore',
Item_Ribbon_Luxury: 'Boucle de luxe',
Item_Flower_Rose_Red: 'Rose rouge',
Item_Flower_Rose_Pink: 'Rose rose',
Item_Flower_Hibiscus_Red: 'Hibiscus rouge',
Item_Flower_Hibiscus_White: 'Hibiscus blanc',
Item_Flower_Sunflower: 'Tournesol',
Item_Headgear_Cap_Red: 'Casquette rouge',
Item_Headgear_Cap_Yellow: 'Casquette jaune',
Item_Headgear_Cap_Black: 'Casquette noire',
Item_Headgear_Casket: 'Casquette de voyou',
Item_Headgear_Leather: 'Casquette en cuir',
Item_Headgear_Knit_Red: 'Tuque de laine rouge',
Item_Headgear_Knit_Yellow: 'Tuque de laine jaune',
Item_Headgear_Knit_Black: 'Tuque de laine noire',
Item_Headgear_Knit_White: 'Tuque de laine blanche',
Item_Headgear_Knit2: 'Tuque pour homme',
Item_Headgear_Beret: 'Béret',
Item_Headgear_Sunvisor: 'Visière',
Item_Headgear_Mugi: 'Chapeau de paille',
Item_Headgear_Brim_White: 'Bob blanc',
Item_Headgear_Brim_Black: 'Bob noir',
Item_Headgear_Brim_Beige: 'Bob beige',
Item_Headgear_Tengallon_Brown: 'Chapeau de safari brun',
Item_Headgear_Tengallon_White: 'Chapeau de safari blanc',
Item_Headgear_Silk_Black: 'Haut-de-forme noir',
Item_Headgear_Silk_White: 'Haut-de-forme blanc',
Item_Headgear_Borsalino: 'Chapeau élégant',
Item_Headgear_Bucket: 'Bonnet de dame',
Item_Headgear_Feather_Green: 'Chapeau à plume vert',
Item_Headgear_Feather_Purple: 'Chapeau à plume violet',
Item_Headgear_Pixiehat: 'Chapeau pointu',
Item_Headgear_Santa: 'Chapeau du Père Noël',
Item_Headgear_Cook: 'Toque',
Item_Headgear_Viking: 'Casque de Viking',
Item_Headgear_Party: 'Chapeau de fête',
Item_Headgear_Maid: 'Coiffe en dentelle',
Item_Headgear_Helmet: 'Casque de cascadeur',
Item_Headgear_Armor: 'Casque origami',
Item_Headgear_Regent: 'Perruque banane',
Item_Headgear_Mushroom: 'Perruque coupe au bol',
Item_Headgear_Afro: 'Perruque arc-en-ciel',
Item_Headgear_Fruit_Strawberry: 'Capuchon fraise',
Item_Headgear_Tiara: 'Diadème',
Item_Headgear_Crown: 'Couronne',
Item_Headgear_Champ: 'Couronne de champion',
Item_Headgear_Mario: 'Casquette de Mario',
Item_Headgear_Luigi: 'Casquette de Luigi',
Item_Headgear_Kinopio: 'Chapeau de Toad',
Item_Headgear_Link: 'Bonnet de Link',
Item_Headgear_PikminRed: 'Capuchon de Pikmin rouge',
Item_Headgear_PikminBlue: 'Capuchon de Pikmin bleu',
Item_Headgear_PikminYellow: 'Capuchon de Pikmin jaune',
Item_Headgear_Samus: 'Casque de Samus',
Item_Headgear_Kirby: 'Chapeau Kirby',
Item_Glass_Intell: 'Lunettes d\'intello',
Item_Glass_Business: 'Lunettes d\'affaires',
Item_Glass_Cell_Red: 'Lunettes mode rouges',
Item_Glass_Cell_Black: 'Lunettes mode noires',
Item_Glass_Deka: 'Lunettes de police',
Item_Glass_Sunglasses_White: 'Lunettes de soleil blanches',
Item_Glass_Sunglasses_Yellow: 'Lunettes de soleil jaunes',
Item_Glass_Sunglasses_Red: 'Lunettes de soleil rouges',
Item_Glass_UV: 'Lunettes de soleil sport',
Item_Glass_Celeb_Black: 'Lunettes de vedette noires',
Item_Glass_Celeb_Brown: 'Lunettes de vedette brunes',
Item_Glass_Celeb_Pink: 'Lunettes de vedette roses',
Item_Glass_Star: 'Lunettes en étoiles',
Item_Glass_Heart: 'Lunettes en cœurs',
Item_Glass_Mask: 'Masque de bal',
Item_Glass_Champ: 'Lunettes de champion',
// Furnitures
Furni_BedRattan: 'Panier d\'osier',
Furni_BedCloth: 'Panier douillet',
Furni_MiniBed: 'Lit pour chien',
Furni_SofaCouch: 'Divan sectionnel',
Furni_SofaAntique: 'Sofa d\'époque',
Furni_SofaFairy: 'Causeuse élégante',
Furni_SofaLeather: 'Divan en cuir',
Furni_SofaCF: 'Fauteuil',
Furni_ChairModern: 'Chaise moderne',
Furni_ChairMario: 'Chaise carapace Koopa',
Furni_ChestStandard: 'Commode',
Furni_ChestAntique: 'Commode d\'époque',
Furni_ShelfNorse: 'Armoire en bois',
Furni_ShelfAsia: 'Bibliothèque',
Furni_ShelfCupHigh: 'Vaisselier',
Furni_ChestAsia: 'Étagère décorative',
Furni_ChestJapanese: 'Coffre escalier japonais',
Furni_ClosetFairy: 'Armoire élégante',
Furni_ShowCase: 'Vitrine',
Furni_ShelfFuture: 'Étagère futuriste',
Furni_TableDining: 'Ensemble à dîner',
Furni_TableMario: 'Table et chaise champignon',
Furni_Fridge: 'Réfrigérateur',
Furni_ElectricFan: 'Ventilateur rétro',
Furni_ElectricFanF: 'Ventilateur moderne',
Furni_StoveOil: 'Chaufferette à huile',
Furni_AquariumSmall: 'Bocal à poissons',
Furni_AquariumBig: 'Aquarium',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Téléviseur cathodique',
Furni_TVLCD: 'Téléviseur à écran plat',
Furni_CatTowerSimple: 'Griffoir',
Furni_CatTowerSlim: 'Arbre à chat standard',
Furni_CatTowerHouse: 'Arbre à chat de luxe',
// Leashes
Item_Lead_Red: 'Laisse rouge',
Item_Lead_White: 'Laisse blanche',
Item_Lead_Blue: 'Laisse bleue',
Item_Lead_Yellow: 'Laisse jaune',
Item_Lead_Green: 'Laisse verte',
Item_Lead_Pink: 'Laisse rose',
Item_Lead_Brown: 'Laisse brune',
Item_Lead_Black: 'Laisse noire',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Style scandinave',
Room_Japanese: 'Style japonais',
Room_Asia: 'Style asiatique',
Room_Modern: 'Style moderne',
Room_Country: 'Style rustique',
Room_Luxury: 'Style luxueux',
Room_Fairy: 'Style féérique',
Room_Mario: 'Style Mario',
Room_Future: 'Style futuriste',
// Competitions
GP_Disc: 'Concours de disque',
GP_Lure: 'Course sur leurre',
GP_Contest: 'Obéissance',
// Ranks
GP_Rank1: 'Coupe junior',
GP_Rank2: 'Coupe amateur',
GP_Rank3: 'Coupe pro',
GP_Rank4: 'Coupe maître',
GP_Rank5: 'Coupe Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'it', {
// Food & Drinks
Item_Foods_Water: 'Bottiglia d\'acqua',
Item_Foods_Milk: 'Bottiglia di latte',
Item_Foods_Dry: '<span class="icon-dog"></span> Crocchette',
Item_Foods_Wet: '<span class="icon-dog"></span> Cibo in scatola',
Item_Foods_Diet: '<span class="icon-dog"></span> Crocchette dietetiche',
Item_Foods_Premium: '<span class="icon-dog"></span> Cibo in scatola premium',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Crocchette',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Cibo in scatola',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Crocchette dietetiche',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Cibo in scatola premium',
Item_Snack_Biscuit: 'Biscotti',
Item_Snack_Dog: '<span class="icon-dog"></span> Biscotti a forma di cucciolo',
Item_Snack_Bone: '<span class="icon-dog"></span> Biscotti a forma di osso',
Item_Snack_Bolo: '<span class="icon-dog"></span> Biscotti in barattolo',
Item_Snack_Jky: '<span class="icon-dog"></span> Manzo essiccato',
Item_Snack_Hart: '<span class="icon-dog"></span> Biscotti a forma di cuore',
Item_Snack_Gum: '<span class="icon-dog"></span> Ossi da masticare',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Biscotti a forma di pesce',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Tonno essiccato',
Item_Snack_Voice: 'Biscotti sorpresa',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Pollo essiccato',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Erba gatta',
Item_Brush_Animal: '<span class="icon-dog"></span> Spazzola a setole corte',
Item_Brush_Pin: '<span class="icon-dog"></span> Spazzola a spilli metallici',
Item_Brush_Rubber: '<span class="icon-cat"></span> Spazzola di gomma',
Item_Brush_Corm: '<span class="icon-cat"></span> Pettine',
Item_Shampoo_Normal: 'Shampoo',
Item_Shampoo_Premium: 'Shampoo premium',
// Toys
Item_Tennisball_Yellow: 'Pallina da tennis',
Item_Tennisball_Pink: 'Pallina da tennis rosa',
Item_Tennisball_Blue: 'Pallina da tennis celeste',
Item_Bone_Normal_White: 'Osso di gomma bianco',
Item_Bone_Normal_Blue: 'Osso di gomma celeste',
Item_Bone_Normal_Pink: 'Osso di gomma rosa',
Item_Bone_Meat: 'Cosciotto di gomma',
Item_Bone_Dumbbell: 'Manubrio di gomma',
Item_Ball_Temari: 'Pallina con sonaglino',
Item_Ball_Wanwan: 'Palla sonora',
Item_Ball_Mushroom: 'Fungo di gomma',
Item_TowelCube: 'Cubo di spugna',
Item_Hamburger: 'Hamburger di gomma',
Item_Ball_Soccer: 'Pallone da calcio',
Item_Ball_Beach: 'Pallone da spiaggia',
Item_Flyingdisk_Normal_Beginner_Red: 'Disco di plastica rosso',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disco di plastica blu',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disco di plastica arancione',
Item_Flyingdisk_Normal_Beginner_Green: 'Disco di plastica verde',
Item_Flyingdisk_Normal_Pro_White: 'Disco professionale bianco',
Item_Flyingdisk_Normal_Pro_Pink: 'Disco professionale rosa',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disco professionale giallo',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disco professionale celeste',
Item_Flyingdisk_Toy_Candy: 'Disco lecca lecca',
Item_Flyingdisk_Toy_Nabe: 'Coperchio di pentola',
Item_Flyingdisk_Toy_Pizza: 'Disco pizza',
Item_Fryingdisk_Toy_Hoop: 'Cerchio di plastica',
Item_Flyingdisk_Rainbow: 'Disco arcobaleno',
Item_Boomerang_Blue: 'Boomerang blu',
Item_Boomerang_Yellow: 'Boomerang giallo',
Item_Lure_Normal_Beginner_Red: 'Esca rossa',
Item_Lure_Normal_Beginner_Blue: 'Esca blu',
Item_Lure_Normal_Beginner_Yellow: 'Esca gialla',
Item_Lure_Normal_Beginner_Pink: 'Esca rosa',
Item_Lure_Normal_Pro_White: 'Esca professionale bianca',
Item_Lure_Normal_Pro_Green: 'Esca professionale verde',
Item_Lure_Normal_Pro_Orange: 'Esca professionale arancione',
Item_Lure_Normal_Pro_Blue: 'Esca professionale celeste',
Item_Lure_Toy_Meat: 'Esca costoletta',
Item_Lure_Toy_Rabbit: 'Esca coniglietto',
Item_Lure_Toy_Banana: 'Esca banane',
Item_Lure_Toy_Shoes: 'Esca scarpetta da punta',
Item_Lure_Rainbow: 'Esca arcobaleno',
Item_Balloon: 'Palloncini',
Item_Bring: 'Bolle di sapone',
Item_Foxtail_Normal_Pink: 'Canna con piuma rosa',
Item_Foxtail_Normal_Blue: 'Canna con piuma blu',
Item_Foxtail_Normal_Green: 'Canna con piuma verde',
Item_Foxtail_FishingPole_2: 'Canna con piume',
Item_Foxtail_FishingPole_1: 'Canna con topolino',
Item_Foxtail_FishingPole_4: 'Canna con farfalla',
Item_Foxtail_FishingPole_3: 'Canna con pesciolino',
Item_Toy_Chick: 'Pulcino a corda',
Item_Toy_Flog: 'Ranocchio a corda',
Item_Toy_Mouse: 'Topolino a corda',
Item_Kart_Mario: 'Kart di Mario',
Item_Kart_Peach: 'Kart di Peach',
Item_Kart_Yoshi: 'Kart di Yoshi',
Item_Heli_Nomal: 'Elicottero',
Item_Heli_Combat: 'Elicottero da guerra',
Item_Shoe: 'Scarpa di cuoio',
Item_Shoe_Highheel: 'Scarpa a tacco alto',
Item_Dog: 'Cane di peluche',
Item_Daruma: 'Pupazzo',
Item_Diamond: 'Anello di fidanzamento',
Item_Gold: 'Lingotto d\'oro',
Item_Pot: 'Porcellino salvadanaio',
Item_AR: 'Fotocamera RA',
Item_Card: 'Buono per un robocucciolo',
Item_Piano: 'Pianola elettronica',
Item_Record_00: '<span class="icon-note"></span> Cane e gatto',
Item_Record_01: '<span class="icon-note"></span> Un quarto d\'ora di follia',
Item_Record_02: '<span class="icon-note"></span> Riposino',
Item_Record_03: '<span class="icon-note"></span> Sorpresa',
Item_Record_04: '<span class="icon-note"></span> Colpo di telefono',
Item_Record_06: '<span class="icon-note"></span> Club dog',
Item_Record_05: '<span class="icon-note"></span> Flohwalzer',
Item_Record_07: '<span class="icon-note"></span> Danza degli zufoli',
Item_Record_08: '<span class="icon-note"></span> Maple leaf rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> Valzer dei pattinatori',
Item_Record_11: '<span class="icon-note"></span> Grazie!',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Bastone di legno',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Bullone di ferro',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Pneumatico di gomma',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Portachiavi di cuoio',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Bottiglia di plastica',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Frammento di stella',
// Accessories
Item_Coller_Normal_Red: 'Collare di cuoio rosso',
Item_Coller_Normal_Blue: 'Collare di cuoio azzurro',
Item_Coller_Normal_Yellow: 'Collare di cuoio giallo',
Item_Coller_Normal_Green: 'Collare di cuoio verde',
Item_Coller_Normal_Brown: 'Collare di cuoio marrone',
Item_Coller_Normal_White: 'Collare di cuoio bianco',
Item_Coller_Normal_Black: 'Collare di cuoio nero',
Item_Coller_Normal_Purple: 'Collare di cuoio lilla',
Item_Coller_Dot_Black: 'Collare a pois nero',
Item_Coller_Dot_Red: 'Collare a pois rosso',
Item_Coller_Dot_Colorful: 'Collare a pois bianco',
Item_Coller_Camouflage: 'Collare mimetico',
Item_Coller_Rainbow: 'Collare arcobaleno',
Item_Coller_Stripe: 'Collare a strisce',
Item_Coller_Net: 'Collare intrecciato',
Item_Coller_Flower_Necklace: 'Collare a fiori',
Item_Coller_Bead: 'Collare di perline',
Item_Coller_Flower: 'Collare di fiori di ibisco',
Item_Coller_linestone_Star: 'Collare con stella',
Item_Coller_linestone_Heart: 'Collare con cuore',
Item_Coller_Lace: 'Girocollo di pizzo',
Item_Coller_Choker: 'Girocollo di cuoio',
Item_Coller_Cat_Red: 'Collare con sonaglino rosso',
Item_Coller_Cat_Blue: 'Collare con sonaglino blu',
Item_Coller_Cat_Green: 'Collare con sonaglino verde',
Item_Coller_Cat_Brown: 'Collare con sonaglino marrone',
Item_Coller_Japanese_Green: 'Collare giapponese verde',
Item_Coller_Japanese_Red: 'Collare giapponese rosso',
Item_Coller_Japanese_Blue: 'Collare giapponese blu',
Item_Coller_Spike_Red: 'Collare borchiato rosso',
Item_Coller_Spike_Black: 'Collare borchiato nero',
Item_Coller_Pattern_Python: 'Collare in finto pitone',
Item_Coller_Pattern_Panther: 'Collare in finto leopardo',
Item_Coller_Pattern_Zebra: 'Collare in finta zebra',
Item_Coller_Pattern_Crocodile: 'Collare in finto coccodrillo',
Item_Coller_Luck: 'Collare con turchesi',
Item_Coller_Deco: 'Collare di gemme',
Item_Coller_Chain: 'Collare di metallo',
Item_Coller_Silver: 'Collare d\'argento',
Item_Coller_Platinum: 'Collare di platino',
Item_Coller_Cashmere: 'Collare di cashmere',
Item_Coller_Pearl_White: 'Collare di perle',
Item_Coller_Pearl_Black: 'Collare di perle nere',
Item_Coller_Diamond: 'Collare di diamanti',
Item_Coller_Jewelry: 'Collare regale',
Item_Coller_Champ: 'Collare dei campioni',
Item_Coller_Bandana: 'Bandana da bebè',
Item_Coller_Western: 'Collare da cowboy',
Item_Coller_Bowtie: 'Papillon',
Item_Coller_Scarf: 'Foulard dello chef',
Item_Coller_Women_Scarf: 'Sciarpa da donna',
Item_Coller_Men_Scarf: 'Sciarpa da uomo',
Item_Coller_Muffler: 'Sciarpa rossa',
Item_Ribbon_Normal_Red: 'Fiocco rosso',
Item_Ribbon_Normal_Yellow: 'Fiocco giallo',
Item_Ribbon_Check_Red: 'Fiocco a scacchi rosso',
Item_Ribbon_Check_Blue: 'Fiocco a scacchi blu',
Item_Ribbon_Polkadot_Red: 'Fiocco a pois rosa',
Item_Ribbon_Polkadot_Blue: 'Fiocco a pois blu',
Item_Ribbon_Pearl_Purple: 'Fiocco perlato lilla',
Item_Ribbon_Pearl_Green: 'Fiocco perlato verde',
Item_Ribbon_Stripe_BlackWhite: 'Fiocco a strisce nere',
Item_Ribbon_Stripe_RedWhite: 'Fiocco a strisce rosse',
Item_Ribbon_Torico: 'Fiocco tricolore',
Item_Ribbon_Luxury: 'Fiocco raffinato',
Item_Flower_Rose_Red: 'Rosa rossa',
Item_Flower_Rose_Pink: 'Rosa rosa',
Item_Flower_Hibiscus_Red: 'Fiore di ibisco rosso',
Item_Flower_Hibiscus_White: 'Fiore di ibisco bianco',
Item_Flower_Sunflower: 'Girasole',
Item_Headgear_Cap_Red: 'Cappello rosso',
Item_Headgear_Cap_Yellow: 'Cappello giallo',
Item_Headgear_Cap_Black: 'Cappello nero',
Item_Headgear_Casket: 'Cappello economico',
Item_Headgear_Leather: 'Berretto di pelle',
Item_Headgear_Knit_Red: 'Berretto di lana rosso',
Item_Headgear_Knit_Yellow: 'Berretto di lana giallo',
Item_Headgear_Knit_Black: 'Berretto di lana nero',
Item_Headgear_Knit_White: 'Berretto di lana bianco',
Item_Headgear_Knit2: 'Berretto di lana da uomo',
Item_Headgear_Beret: 'Basco',
Item_Headgear_Sunvisor: 'Visiera',
Item_Headgear_Mugi: 'Cappello di paglia',
Item_Headgear_Brim_White: 'Cappello da pescatore bianco',
Item_Headgear_Brim_Black: 'Cappello da pescatore nero',
Item_Headgear_Brim_Beige: 'Cappello da pescatore beige',
Item_Headgear_Tengallon_Brown: 'Cappello da safari marrone',
Item_Headgear_Tengallon_White: 'Cappello da safari bianco ',
Item_Headgear_Silk_Black: 'Tuba nera',
Item_Headgear_Silk_White: 'Tuba bianca',
Item_Headgear_Borsalino: 'Borsalino',
Item_Headgear_Bucket: 'Cuffia da donna',
Item_Headgear_Feather_Green: 'Cappello piumato verde',
Item_Headgear_Feather_Purple: 'Cappello piumato lilla',
Item_Headgear_Pixiehat: 'Cappello a punta',
Item_Headgear_Santa: 'Cappello natalizio',
Item_Headgear_Cook: 'Cappello da chef',
Item_Headgear_Viking: 'Cappello da vichingo',
Item_Headgear_Party: 'Cappello da festa',
Item_Headgear_Maid: 'Cuffietta di pizzo',
Item_Headgear_Helmet: 'Casco',
Item_Headgear_Armor: 'Cappello di carta',
Item_Headgear_Regent: 'Parrucca pompadour',
Item_Headgear_Mushroom: 'Parrucca a scodella',
Item_Headgear_Afro: 'Parrucca arcobaleno',
Item_Headgear_Fruit_Strawberry: 'Cappuccio a forma di fragola',
Item_Headgear_Tiara: 'Tiara',
Item_Headgear_Crown: 'Corona',
Item_Headgear_Champ: 'Corona dei campioni',
Item_Headgear_Mario: 'Cappello di Mario',
Item_Headgear_Luigi: 'Cappello di Luigi',
Item_Headgear_Kinopio: 'Cappello da Toad',
Item_Headgear_Link: 'Cappello dell\'Eroe',
Item_Headgear_PikminRed: 'Cappuccio da Pikmin Rosso',
Item_Headgear_PikminBlue: 'Cappuccio da Pikmin Blu',
Item_Headgear_PikminYellow: 'Cappuccio da Pikmin Giallo',
Item_Headgear_Samus: 'Casco della Tuta Energia',
Item_Headgear_Kirby: 'Cappello da Kirby',
Item_Glass_Intell: 'Occhiali da docente',
Item_Glass_Business: 'Occhiali d\'affari',
Item_Glass_Cell_Red: 'Occhiali alla moda rossi',
Item_Glass_Cell_Black: 'Occhiali alla moda neri',
Item_Glass_Deka: 'Occhiali da poliziotto',
Item_Glass_Sunglasses_White: 'Occhiali da sole bianchi',
Item_Glass_Sunglasses_Yellow: 'Occhiali da sole gialli',
Item_Glass_Sunglasses_Red: 'Occhiali da sole rossi',
Item_Glass_UV: 'Occhiali da sole',
Item_Glass_Celeb_Black: 'Occhiali da celebrità neri',
Item_Glass_Celeb_Brown: 'Occhiali da celebrità marroni',
Item_Glass_Celeb_Pink: 'Occhiali da celebrità rosa',
Item_Glass_Star: 'Occhiali a forma di stella',
Item_Glass_Heart: 'Occhiali a forma di cuore',
Item_Glass_Mask: 'Maschera misteriosa',
Item_Glass_Champ: 'Occhiali dei campioni',
// Furnitures
Furni_BedRattan: 'Cuccia in vimini',
Furni_BedCloth: 'Cuccia imbottita',
Furni_MiniBed: 'Letto in miniatura',
Furni_SofaCouch: 'Divano confortevole',
Furni_SofaAntique: 'Divano antico',
Furni_SofaFairy: 'Divano romantico',
Furni_SofaLeather: 'Divano in pelle',
Furni_SofaCF: 'Poltrona',
Furni_ChairModern: 'Sedia d\'autore',
Furni_ChairMario: 'Sedia guscio',
Furni_ChestStandard: 'Cassettiera standard',
Furni_ChestAntique: 'Comò antico',
Furni_ShelfNorse: 'Mobiletto in legno',
Furni_ShelfAsia: 'Libreria',
Furni_ShelfCupHigh: 'Credenza',
Furni_ChestAsia: 'Vetrinetta',
Furni_ChestJapanese: 'Cassettiera a scala',
Furni_ClosetFairy: 'Armadio romantico',
Furni_ShowCase: 'Vetrina',
Furni_ShelfFuture: 'Scaffale spaziale',
Furni_TableDining: 'Tavola e sedie classiche',
Furni_TableMario: 'Tavola e sedia fungo',
Furni_Fridge: 'Frigorifero',
Furni_ElectricFan: 'Ventilatore rétro',
Furni_ElectricFanF: 'Ventilatore elettronico',
Furni_StoveOil: 'Stufa a petrolio',
Furni_AquariumSmall: 'Boccia per pesci',
Furni_AquariumBig: 'Acquario per pesci',
Furni_Piano: 'Pianoforte',
Furni_TVCRT: 'Televisore rétro',
Furni_TVLCD: 'Televisore a schermo piatto',
Furni_CatTowerSimple: 'Tiragraffi semplice',
Furni_CatTowerSlim: 'Tiragraffi a torre',
Furni_CatTowerHouse: 'Tiragraffi completo',
// Leashes
Item_Lead_Red: 'Guinzaglio rosso',
Item_Lead_White: 'Guinzaglio bianco',
Item_Lead_Blue: 'Guinzaglio blu',
Item_Lead_Yellow: 'Guinzaglio giallo',
Item_Lead_Green: 'Guinzaglio verde',
Item_Lead_Pink: 'Guinzaglio rosa',
Item_Lead_Brown: 'Guinzaglio marrone',
Item_Lead_Black: 'Guinzaglio nero',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Stile scandinavo',
Room_Japanese: 'Stile giapponese',
Room_Asia: 'Stile orientale',
Room_Modern: 'Stile moderno',
Room_Country: 'Stile rustico',
Room_Luxury: 'Stile lussuoso',
Room_Fairy: 'Stile fatato',
Room_Mario: 'Stile Mario',
Room_Future: 'Stile cosmico',
// Competitions
GP_Disc: 'Prova del disco',
GP_Lure: 'Prova di inseguimento',
GP_Contest: 'Prova di obbedienza',
// Ranks
GP_Rank1: 'Coppa principianti',
GP_Rank2: 'Coppa dilettanti',
GP_Rank3: 'Coppa pro',
GP_Rank4: 'Coppa maestri',
GP_Rank5: 'Coppa nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in JPN
Locale.add( 'jp', {
// Food & Drinks
Item_Foods_Water: 'お水',
Item_Foods_Milk: 'ミルク',
Item_Foods_Dry: 'ドライフード',
Item_Foods_Wet: 'ウェットフード',
Item_Foods_Diet: 'ダイエットフード',
Item_Foods_Premium: 'プレミアムフード',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span>ドライフード',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span>ウェットフード',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span>ダイエットフード',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span>プレミアムフード',
Item_Snack_Biscuit: 'ビスケット',
Item_Snack_Dog: 'パピークッキー',
Item_Snack_Bone: 'ボーンクッキー',
Item_Snack_Bolo: 'おやつボーロ',
Item_Snack_Jky: 'ビーフジャーキー',
Item_Snack_Hart: 'ハートクッキー',
Item_Snack_Gum: '歯みがきガム',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span>フィッシュクッキー',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span>かつおジャーキー',
Item_Snack_Voice: 'びっくりクッキー',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span>ささみジャーキー',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span>ネコ草',
Item_Brush_Animal: '獣毛ブラシ',
Item_Brush_Pin: 'ピンブラシ',
Item_Brush_Rubber: '<span class="icon-cat"></span>ラバーブラシ',
Item_Brush_Corm: '<span class="icon-cat"></span>コーム',
Item_Shampoo_Normal: 'シャンプー',
Item_Shampoo_Premium: 'プレミアムシャンプー',
// Toys
Item_Tennisball_Yellow: 'テニスボール',
Item_Tennisball_Pink: 'テニスボール(ピンク)',
Item_Tennisball_Blue: 'テニスボール(水色)',
Item_Bone_Normal_White: 'ゴムボーン(白)',
Item_Bone_Normal_Blue: 'ゴムボーン(水色)',
Item_Bone_Normal_Pink: 'ゴムボーン(ピンク)',
Item_Bone_Meat: 'ゴムのお肉',
Item_Bone_Dumbbell: 'ゴムのダンベル',
Item_Ball_Temari: '鈴てまり',
Item_Ball_Wanwan: 'ワンワンボール',
Item_Ball_Mushroom: 'きのこボール',
Item_TowelCube: 'タオルキューブ',
Item_Hamburger: 'ハンバーガー',
Item_Ball_Soccer: 'サッカーボール',
Item_Ball_Beach: 'ビーチボール',
Item_Flyingdisk_Normal_Beginner_Red: 'ディスク(赤)',
Item_Flyingdisk_Normal_Beginner_Blue: 'ディスク(青)',
Item_Flyingdisk_Normal_Beginner_Orange: 'ディスク(オレンジ)',
Item_Flyingdisk_Normal_Beginner_Green: 'ディスク(緑)',
Item_Flyingdisk_Normal_Pro_White: 'プロディスク(白)',
Item_Flyingdisk_Normal_Pro_Pink: 'プロディスク(ピンク)',
Item_Flyingdisk_Normal_Pro_Yellow: 'プロディスク(黄)',
Item_Flyingdisk_Normal_Pro_Skyblue: 'プロディスク(水色)',
Item_Flyingdisk_Toy_Candy: 'ペロペロキャンディ',
Item_Flyingdisk_Toy_Nabe: 'なべのふた',
Item_Flyingdisk_Toy_Pizza: 'ピザ',
Item_Fryingdisk_Toy_Hoop: 'フープ',
Item_Flyingdisk_Rainbow: 'レインボーディスク',
Item_Boomerang_Blue: 'ブーメラン(青)',
Item_Boomerang_Yellow: 'ブーメラン(黄)',
Item_Lure_Normal_Beginner_Red: 'ルアー(赤)',
Item_Lure_Normal_Beginner_Blue: 'ルアー(青)',
Item_Lure_Normal_Beginner_Yellow: 'ルアー(黄)',
Item_Lure_Normal_Beginner_Pink: 'ルアー(ピンク)',
Item_Lure_Normal_Pro_White: 'プロルアー(白)',
Item_Lure_Normal_Pro_Green: 'プロルアー(緑)',
Item_Lure_Normal_Pro_Orange: 'プロルアー(オレンジ)',
Item_Lure_Normal_Pro_Blue: 'プロルアー(水色)',
Item_Lure_Toy_Meat: 'ヒモ付き肉',
Item_Lure_Toy_Rabbit: 'うさぎちゃん',
Item_Lure_Toy_Banana: 'バナナ',
Item_Lure_Toy_Shoes: 'トウシューズ',
Item_Lure_Rainbow: 'レインボールアー',
Item_Balloon: '風船',
Item_Bring: 'しゃぼん玉',
Item_Foxtail_Normal_Pink: '猫じゃらし(ピンク)',
Item_Foxtail_Normal_Blue: '猫じゃらし(青)',
Item_Foxtail_Normal_Green: '猫じゃらし(緑)',
Item_Foxtail_FishingPole_2: 'ダンシング・フェザー',
Item_Foxtail_FishingPole_1: 'ポッピング・マウス',
Item_Foxtail_FishingPole_4: 'フライング・バタフライ',
Item_Foxtail_FishingPole_3: 'ジャンピング・フィッシュ',
Item_Toy_Chick: 'ゼンマイ ひよこちゃん',
Item_Toy_Flog: 'ゼンマイ かえるさん',
Item_Toy_Mouse: 'ゼンマイ ねずみくん',
Item_Kart_Mario: 'マリオカート',
Item_Kart_Peach: 'ピーチカート',
Item_Kart_Yoshi: 'ヨッシーカート',
Item_Heli_Nomal: 'ヘリコプター',
Item_Heli_Combat: 'コンバットヘリ',
Item_Shoe: '革ぐつ',
Item_Shoe_Highheel: 'ハイヒール',
Item_Dog: 'るすばんドッグ',
Item_Daruma: 'ロリィポリィ',
Item_Diamond: '婚約指輪',
Item_Gold: '金ののべ棒',
Item_Pot: 'ブタの貯金箱',
Item_AR: 'ARカメラ',
Item_Card: '犬型ロボット引換券',
Item_Piano: '電子ピアノ',
Item_Record_00: '<span class="icon-note"></span>DogCat',
Item_Record_01: '<span class="icon-note"></span>チャンバラ',
Item_Record_02: '<span class="icon-note"></span>おひるね',
Item_Record_03: '<span class="icon-note"></span>びっくリズム',
Item_Record_04: '<span class="icon-note"></span>でんわかいぎ',
Item_Record_06: '<span class="icon-note"></span>ドッグスター',
Item_Record_05: '<span class="icon-note"></span>猫ふんじゃった',
Item_Record_07: '<span class="icon-note"></span>葦笛のおどり',
Item_Record_08: '<span class="icon-note"></span>メープルリーフ・ラグ',
Item_Record_09: '<span class="icon-note"></span>クシコスポスト',
Item_Record_10: '<span class="icon-note"></span>スケーターズ・ワルツ',
Item_Record_11: '<span class="icon-note"></span>ありがとう',
Item_Handiwork_Twig: '<span class="icon-recycle"></span>木の枝',
Item_Handiwork_Iron: '<span class="icon-recycle"></span>鉄のボルト',
Item_Handiwork_Gom: '<span class="icon-recycle"></span>ゴムタイヤ',
Item_Handiwork_Leather: '<span class="icon-recycle"></span>革のかざり',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span>ペットボトル',
Item_Handiwork_Ore: '<span class="icon-recycle"></span>星くず',
// Accessories
Item_Coller_Normal_Red: 'レザーカラー(赤)',
Item_Coller_Normal_Blue: 'レザーカラー(青)',
Item_Coller_Normal_Yellow: 'レザーカラー(黄)',
Item_Coller_Normal_Green: 'レザーカラー(緑)',
Item_Coller_Normal_Brown: 'レザーカラー(茶)',
Item_Coller_Normal_White: 'レザーカラー(白)',
Item_Coller_Normal_Black: 'レザーカラー(黒)',
Item_Coller_Normal_Purple: 'レザーカラー(紫)',
Item_Coller_Dot_Black: 'ドットカラー(黒)',
Item_Coller_Dot_Red: 'ドットカラー(赤)',
Item_Coller_Dot_Colorful: 'ドットカラー(白)',
Item_Coller_Camouflage: '迷彩カラー',
Item_Coller_Rainbow: 'レインボーカラー',
Item_Coller_Stripe: 'ストライプカラー',
Item_Coller_Net: 'あみこみカラー',
Item_Coller_Flower_Necklace: 'フラワーカラー',
Item_Coller_Bead: 'ビーズカラー',
Item_Coller_Flower: 'ハイビスカスの首輪',
Item_Coller_linestone_Star: 'スターカラー',
Item_Coller_linestone_Heart: 'ハートカラー',
Item_Coller_Lace: 'レースチョーカー',
Item_Coller_Choker: 'レザーチョーカー',
Item_Coller_Cat_Red: '鈴の首輪(赤)',
Item_Coller_Cat_Blue: '鈴の首輪(青)',
Item_Coller_Cat_Green: '鈴の首輪(緑)',
Item_Coller_Cat_Brown: '鈴の首輪(茶)',
Item_Coller_Japanese_Green: '和柄カラー(緑)',
Item_Coller_Japanese_Red: '和柄カラー(赤)',
Item_Coller_Japanese_Blue: '和柄カラー(青)',
Item_Coller_Spike_Red: 'スパイクカラー(赤)',
Item_Coller_Spike_Black: 'スパイクカラー(黒)',
Item_Coller_Pattern_Python: 'サファリカラー(パイソン)',
Item_Coller_Pattern_Panther: 'サファリカラー(ヒョウ)',
Item_Coller_Pattern_Zebra: 'サファリカラー(ゼブラ)',
Item_Coller_Pattern_Crocodile: 'サファリカラー(クロコダイル)',
Item_Coller_Luck: 'ターコイズカラー',
Item_Coller_Deco: 'ラインストーンカラー',
Item_Coller_Chain: 'チェーンネックレス',
Item_Coller_Silver: 'シルバーネックレス',
Item_Coller_Platinum: 'プラチナカラー',
Item_Coller_Cashmere: 'カシミアカラー',
Item_Coller_Pearl_White: 'パールネックレス',
Item_Coller_Pearl_Black: '黒真珠のネックレス',
Item_Coller_Diamond: 'ダイヤモンドの首輪',
Item_Coller_Jewelry: '王家のジュエリー',
Item_Coller_Champ: 'チャンピオンカラー',
Item_Coller_Bandana: 'キッズバンダナ',
Item_Coller_Western: 'カウボーイの首輪',
Item_Coller_Bowtie: '蝶ネクタイ',
Item_Coller_Scarf: 'シェフのスカーフ',
Item_Coller_Women_Scarf: 'レディスカーフ',
Item_Coller_Men_Scarf: 'ダンディスカーフ',
Item_Coller_Muffler: '赤いマフラー',
Item_Ribbon_Normal_Red: 'リボン(赤)',
Item_Ribbon_Normal_Yellow: 'リボン(黄)',
Item_Ribbon_Check_Red: 'チェックのリボン(赤)',
Item_Ribbon_Check_Blue: 'チェックのリボン(青)',
Item_Ribbon_Polkadot_Red: '水玉リボン(ピンク)',
Item_Ribbon_Polkadot_Blue: '水玉リボン(青)',
Item_Ribbon_Pearl_Purple: 'パールリボン(紫)',
Item_Ribbon_Pearl_Green: 'パールリボン(緑)',
Item_Ribbon_Stripe_BlackWhite: 'ストライプリボン(黒)',
Item_Ribbon_Stripe_RedWhite: 'ストライプリボン(赤)',
Item_Ribbon_Torico: 'トリコロールリボン',
Item_Ribbon_Luxury: '高級リボン',
Item_Flower_Rose_Red: 'バラの花(赤)',
Item_Flower_Rose_Pink: 'バラの花(ピンク)',
Item_Flower_Hibiscus_Red: 'ハイビスカスの花(赤)',
Item_Flower_Hibiscus_White: 'ハイビスカスの花(白)',
Item_Flower_Sunflower: 'ひまわりの花',
Item_Headgear_Cap_Red: 'キャップ(赤)',
Item_Headgear_Cap_Yellow: 'キャップ(黄)',
Item_Headgear_Cap_Black: 'キャップ(黒)',
Item_Headgear_Casket: 'キャスケット',
Item_Headgear_Leather: 'ハンチング',
Item_Headgear_Knit_Red: 'ニット帽(赤)',
Item_Headgear_Knit_Yellow: 'ニット帽(黄)',
Item_Headgear_Knit_Black: 'ニット帽(黒)',
Item_Headgear_Knit_White: 'ニット帽(白)',
Item_Headgear_Knit2: 'メンズニット帽',
Item_Headgear_Beret: 'ベレー帽',
Item_Headgear_Sunvisor: 'サンバイザー',
Item_Headgear_Mugi: '麦わら帽子',
Item_Headgear_Brim_White: 'イージーハット(白)',
Item_Headgear_Brim_Black: 'イージーハット(黒)',
Item_Headgear_Brim_Beige: 'イージーハット(ベージュ)',
Item_Headgear_Tengallon_Brown: 'テンガロンハット(茶)',
Item_Headgear_Tengallon_White: 'テンガロンハット(白)',
Item_Headgear_Silk_Black: 'シルクハット(黒)',
Item_Headgear_Silk_White: 'シルクハット(白)',
Item_Headgear_Borsalino: 'ダンディハット',
Item_Headgear_Bucket: 'レディの帽子',
Item_Headgear_Feather_Green: '羽付き帽子(緑)',
Item_Headgear_Feather_Purple: '羽付き帽子(紫)',
Item_Headgear_Pixiehat: 'とんがり帽子',
Item_Headgear_Santa: 'サンタの帽子',
Item_Headgear_Cook: 'コック帽',
Item_Headgear_Viking: 'バイキングの帽子',
Item_Headgear_Party: 'パーティハット',
Item_Headgear_Maid: 'ヘッドドレス',
Item_Headgear_Helmet: 'ヘルメット',
Item_Headgear_Armor: '紙かぶと',
Item_Headgear_Regent: 'リーゼント',
Item_Headgear_Mushroom: 'マッシュルーム',
Item_Headgear_Afro: 'レインボーアフロ',
Item_Headgear_Fruit_Strawberry: 'イチゴずきん',
Item_Headgear_Tiara: 'ティアラ',
Item_Headgear_Crown: '王冠',
Item_Headgear_Champ: 'チャンピオンクラウン',
Item_Headgear_Mario: 'マリオの帽子',
Item_Headgear_Luigi: 'ルイージの帽子',
Item_Headgear_Kinopio: 'キノピオの帽子',
Item_Headgear_Link: '勇者の帽子',
Item_Headgear_PikminRed: '赤ピクミンのかぶりもの',
Item_Headgear_PikminBlue: '青ピクミンのかぶりもの',
Item_Headgear_PikminYellow: '黄ピクミンのかぶりもの',
Item_Headgear_Samus: 'パワードスーツ',
Item_Headgear_Kirby: 'カービィハット',
Item_Glass_Intell: 'インテリメガネ',
Item_Glass_Business: 'ビジネスメガネ',
Item_Glass_Cell_Red: 'ダテメガネ(赤)',
Item_Glass_Cell_Black: 'ダテメガネ(黒)',
Item_Glass_Deka: 'デカサングラス',
Item_Glass_Sunglasses_White: 'サングラス(白)',
Item_Glass_Sunglasses_Yellow: 'サングラス(黄)',
Item_Glass_Sunglasses_Red: 'サングラス(赤)',
Item_Glass_UV: 'UVサングラス',
Item_Glass_Celeb_Black: 'セレブグラス(黒)',
Item_Glass_Celeb_Brown: 'セレブグラス(茶)',
Item_Glass_Celeb_Pink: 'セレブグラス(ピンク)',
Item_Glass_Star: 'スターメガネ',
Item_Glass_Heart: 'ハートメガネ',
Item_Glass_Mask: '怪しいマスク',
Item_Glass_Champ: 'チャンピオンメガネ',
// Furnitures
Furni_BedRattan: 'ラタンベッド',
Furni_BedCloth: 'クッションベッド',
Furni_MiniBed: 'ミニチュアベッド',
Furni_SofaCouch: 'カウチソファ',
Furni_SofaAntique: 'アンティークソファ',
Furni_SofaFairy: 'ロマンチックソファ',
Furni_SofaLeather: 'レザーソファ',
Furni_SofaCF: 'アームチェア',
Furni_ChairModern: 'デザイナーズチェア',
Furni_ChairMario: 'こうらのチェア',
Furni_ChestStandard: 'スタンダードチェスト',
Furni_ChestAntique: 'アンティークチェスト',
Furni_ShelfNorse: 'ウッドシェルフ',
Furni_ShelfAsia: '本棚',
Furni_ShelfCupHigh: '食器棚',
Furni_ChestAsia: '飾り棚',
Furni_ChestJapanese: '階段たんす',
Furni_ClosetFairy: 'ラブリークローゼット',
Furni_ShowCase: 'ショーケース',
Furni_ShelfFuture: 'スターシップシェルフ',
Furni_TableDining: 'ダイニングテーブルセット',
Furni_TableMario: 'キノコのテーブルセット',
Furni_Fridge: '冷蔵庫',
Furni_ElectricFan: 'レトロな扇風機',
Furni_ElectricFanF: 'エレクトロニックファン',
Furni_StoveOil: '石油ストーブ',
Furni_AquariumSmall: '金魚ばち',
Furni_AquariumBig: 'アロワナの水槽',
Furni_Piano: 'ピアノ',
Furni_TVCRT: 'ブラウン管テレビ',
Furni_TVLCD: '液晶テレビ',
Furni_CatTowerSimple: 'シンプルキャットタワー',
Furni_CatTowerSlim: 'スリムキャットタワー',
Furni_CatTowerHouse: 'ハウスキャットタワー',
// Leashes
Item_Lead_Red: 'リード(赤)',
Item_Lead_White: 'リード(白)',
Item_Lead_Blue: 'リード(青)',
Item_Lead_Yellow: 'リード(黄)',
Item_Lead_Green: 'リード(緑)',
Item_Lead_Pink: 'リード(ピンク)',
Item_Lead_Brown: 'リード(茶)',
Item_Lead_Black: 'リード(黒)',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: '北欧スタイル',
Room_Japanese: 'ジャパニーズスタイル',
Room_Asia: 'アジアンスタイル',
Room_Modern: 'モダンスタイル',
Room_Country: 'カントリースタイル',
Room_Luxury: 'ラグジュアリースタイル',
Room_Fairy: 'メルヘンスタイル',
Room_Mario: 'マリオスタイル',
Room_Future: 'コスモスタイル',
// Competitions
GP_Disc: 'ディスクドッグ大会',
GP_Lure: 'ルアーコーシング大会',
GP_Contest: 'ドッグコンテスト',
// Ranks
GP_Rank1: 'ジュニアカップ',
GP_Rank2: 'アマチュアカップ',
GP_Rank3: 'プロカップ',
GP_Rank4: 'マスターズカップ',
GP_Rank5: 'nintendogsカップ'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in KOR
Locale.add( 'ko', {
// Food & Drinks
Item_Foods_Water: '물',
Item_Foods_Milk: '우유',
Item_Foods_Dry: '<span class="icon-dog"></span>건식 사료',
Item_Foods_Wet: '<span class="icon-dog"></span>습식 사료',
Item_Foods_Diet: '<span class="icon-dog"></span>다이어트 사료',
Item_Foods_Premium: '<span class="icon-dog"></span>프리미엄 사료',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span>건식 사료',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span>습식 사료',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span>다이어트 사료',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span>프리미엄 사료',
Item_Snack_Biscuit: '비스킷',
Item_Snack_Dog: '<span class="icon-dog"></span>퍼피 비스킷',
Item_Snack_Bone: '<span class="icon-dog"></span>뼈다귀 비스킷',
Item_Snack_Bolo: '<span class="icon-dog"></span>소프트 비스킷',
Item_Snack_Jky: '<span class="icon-dog"></span>쇠고기 육포',
Item_Snack_Hart: '<span class="icon-dog"></span>하트 비스킷',
Item_Snack_Gum: '<span class="icon-dog"></span>애견용 양치껌',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span>생선 비스킷',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span>가다랑어포',
Item_Snack_Voice: '깜짝 비스킷',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span>치킨 육포',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span>고양이풀',
Item_Brush_Animal: '<span class="icon-dog"></span>애견용 단모 브러시',
Item_Brush_Pin: '<span class="icon-dog"></span>애견용 장모 브러시',
Item_Brush_Rubber: '<span class="icon-cat"></span>애묘용 단모 브러시',
Item_Brush_Corm: '<span class="icon-cat"></span>애묘용 장모 브러시',
Item_Shampoo_Normal: '샴푸',
Item_Shampoo_Premium: '프리미엄 샴푸',
// Toys
Item_Tennisball_Yellow: '테니스공',
Item_Tennisball_Pink: '테니스공(분홍색)',
Item_Tennisball_Blue: '테니스공(하늘색)',
Item_Bone_Normal_White: '고무 뼈다귀(흰색)',
Item_Bone_Normal_Blue: '고무 뼈다귀(하늘색)',
Item_Bone_Normal_Pink: '고무 뼈다귀(분홍색)',
Item_Bone_Meat: '고무 갈비',
Item_Bone_Dumbbell: '고무 아령',
Item_Ball_Temari: '방울공',
Item_Ball_Wanwan: '멍멍이 공',
Item_Ball_Mushroom: '버섯 장난감',
Item_TowelCube: '타월 쿠션',
Item_Hamburger: '햄버거 장난감',
Item_Ball_Soccer: '축구공',
Item_Ball_Beach: '비치볼',
Item_Flyingdisk_Normal_Beginner_Red: '원반(빨간색)',
Item_Flyingdisk_Normal_Beginner_Blue: '원반(파란색)',
Item_Flyingdisk_Normal_Beginner_Orange: '원반(주황색)',
Item_Flyingdisk_Normal_Beginner_Green: '원반(초록색)',
Item_Flyingdisk_Normal_Pro_White: '프로 원반(흰색)',
Item_Flyingdisk_Normal_Pro_Pink: '프로 원반(분홍색)',
Item_Flyingdisk_Normal_Pro_Yellow: '프로 원반(노란색)',
Item_Flyingdisk_Normal_Pro_Skyblue: '프로 원반(하늘색)',
Item_Flyingdisk_Toy_Candy: '막대 사탕',
Item_Flyingdisk_Toy_Nabe: '냄비 뚜껑',
Item_Flyingdisk_Toy_Pizza: '피자',
Item_Fryingdisk_Toy_Hoop: '훌라후프',
Item_Flyingdisk_Rainbow: '레인보우 원반',
Item_Boomerang_Blue: '부메랑(파란색)',
Item_Boomerang_Yellow: '부메랑(노란색)',
Item_Lure_Normal_Beginner_Red: '루어(빨간색)',
Item_Lure_Normal_Beginner_Blue: '루어(파란색)',
Item_Lure_Normal_Beginner_Yellow: '루어(노란색)',
Item_Lure_Normal_Beginner_Pink: '루어(분홍색)',
Item_Lure_Normal_Pro_White: '프로 루어(흰색)',
Item_Lure_Normal_Pro_Green: '프로 루어(초록색)',
Item_Lure_Normal_Pro_Orange: '프로 루어(주황색)',
Item_Lure_Normal_Pro_Blue: '프로 루어(하늘색)',
Item_Lure_Toy_Meat: '생고기 루어',
Item_Lure_Toy_Rabbit: '토끼 루어',
Item_Lure_Toy_Banana: '바나나 루어',
Item_Lure_Toy_Shoes: '토슈즈 루어',
Item_Lure_Rainbow: '레인보우 루어',
Item_Balloon: '풍선',
Item_Bring: '비눗방울',
Item_Foxtail_Normal_Pink: '강아지풀(분홍색)',
Item_Foxtail_Normal_Blue: '강아지풀(파란색)',
Item_Foxtail_Normal_Green: '강아지풀(초록색)',
Item_Foxtail_FishingPole_2: '깃털 낚싯대',
Item_Foxtail_FishingPole_1: '호핑 마우스',
Item_Foxtail_FishingPole_4: '플라잉 버터플라이',
Item_Foxtail_FishingPole_3: '점핑 피시',
Item_Toy_Chick: '태엽 삐약이',
Item_Toy_Flog: '태엽 개굴이',
Item_Toy_Mouse: '태엽 찍찍이',
Item_Kart_Mario: '마리오 카트',
Item_Kart_Peach: '피치 카트',
Item_Kart_Yoshi: '요시 카트',
Item_Heli_Nomal: '헬리콥터',
Item_Heli_Combat: '전투 헬리콥터',
Item_Shoe: '가죽 구두',
Item_Shoe_Highheel: '하이힐',
Item_Dog: '강아지 인형',
Item_Daruma: '오뚝이',
Item_Diamond: '약혼반지',
Item_Gold: '금덩어리',
Item_Pot: '돼지 저금통',
Item_AR: 'AR 카메라',
Item_Card: '강아지 로봇 교환권',
Item_Piano: '전자 키보드',
Item_Record_00: '<span class="icon-note"></span>DogCat',
Item_Record_01: '<span class="icon-note"></span>칼싸움',
Item_Record_02: '<span class="icon-note"></span>낮잠',
Item_Record_03: '<span class="icon-note"></span>깜짝 리듬',
Item_Record_04: '<span class="icon-note"></span>전화 회의',
Item_Record_06: '<span class="icon-note"></span>독스타',
Item_Record_05: '<span class="icon-note"></span>고양이 춤',
Item_Record_07: '<span class="icon-note"></span>갈대 피리의 춤',
Item_Record_08: '<span class="icon-note"></span>단풍잎 래그',
Item_Record_09: '<span class="icon-note"></span>크시코스의 우편 마차',
Item_Record_10: '<span class="icon-note"></span>스케이터스 왈츠',
Item_Record_11: '<span class="icon-note"></span>감사합니다',
Item_Handiwork_Twig: '<span class="icon-recycle"></span>나무토막',
Item_Handiwork_Iron: '<span class="icon-recycle"></span>볼트와 너트',
Item_Handiwork_Gom: '<span class="icon-recycle"></span>타이어',
Item_Handiwork_Leather: '<span class="icon-recycle"></span>가죽 키홀더',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span>페트병',
Item_Handiwork_Ore: '<span class="icon-recycle"></span>별의 조각',
// Accessories
Item_Coller_Normal_Red: '가죽 목줄(빨간색)',
Item_Coller_Normal_Blue: '가죽 목줄(파란색)',
Item_Coller_Normal_Yellow: '가죽 목줄(노란색)',
Item_Coller_Normal_Green: '가죽 목줄(초록색)',
Item_Coller_Normal_Brown: '가죽 목줄(갈색)',
Item_Coller_Normal_White: '가죽 목줄(흰색)',
Item_Coller_Normal_Black: '가죽 목줄(검은색)',
Item_Coller_Normal_Purple: '가죽 목줄(보라색)',
Item_Coller_Dot_Black: '물방울 목줄(검은색)',
Item_Coller_Dot_Red: '물방울 목줄(빨간색)',
Item_Coller_Dot_Colorful: '물방울 목줄(흰색)',
Item_Coller_Camouflage: '밀리터리 목줄',
Item_Coller_Rainbow: '레인보우 목줄',
Item_Coller_Stripe: '줄무늬 목줄',
Item_Coller_Net: '손뜨개 목줄',
Item_Coller_Flower_Necklace: '플라워 목줄',
Item_Coller_Bead: '비즈 목줄',
Item_Coller_Flower: '히비스커스 목줄',
Item_Coller_linestone_Star: '스타 목줄',
Item_Coller_linestone_Heart: '하트 목줄',
Item_Coller_Lace: '레이스 초커',
Item_Coller_Choker: '발바닥 초커',
Item_Coller_Cat_Red: '방울 목줄(빨간색)',
Item_Coller_Cat_Blue: '방울 목줄(파란색)',
Item_Coller_Cat_Green: '방울 목줄(초록색)',
Item_Coller_Cat_Brown: '방울 목줄(갈색)',
Item_Coller_Japanese_Green: '오리엔탈 목줄(초록색)',
Item_Coller_Japanese_Red: '오리엔탈 목줄(빨간색)',
Item_Coller_Japanese_Blue: '오리엔탈 목줄(파란색)',
Item_Coller_Spike_Red: '스파이크 목줄(빨간색)',
Item_Coller_Spike_Black: '스파이크 목줄(검은색)',
Item_Coller_Pattern_Python: '사파리 목줄(뱀)',
Item_Coller_Pattern_Panther: '사파리 목줄(표범)',
Item_Coller_Pattern_Zebra: '사파리 목줄(얼룩말)',
Item_Coller_Pattern_Crocodile: '사파리 목줄(악어)',
Item_Coller_Luck: '터키석 목줄',
Item_Coller_Deco: '라인스톤 목줄',
Item_Coller_Chain: '체인 목걸이',
Item_Coller_Silver: '실버 목걸이',
Item_Coller_Platinum: '플래티넘 목줄',
Item_Coller_Cashmere: '캐시미어 목줄',
Item_Coller_Pearl_White: '진주 목걸이',
Item_Coller_Pearl_Black: '흑진주 목걸이',
Item_Coller_Diamond: '다이아몬드 목줄',
Item_Coller_Jewelry: '왕가의 보석',
Item_Coller_Champ: '챔피언 목줄',
Item_Coller_Bandana: '키즈 반다나',
Item_Coller_Western: '카우보이 목줄',
Item_Coller_Bowtie: '나비넥타이',
Item_Coller_Scarf: '요리사 스카프',
Item_Coller_Women_Scarf: '숙녀용 스카프',
Item_Coller_Men_Scarf: '신사용 스카프',
Item_Coller_Muffler: '빨간 머플러',
Item_Ribbon_Normal_Red: '리본(빨간색)',
Item_Ribbon_Normal_Yellow: '리본(노란색)',
Item_Ribbon_Check_Red: '체크무늬 리본(빨간색)',
Item_Ribbon_Check_Blue: '체크무늬 리본(파란색)',
Item_Ribbon_Polkadot_Red: '물방울 리본(분홍색)',
Item_Ribbon_Polkadot_Blue: '물방울 리본(하늘색)',
Item_Ribbon_Pearl_Purple: '진주 리본(보라색)',
Item_Ribbon_Pearl_Green: '진주 리본(초록색)',
Item_Ribbon_Stripe_BlackWhite: '줄무늬 리본(검은색)',
Item_Ribbon_Stripe_RedWhite: '줄무늬 리본(빨간색)',
Item_Ribbon_Torico: '3색 리본',
Item_Ribbon_Luxury: '고급 리본',
Item_Flower_Rose_Red: '장미(빨간색)',
Item_Flower_Rose_Pink: '장미(분홍색)',
Item_Flower_Hibiscus_Red: '히비스커스(빨간색)',
Item_Flower_Hibiscus_White: '히비스커스(흰색)',
Item_Flower_Sunflower: '해바라기',
Item_Headgear_Cap_Red: '야구 모자(빨간색)',
Item_Headgear_Cap_Yellow: '야구 모자(노란색)',
Item_Headgear_Cap_Black: '야구 모자(검은색)',
Item_Headgear_Casket: '카스케트',
Item_Headgear_Leather: '헌팅캡',
Item_Headgear_Knit_Red: '니트 모자(빨간색)',
Item_Headgear_Knit_Yellow: '니트 모자(노란색)',
Item_Headgear_Knit_Black: '니트 모자(검은색)',
Item_Headgear_Knit_White: '니트 모자(흰색)',
Item_Headgear_Knit2: '남자 니트 모자',
Item_Headgear_Beret: '베레모',
Item_Headgear_Sunvisor: '선바이저',
Item_Headgear_Mugi: '밀짚모자',
Item_Headgear_Brim_White: '벙거지(흰색)',
Item_Headgear_Brim_Black: '벙거지(검은색)',
Item_Headgear_Brim_Beige: '벙거지(베이지색)',
Item_Headgear_Tengallon_Brown: '카우보이 모자(갈색)',
Item_Headgear_Tengallon_White: '카우보이 모자(흰색)',
Item_Headgear_Silk_Black: '실크해트(검은색)',
Item_Headgear_Silk_White: '실크해트(흰색)',
Item_Headgear_Borsalino: '중절모',
Item_Headgear_Bucket: '숙녀 모자',
Item_Headgear_Feather_Green: '사파리 모자(초록색)',
Item_Headgear_Feather_Purple: '사파리 모자(보라색)',
Item_Headgear_Pixiehat: '마법사 모자',
Item_Headgear_Santa: '산타 모자',
Item_Headgear_Cook: '요리사 모자',
Item_Headgear_Viking: '바이킹 모자',
Item_Headgear_Party: '파티 모자',
Item_Headgear_Maid: '레이스 머리띠',
Item_Headgear_Helmet: '헬멧',
Item_Headgear_Armor: '종이 모자',
Item_Headgear_Regent: '리젠트 컷',
Item_Headgear_Mushroom: '머시룸 컷',
Item_Headgear_Afro: '레인보우 가발',
Item_Headgear_Fruit_Strawberry: '딸기 두건',
Item_Headgear_Tiara: '티아라',
Item_Headgear_Crown: '왕관',
Item_Headgear_Champ: '챔피언 크라운',
Item_Headgear_Mario: '마리오 모자',
Item_Headgear_Luigi: '루이지 모자',
Item_Headgear_Kinopio: '키노피오 모자',
Item_Headgear_Link: '링크 모자',
Item_Headgear_PikminRed: '빨강피크민 모자',
Item_Headgear_PikminBlue: '파랑피크민 모자',
Item_Headgear_PikminYellow: '노랑피크민 모자',
Item_Headgear_Samus: '사무스 모자',
Item_Headgear_Kirby: '커비 모자',
Item_Glass_Intell: '학자 안경',
Item_Glass_Business: '비즈니스 안경',
Item_Glass_Cell_Red: '패션 안경(빨간색)',
Item_Glass_Cell_Black: '패션 안경(검은색)',
Item_Glass_Deka: '복고 선글라스',
Item_Glass_Sunglasses_White: '선글라스(흰색)',
Item_Glass_Sunglasses_Yellow: '선글라스(노란색)',
Item_Glass_Sunglasses_Red: '선글라스(빨간색)',
Item_Glass_UV: 'UV 선글라스',
Item_Glass_Celeb_Black: '럭셔리 선글라스(검은색)',
Item_Glass_Celeb_Brown: '럭셔리 선글라스(갈색)',
Item_Glass_Celeb_Pink: '럭셔리 선글라스(분홍색)',
Item_Glass_Star: '스타 안경',
Item_Glass_Heart: '하트 안경',
Item_Glass_Mask: '가면무도회 마스크',
Item_Glass_Champ: '챔피언 안경',
// Furnitures
Furni_BedRattan: '라탄 애견침대',
Furni_BedCloth: '쿠션 애견침대',
Furni_MiniBed: '미니 애견침대',
Furni_SofaCouch: '카우치 소파',
Furni_SofaAntique: '앤티크 소파',
Furni_SofaFairy: '로맨틱 소파',
Furni_SofaLeather: '가죽 소파',
Furni_SofaCF: '팔걸이 의자',
Furni_ChairModern: '디자인 의자',
Furni_ChairMario: '등껍질 의자',
Furni_ChestStandard: '심플 서랍장',
Furni_ChestAntique: '앤티크 서랍장',
Furni_ShelfNorse: '원목 수납장',
Furni_ShelfAsia: '책장',
Furni_ShelfCupHigh: '식기장',
Furni_ChestAsia: '사방탁자',
Furni_ChestJapanese: '계단형 문갑',
Furni_ClosetFairy: '러블리 옷장',
Furni_ShowCase: '유리 장식장',
Furni_ShelfFuture: '스타쉽 수납장',
Furni_TableDining: '식탁 세트',
Furni_TableMario: '버섯 테이블 세트',
Furni_Fridge: '냉장고',
Furni_ElectricFan: '레트로 선풍기',
Furni_ElectricFanF: '일렉트로닉 선풍기',
Furni_StoveOil: '석유난로',
Furni_AquariumSmall: '어항',
Furni_AquariumBig: '아로와나 수조',
Furni_Piano: '피아노',
Furni_TVCRT: '브라운관 TV',
Furni_TVLCD: '평면 TV',
Furni_CatTowerSimple: '심플 캣타워',
Furni_CatTowerSlim: '슬림 캣타워',
Furni_CatTowerHouse: '하우스 캣타워',
// Leashes
Item_Lead_Red: '리드줄(빨간색)',
Item_Lead_White: '리드줄(흰색)',
Item_Lead_Blue: '리드줄(파란색)',
Item_Lead_Yellow: '리드줄(노란색)',
Item_Lead_Green: '리드줄(초록색)',
Item_Lead_Pink: '리드줄(분홍색)',
Item_Lead_Brown: '리드줄(갈색)',
Item_Lead_Black: '리드줄(검은색)',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: '북유럽 스타일',
Room_Japanese: '일본 스타일',
Room_Asia: '한옥 스타일',
Room_Modern: '모던 스타일',
Room_Country: '컨트리 스타일',
Room_Luxury: '럭셔리 스타일',
Room_Fairy: '메르헨 스타일',
Room_Mario: '마리오 스타일',
Room_Future: '코스모 스타일',
// Competitions
GP_Disc: '원반 던지기 대회',
GP_Lure: '루어 코싱 대회',
GP_Contest: '애견 대회',
// Ranks
GP_Rank1: '주니어 컵',
GP_Rank2: '아마추어 컵',
GP_Rank3: '프로 컵',
GP_Rank4: '마스터 컵',
GP_Rank5: 'nintendogs 컵'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'nl', {
// Food & Drinks
Item_Foods_Water: 'Water',
Item_Foods_Milk: 'Melk',
Item_Foods_Dry: '<span class="icon-dog"></span> Brokjes',
Item_Foods_Wet: '<span class="icon-dog"></span> Blikvoer',
Item_Foods_Diet: '<span class="icon-dog"></span> Dieetvoer',
Item_Foods_Premium: '<span class="icon-dog"></span> Luxe blikvoer',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Brokjes',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Blikvoer',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Dieetvoer',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Luxe blikvoer',
Item_Snack_Biscuit: 'Koekjes',
Item_Snack_Dog: '<span class="icon-dog"></span> Puppykoekjes',
Item_Snack_Bone: '<span class="icon-dog"></span> Botkoekjes',
Item_Snack_Bolo: '<span class="icon-dog"></span> Tussendoortjes',
Item_Snack_Jky: '<span class="icon-dog"></span> Gedroogd vlees (rund)',
Item_Snack_Hart: '<span class="icon-dog"></span> Hartvormige koekjes',
Item_Snack_Gum: '<span class="icon-dog"></span> Kauwkoekjes',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Viskoekjes',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Gedroogde vis',
Item_Snack_Voice: 'Verrassingskoekjes',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Gedroogd vlees (kip)',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Kattengras',
Item_Brush_Animal: '<span class="icon-dog"></span> Harde borstel',
Item_Brush_Pin: '<span class="icon-dog"></span> Stalen borstel',
Item_Brush_Rubber: '<span class="icon-cat"></span> Rubberen borstel',
Item_Brush_Corm: '<span class="icon-cat"></span> Kam',
Item_Shampoo_Normal: 'Shampoo',
Item_Shampoo_Premium: 'Luxe shampoo',
// Toys
Item_Tennisball_Yellow: 'Tennisbal',
Item_Tennisball_Pink: 'Roze met rode tennisbal',
Item_Tennisball_Blue: 'Blauw met gele tennisbal',
Item_Bone_Normal_White: 'Wit rubberen bot',
Item_Bone_Normal_Blue: 'Blauw rubberen bot',
Item_Bone_Normal_Pink: 'Roze rubberen bot',
Item_Bone_Meat: 'Rubberen nepkluif',
Item_Bone_Dumbbell: 'Rubberen gewicht',
Item_Ball_Temari: 'Rinkelbal',
Item_Ball_Wanwan: 'Piepende bal',
Item_Ball_Mushroom: 'Rubberen paddenstoel',
Item_TowelCube: 'Zachte kubus',
Item_Hamburger: 'Rubberen hamburger',
Item_Ball_Soccer: 'Voetbal',
Item_Ball_Beach: 'Strandbal',
Item_Flyingdisk_Normal_Beginner_Red: 'Rode discus',
Item_Flyingdisk_Normal_Beginner_Blue: 'Blauwe discus',
Item_Flyingdisk_Normal_Beginner_Orange: 'Oranje discus',
Item_Flyingdisk_Normal_Beginner_Green: 'Groene discus',
Item_Flyingdisk_Normal_Pro_White: 'Witte discus (pro)',
Item_Flyingdisk_Normal_Pro_Pink: 'Roze discus (pro)',
Item_Flyingdisk_Normal_Pro_Yellow: 'Gele discus (pro)',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Lichtblauwe discus (pro)',
Item_Flyingdisk_Toy_Candy: 'Lollydiscus',
Item_Flyingdisk_Toy_Nabe: 'Pannendeksel',
Item_Flyingdisk_Toy_Pizza: 'Pizzadiscus',
Item_Fryingdisk_Toy_Hoop: 'Hoepel',
Item_Flyingdisk_Rainbow: 'Regenboogdiscus',
Item_Boomerang_Blue: 'Blauwe boemerang',
Item_Boomerang_Yellow: 'Gele boemerang',
Item_Lure_Normal_Beginner_Red: 'Rode lure',
Item_Lure_Normal_Beginner_Blue: 'Blauwe lure',
Item_Lure_Normal_Beginner_Yellow: 'Gele lure',
Item_Lure_Normal_Beginner_Pink: 'Roze lure',
Item_Lure_Normal_Pro_White: 'Witte lure (pro)',
Item_Lure_Normal_Pro_Green: 'Groene lure (pro)',
Item_Lure_Normal_Pro_Orange: 'Oranje lure (pro)',
Item_Lure_Normal_Pro_Blue: 'Blauwe lure (pro)',
Item_Lure_Toy_Meat: 'Vleeslure',
Item_Lure_Toy_Rabbit: 'Knuffelkonijnlure',
Item_Lure_Toy_Banana: 'Bananenlure',
Item_Lure_Toy_Shoes: 'Balletschoenlure',
Item_Lure_Rainbow: 'Regenbooglure',
Item_Balloon: 'Ballon',
Item_Bring: 'Bellenblazer',
Item_Foxtail_Normal_Pink: 'Roze pluimstok',
Item_Foxtail_Normal_Blue: 'Blauwe pluimstok',
Item_Foxtail_Normal_Green: 'Groene pluimstok',
Item_Foxtail_FishingPole_2: 'Speelhengel met veren',
Item_Foxtail_FishingPole_1: 'Speelhengel met muis',
Item_Foxtail_FishingPole_4: 'Speelhengel met vlinder',
Item_Foxtail_FishingPole_3: 'Speelhengel met vis',
Item_Toy_Chick: 'Opwindkuiken',
Item_Toy_Flog: 'Opwindkikker',
Item_Toy_Mouse: 'Opwindmuis',
Item_Kart_Mario: 'Mario-kart',
Item_Kart_Peach: 'Peach-kart',
Item_Kart_Yoshi: 'Yoshi-kart',
Item_Heli_Nomal: 'Afstandsbestuurbare helikopter',
Item_Heli_Combat: 'Gevechtshelikopter',
Item_Shoe: 'Leren schoen',
Item_Shoe_Highheel: 'Pump',
Item_Dog: 'Knuffelhond',
Item_Daruma: 'Duikelaar',
Item_Diamond: 'Vriendschapsring',
Item_Gold: 'Goudstaaf',
Item_Pot: 'Spaarvarken',
Item_AR: 'AR-camera',
Item_Card: 'RoboPup-waardebon',
Item_Piano: 'Keyboard',
Item_Record_00: '<span class="icon-note"></span> Hond en Kat',
Item_Record_01: '<span class="icon-note"></span> Zwaardgevecht',
Item_Record_02: '<span class="icon-note"></span> Middagdutje',
Item_Record_03: '<span class="icon-note"></span> Verrassingsritme',
Item_Record_04: '<span class="icon-note"></span> Telefoon',
Item_Record_06: '<span class="icon-note"></span> Club Dog',
Item_Record_05: '<span class="icon-note"></span> De Vlooienmars',
Item_Record_07: '<span class="icon-note"></span> Dans van de Rietfluiten',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikós Post',
Item_Record_10: '<span class="icon-note"></span> De Schaatsenrijderswals',
Item_Record_11: '<span class="icon-note"></span> Dankjewel',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Houten stok',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Metalen bout',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Rubberen autoband',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Leren sleutelhanger',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Plastic fles',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Sterrenstof',
// Accessories
Item_Coller_Normal_Red: 'Rode leren halsband',
Item_Coller_Normal_Blue: 'Blauwe leren halsband',
Item_Coller_Normal_Yellow: 'Gele leren halsband',
Item_Coller_Normal_Green: 'Groene leren halsband',
Item_Coller_Normal_Brown: 'Bruine leren halsband',
Item_Coller_Normal_White: 'Witte leren halsband',
Item_Coller_Normal_Black: 'Zwarte leren halsband',
Item_Coller_Normal_Purple: 'Paarse leren halsband',
Item_Coller_Dot_Black: 'Zwarte gestippelde halsband',
Item_Coller_Dot_Red: 'Rode gestippelde halsband',
Item_Coller_Dot_Colorful: 'Witte gestippelde halsband',
Item_Coller_Camouflage: 'Camouflagehalsband',
Item_Coller_Rainbow: 'Regenbooghalsband',
Item_Coller_Stripe: 'Zwart-witgestreepte halsband',
Item_Coller_Net: 'Gevlochten halsband',
Item_Coller_Flower_Necklace: 'Bloemetjeshalsband',
Item_Coller_Bead: 'Kraaltjeshalsband',
Item_Coller_Flower: 'Hibiscusbloemenkrans',
Item_Coller_linestone_Star: 'Sterretjeshalsband',
Item_Coller_linestone_Heart: 'Hartjeshalsband',
Item_Coller_Lace: 'Kanten ketting',
Item_Coller_Choker: 'Leren ketting',
Item_Coller_Cat_Red: 'Rode halsband met belletje',
Item_Coller_Cat_Blue: 'Blauwe halsband met belletje',
Item_Coller_Cat_Green: 'Groene halsband met belletje',
Item_Coller_Cat_Brown: 'Bruine halsband met belletje',
Item_Coller_Japanese_Green: 'Groene Japanse halsband',
Item_Coller_Japanese_Red: 'Rode Japanse halsband',
Item_Coller_Japanese_Blue: 'Blauwe Japanse halsband',
Item_Coller_Spike_Red: 'Rode halsband met spikes',
Item_Coller_Spike_Black: 'Zwarte halsband met spikes',
Item_Coller_Pattern_Python: 'Kunstleren halsband (python)',
Item_Coller_Pattern_Panther: 'Kunstleren halsband (luipaard)',
Item_Coller_Pattern_Zebra: 'Kunstleren halsband (zebra)',
Item_Coller_Pattern_Crocodile: 'Kunstleren halsband (krokodil)',
Item_Coller_Luck: 'Latijns-Amerikaanse halsband',
Item_Coller_Deco: 'Glinsterende halsband',
Item_Coller_Chain: 'Schakelketting',
Item_Coller_Silver: 'Zilveren ketting',
Item_Coller_Platinum: 'Platina halsband',
Item_Coller_Cashmere: 'Chique halsband',
Item_Coller_Pearl_White: 'Parelketting',
Item_Coller_Pearl_Black: 'Zwarteparelketting',
Item_Coller_Diamond: 'Diamanten halsband',
Item_Coller_Jewelry: 'Koninklijke ketting',
Item_Coller_Champ: 'Winnaarshalsband',
Item_Coller_Bandana: 'Kinderhalsdoek',
Item_Coller_Western: 'Westernhalsband',
Item_Coller_Bowtie: 'Vlinderdas',
Item_Coller_Scarf: 'Kokshalsdoek',
Item_Coller_Women_Scarf: 'Damessjaal',
Item_Coller_Men_Scarf: 'Herensjaal',
Item_Coller_Muffler: 'Rode wollen sjaal',
Item_Ribbon_Normal_Red: 'Rode strikjes',
Item_Ribbon_Normal_Yellow: 'Gele strikjes',
Item_Ribbon_Check_Red: 'Rode geruite strikjes',
Item_Ribbon_Check_Blue: 'Blauwe geruite strikjes',
Item_Ribbon_Polkadot_Red: 'Roze gestippelde strikjes',
Item_Ribbon_Polkadot_Blue: 'Blauwe gestippelde strikjes',
Item_Ribbon_Pearl_Purple: 'Paarse strikjes met parel',
Item_Ribbon_Pearl_Green: 'Groene strikjes met parel',
Item_Ribbon_Stripe_BlackWhite: 'Zwartgestreepte strikjes',
Item_Ribbon_Stripe_RedWhite: 'Roodgestreepte strikjes',
Item_Ribbon_Torico: 'Driekleurige strikjes',
Item_Ribbon_Luxury: 'Luxe strik',
Item_Flower_Rose_Red: 'Rode roos',
Item_Flower_Rose_Pink: 'Roze roos',
Item_Flower_Hibiscus_Red: 'Rode hibiscusbloem',
Item_Flower_Hibiscus_White: 'Witte hibiscusbloem',
Item_Flower_Sunflower: 'Zonnebloem',
Item_Headgear_Cap_Red: 'Rode pet',
Item_Headgear_Cap_Yellow: 'Gele pet',
Item_Headgear_Cap_Black: 'Zwarte pet',
Item_Headgear_Casket: 'Ouderwetse pet',
Item_Headgear_Leather: 'Leren pet',
Item_Headgear_Knit_Red: 'Rode wollen muts',
Item_Headgear_Knit_Yellow: 'Gele wollen muts',
Item_Headgear_Knit_Black: 'Zwarte wollen muts',
Item_Headgear_Knit_White: 'Witte wollen muts',
Item_Headgear_Knit2: 'Beanie',
Item_Headgear_Beret: 'Baret',
Item_Headgear_Sunvisor: 'Zonneklep',
Item_Headgear_Mugi: 'Strohoed',
Item_Headgear_Brim_White: 'Witte vissershoed',
Item_Headgear_Brim_Black: 'Zwarte vissershoed',
Item_Headgear_Brim_Beige: 'Beige vissershoed',
Item_Headgear_Tengallon_Brown: 'Bruine safarihoed',
Item_Headgear_Tengallon_White: 'Witte safarihoed',
Item_Headgear_Silk_Black: 'Zwarte hoge hoed',
Item_Headgear_Silk_White: 'Witte hoge hoed',
Item_Headgear_Borsalino: 'Gleufhoed',
Item_Headgear_Bucket: 'Dameshoed',
Item_Headgear_Feather_Green: 'Groene verenhoed',
Item_Headgear_Feather_Purple: 'Paarse verenhoed',
Item_Headgear_Pixiehat: 'Heksenhoed',
Item_Headgear_Santa: 'Kerstmuts',
Item_Headgear_Cook: 'Koksmuts',
Item_Headgear_Viking: 'Vikinghelm',
Item_Headgear_Party: 'Feestmuts',
Item_Headgear_Maid: 'Haarband',
Item_Headgear_Helmet: 'Racehelm',
Item_Headgear_Armor: 'Origamihoed',
Item_Headgear_Regent: 'Vetkuifpruik',
Item_Headgear_Mushroom: 'Bloempotpruik',
Item_Headgear_Afro: 'Regenboogpruik',
Item_Headgear_Fruit_Strawberry: 'Aardbeimuts',
Item_Headgear_Tiara: 'Diadeem',
Item_Headgear_Crown: 'Kroon',
Item_Headgear_Champ: 'Winnaarskroon',
Item_Headgear_Mario: 'Mario\'s pet',
Item_Headgear_Luigi: 'Luigi\'s pet',
Item_Headgear_Kinopio: 'Toad-muts',
Item_Headgear_Link: 'Links muts',
Item_Headgear_PikminRed: 'Rode Pikmin-muts',
Item_Headgear_PikminBlue: 'Blauwe Pikmin-muts',
Item_Headgear_PikminYellow: 'Gele Pikmin-muts',
Item_Headgear_Samus: 'Samus\' helm',
Item_Headgear_Kirby: 'Kirby-muts',
Item_Glass_Intell: 'Studentenbril',
Item_Glass_Business: 'Zakelijke bril',
Item_Glass_Cell_Red: 'Rode modieuze bril',
Item_Glass_Cell_Black: 'Zwarte modieuze bril',
Item_Glass_Deka: 'Politiezonnebril',
Item_Glass_Sunglasses_White: 'Witte zonnebril',
Item_Glass_Sunglasses_Yellow: 'Gele zonnebril',
Item_Glass_Sunglasses_Red: 'Rode zonnebril',
Item_Glass_UV: 'Sportieve zonnebril',
Item_Glass_Celeb_Black: 'Zwarte filmsterzonnebril',
Item_Glass_Celeb_Brown: 'Bruine filmsterzonnebril',
Item_Glass_Celeb_Pink: 'Roze filmsterzonnebril',
Item_Glass_Star: 'Sterrenzonnebril',
Item_Glass_Heart: 'Hartjeszonnebril',
Item_Glass_Mask: 'Masker',
Item_Glass_Champ: 'Winnaarsbril',
// Furnitures
Furni_BedRattan: 'Rotan hondenmand',
Furni_BedCloth: 'Zachte hondenmand',
Furni_MiniBed: 'Hondenmand',
Furni_SofaCouch: 'Comfortabele sofa',
Furni_SofaAntique: 'Antieke zitbank',
Furni_SofaFairy: 'Luxe tweezitsbank',
Furni_SofaLeather: 'Leren zitbank',
Furni_SofaCF: 'Leunstoel',
Furni_ChairModern: 'Designerstoel',
Furni_ChairMario: 'Koopa-schildstoel',
Furni_ChestStandard: 'Ladekast',
Furni_ChestAntique: 'Antiek dressoir',
Furni_ShelfNorse: 'Houten kast',
Furni_ShelfAsia: 'Boekenkast',
Furni_ShelfCupHigh: 'Porseleinkast',
Furni_ChestAsia: 'Vitrinekast',
Furni_ChestJapanese: 'Japanse trapkast',
Furni_ClosetFairy: 'Stijlvolle garderobekast',
Furni_ShowCase: 'Vitrinekast',
Furni_ShelfFuture: 'Futuristische kast',
Furni_TableDining: 'Eettafelset',
Furni_TableMario: 'Paddenstoeltafelset',
Furni_Fridge: 'Koelkast',
Furni_ElectricFan: 'Retro ventilator',
Furni_ElectricFanF: 'Elektronische ventilator',
Furni_StoveOil: 'Oliekachel',
Furni_AquariumSmall: 'Goudviskom',
Furni_AquariumBig: 'Arowana-aquarium',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Retro tv',
Furni_TVLCD: 'Flatscreen tv',
Furni_CatTowerSimple: 'Eenvoudige klimpaal',
Furni_CatTowerSlim: 'Smalle klimpaal',
Furni_CatTowerHouse: 'Boomhutachtige klimpaal',
// Leashes
Item_Lead_Red: 'Rode riem',
Item_Lead_White: 'Witte riem',
Item_Lead_Blue: 'Blauwe riem',
Item_Lead_Yellow: 'Gele riem',
Item_Lead_Green: 'Groene riem',
Item_Lead_Pink: 'Roze riem',
Item_Lead_Brown: 'Bruine riem',
Item_Lead_Black: 'Zwarte riem',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Zweeds',
Room_Japanese: 'Japans',
Room_Asia: 'Oosters',
Room_Modern: 'Modern',
Room_Country: 'Landelijk',
Room_Luxury: 'Luxe',
Room_Fairy: 'Sprookjesachtig',
Room_Mario: 'Mario',
Room_Future: 'Futuristisch',
// Competitions
GP_Disc: 'Discuswedstrijd',
GP_Lure: 'Lure coursing',
GP_Contest: 'Gehoorzaamheidstest',
// Ranks
GP_Rank1: 'Beginnersbeker',
GP_Rank2: 'Amateurbeker',
GP_Rank3: 'Profbeker',
GP_Rank4: 'Kampioensbeker',
GP_Rank5: 'Nintendogs-beker'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'pt', {
// Food & Drinks
Item_Foods_Water: 'Água',
Item_Foods_Milk: 'Leite',
Item_Foods_Dry: '<span class="icon-dog"></span> Ração',
Item_Foods_Wet: '<span class="icon-dog"></span> Comida Enlatada',
Item_Foods_Diet: '<span class="icon-dog"></span> Comida de Dieta',
Item_Foods_Premium: '<span class="icon-dog"></span> Comida Enlatada Gourmet',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span> Ração',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span> Comida enlatada',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span> Comida de Dieta',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span> Comida Enlatada Gourmet',
Item_Snack_Biscuit: 'Biscoitos',
Item_Snack_Dog: '<span class="icon-dog"></span> Biscoitos Cachorrinho',
Item_Snack_Bone: '<span class="icon-dog"></span> Biscoitos Osso',
Item_Snack_Bolo: '<span class="icon-dog"></span> Biscoitos',
Item_Snack_Jky: '<span class="icon-dog"></span> Guloseimas de Vaca',
Item_Snack_Hart: '<span class="icon-dog"></span> Biscoitos Coração',
Item_Snack_Gum: '<span class="icon-dog"></span> Biscoitos para Cachorro',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span> Biscoitos de Peixe',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span> Guloseimas de Peixe',
Item_Snack_Voice: 'Biscoitos Surpresa',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span> Guloseimas de Frango',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span> Erva de Gato',
Item_Brush_Animal: '<span class="icon-dog"></span> Escova de Cerdas Naturais',
Item_Brush_Pin: '<span class="icon-dog"></span> Escova de Pinos',
Item_Brush_Rubber: '<span class="icon-cat"></span> Escova de Borracha',
Item_Brush_Corm: '<span class="icon-cat"></span> Pente',
Item_Shampoo_Normal: 'Champô',
Item_Shampoo_Premium: 'Champô de Qualidade',
// Toys
Item_Tennisball_Yellow: 'Bola de Ténis',
Item_Tennisball_Pink: 'Bola de Ténis Rosa',
Item_Tennisball_Blue: 'Bola de Ténis Azul',
Item_Bone_Normal_White: 'Osso de Borracha Branco',
Item_Bone_Normal_Blue: 'Osso de Borracha Azul',
Item_Bone_Normal_Pink: 'Osso de Borracha Rosa',
Item_Bone_Meat: 'Osso com Carne de Borracha',
Item_Bone_Dumbbell: 'Haltere de Borracha',
Item_Ball_Temari: 'Bola de Guizos',
Item_Ball_Wanwan: 'Bola com Apito',
Item_Ball_Mushroom: 'Brinquedo Cogumelo',
Item_TowelCube: 'Cubo Macio',
Item_Hamburger: 'Hambúrguer de Borracha',
Item_Ball_Soccer: 'Bola de Futebol',
Item_Ball_Beach: 'Bola de Praia',
Item_Flyingdisk_Normal_Beginner_Red: 'Disco Voador Vermelho',
Item_Flyingdisk_Normal_Beginner_Blue: 'Disco Voador Azul',
Item_Flyingdisk_Normal_Beginner_Orange: 'Disco Voador Laranja',
Item_Flyingdisk_Normal_Beginner_Green: 'Disco Voador Verde',
Item_Flyingdisk_Normal_Pro_White: 'Disco Voador Pro Branco',
Item_Flyingdisk_Normal_Pro_Pink: 'Disco Voador Pro Rosa',
Item_Flyingdisk_Normal_Pro_Yellow: 'Disco Voador Pro Amarelo',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Disco Voador Pro Azul',
Item_Flyingdisk_Toy_Candy: 'Disco Chupa-Chupa',
Item_Flyingdisk_Toy_Nabe: 'Tampa de Panela',
Item_Flyingdisk_Toy_Pizza: 'Disco Pizza',
Item_Fryingdisk_Toy_Hoop: 'Arco',
Item_Flyingdisk_Rainbow: 'Disco Voador Arco-Íris',
Item_Boomerang_Blue: 'Bumerangue Azul',
Item_Boomerang_Yellow: 'Bumerangue Amarelo',
Item_Lure_Normal_Beginner_Red: 'Chamariz Vermelho',
Item_Lure_Normal_Beginner_Blue: 'Chamariz Azul',
Item_Lure_Normal_Beginner_Yellow: 'Chamariz Amarelo',
Item_Lure_Normal_Beginner_Pink: 'Chamariz Rosa',
Item_Lure_Normal_Pro_White: 'Chamariz Pro Branco',
Item_Lure_Normal_Pro_Green: 'Chamariz Pro Verde',
Item_Lure_Normal_Pro_Orange: 'Chamariz Pro Laranja',
Item_Lure_Normal_Pro_Blue: 'Chamariz Pro Azul-Claro',
Item_Lure_Toy_Meat: 'Chamariz Carne',
Item_Lure_Toy_Rabbit: 'Chamariz Coelho de Peluche',
Item_Lure_Toy_Banana: 'Chamariz Banana',
Item_Lure_Toy_Shoes: 'Chamariz Sapato de Balé',
Item_Lure_Rainbow: 'Chamariz Arco-Íris',
Item_Balloon: 'Balão',
Item_Bring: 'Frasco de Bolas de Sabão',
Item_Foxtail_Normal_Pink: 'Vara com Pena Rosa',
Item_Foxtail_Normal_Blue: 'Vara com Pena Azul',
Item_Foxtail_Normal_Green: 'Vara com Pena Verde',
Item_Foxtail_FishingPole_2: 'Vara com Penas',
Item_Foxtail_FishingPole_1: 'Vara com Rato',
Item_Foxtail_FishingPole_4: 'Vara com Borboleta',
Item_Foxtail_FishingPole_3: 'Vara com Peixe',
Item_Toy_Chick: 'Pintainho de Corda',
Item_Toy_Flog: 'Sapinho de Corda',
Item_Toy_Mouse: 'Ratinho de Corda',
Item_Kart_Mario: 'Carte do Mario',
Item_Kart_Peach: 'Carte da Peach',
Item_Kart_Yoshi: 'Carte do Yoshi',
Item_Heli_Nomal: 'Helicóptero Telecomandado',
Item_Heli_Combat: 'Helicóptero de Combate',
Item_Shoe: 'Sapato de Couro',
Item_Shoe_Highheel: 'Sapato de Salto Alto',
Item_Dog: 'Cão de Peluche',
Item_Daruma: 'Sempre-em-Pé',
Item_Diamond: 'Anel de Noivado',
Item_Gold: 'Lingote de Ouro',
Item_Pot: 'Porquinho-Mealheiro',
Item_AR: 'Câmara RA',
Item_Card: 'Vale Cão-Robô',
Item_Piano: 'Teclado',
Item_Record_00: '<span class="icon-note"></span> Cão & Gato',
Item_Record_01: '<span class="icon-note"></span> Duelo de Espadas',
Item_Record_02: '<span class="icon-note"></span> Hora da Sesta',
Item_Record_03: '<span class="icon-note"></span> Ritmo Surpresa',
Item_Record_04: '<span class="icon-note"></span> Telefone',
Item_Record_06: '<span class="icon-note"></span> Club Dog',
Item_Record_05: '<span class="icon-note"></span> Stepped on a Cat',
Item_Record_07: '<span class="icon-note"></span> Dança das Flautas',
Item_Record_08: '<span class="icon-note"></span> Maple Leaf Rag',
Item_Record_09: '<span class="icon-note"></span> Csikos Post',
Item_Record_10: '<span class="icon-note"></span> Valsa dos Patinadores',
Item_Record_11: '<span class="icon-note"></span> Obrigado!',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Pau de Madeira',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Parafuso de Metal',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Pedaço de Pneu de Borracha',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Porta-Chaves de Couro',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Garrafa de Plástico',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Poeira Estelar',
// Accessories
Item_Coller_Normal_Red: 'Coleira de Couro Vermelha',
Item_Coller_Normal_Blue: 'Coleira de Couro Azul',
Item_Coller_Normal_Yellow: 'Coleira de Couro Amarela',
Item_Coller_Normal_Green: 'Coleira de Couro Verde',
Item_Coller_Normal_Brown: 'Coleira de Couro Castanha',
Item_Coller_Normal_White: 'Coleira de Couro Branca',
Item_Coller_Normal_Black: 'Coleira de Couro Preta',
Item_Coller_Normal_Purple: 'Coleira de Couro Roxa',
Item_Coller_Dot_Black: 'Coleira Preta às Pintas',
Item_Coller_Dot_Red: 'Coleira Vermelha às Pintas',
Item_Coller_Dot_Colorful: 'Coleira às Pintas',
Item_Coller_Camouflage: 'Coleira de Camuflado',
Item_Coller_Rainbow: 'Coleira Arco-Íris',
Item_Coller_Stripe: 'Coleira às Riscas',
Item_Coller_Net: 'Coleira Tricotada',
Item_Coller_Flower_Necklace: 'Coleira com Flores',
Item_Coller_Bead: 'Coleira de Contas',
Item_Coller_Flower: 'Coleira de Flores de Hibisco',
Item_Coller_linestone_Star: 'Coleira com Estrelas',
Item_Coller_linestone_Heart: 'Coleira com Corações',
Item_Coller_Lace: 'Colar de Renda com Laço',
Item_Coller_Choker: 'Colar de Couro',
Item_Coller_Cat_Red: 'Coleira com Guizo Vermelha ',
Item_Coller_Cat_Blue: 'Coleira com Guizo Azul',
Item_Coller_Cat_Green: 'Coleira com Guizo Verde ',
Item_Coller_Cat_Brown: 'Coleira com Guizo Castanha',
Item_Coller_Japanese_Green: 'Coleira Japonesa Verde',
Item_Coller_Japanese_Red: 'Coleira Japonesa Vermelha',
Item_Coller_Japanese_Blue: 'Coleira Japonesa Azul',
Item_Coller_Spike_Red: 'Coleira Vermelha com Picos',
Item_Coller_Spike_Black: 'Coleira Preta com Picos',
Item_Coller_Pattern_Python: 'Coleira Imitação de Cobra',
Item_Coller_Pattern_Panther: 'Coleira Imitação de Leopardo',
Item_Coller_Pattern_Zebra: 'Coleira Imitação de Zebra',
Item_Coller_Pattern_Crocodile: 'Coleira Imitação de Crocodilo',
Item_Coller_Luck: 'Coleira com Turquesas',
Item_Coller_Deco: 'Coleira de Bijuteria',
Item_Coller_Chain: 'Colar de Elos de Metal',
Item_Coller_Silver: 'Colar de Prata',
Item_Coller_Platinum: 'Coleira de Platina',
Item_Coller_Cashmere: 'Coleira Chique',
Item_Coller_Pearl_White: 'Colar de Pérolas',
Item_Coller_Pearl_Black: 'Colar de Pérolas Negras',
Item_Coller_Diamond: 'Coleira de Diamantes',
Item_Coller_Jewelry: 'Colar Real',
Item_Coller_Champ: 'Coleira de Campeão',
Item_Coller_Bandana: 'Lenço de Criança',
Item_Coller_Western: 'Coleira de Couro com Franjas',
Item_Coller_Bowtie: 'Laçarote',
Item_Coller_Scarf: 'Cachecol Elegante',
Item_Coller_Women_Scarf: 'Cachecol de Senhora',
Item_Coller_Men_Scarf: 'Cachecol de Homem',
Item_Coller_Muffler: 'Cachecol de Lã Vermelho',
Item_Ribbon_Normal_Red: 'Laço Vermelho',
Item_Ribbon_Normal_Yellow: 'Laço Amarelo',
Item_Ribbon_Check_Red: 'Laço Vermelho aos Quadrados',
Item_Ribbon_Check_Blue: 'Laço Azul aos Quadrados',
Item_Ribbon_Polkadot_Red: 'Laço Rosa às Pintas',
Item_Ribbon_Polkadot_Blue: 'Laço Azul às Pintas',
Item_Ribbon_Pearl_Purple: 'Laço Roxo com Pérola',
Item_Ribbon_Pearl_Green: 'Laço Verde com Pérola',
Item_Ribbon_Stripe_BlackWhite: 'Laço Preto às Riscas',
Item_Ribbon_Stripe_RedWhite: 'Laço Vermelho às Riscas',
Item_Ribbon_Torico: 'Laço Tricolor',
Item_Ribbon_Luxury: 'Laço Requintado',
Item_Flower_Rose_Red: 'Rosa Vermelha',
Item_Flower_Rose_Pink: 'Rosa',
Item_Flower_Hibiscus_Red: 'Flor de Hibisco Vermelha',
Item_Flower_Hibiscus_White: 'Flor de Hibisco Branca',
Item_Flower_Sunflower: 'Girassol',
Item_Headgear_Cap_Red: 'Boné Vermelho',
Item_Headgear_Cap_Yellow: 'Boné Amarelo',
Item_Headgear_Cap_Black: 'Boné Preto',
Item_Headgear_Casket: 'Boné de Golfe',
Item_Headgear_Leather: 'Boné de Couro',
Item_Headgear_Knit_Red: 'Gorro de Lã Vermelho',
Item_Headgear_Knit_Yellow: 'Gorro de Lã Amarelo',
Item_Headgear_Knit_Black: 'Gorro de Lã Preto',
Item_Headgear_Knit_White: 'Gorro de Lã Branco',
Item_Headgear_Knit2: 'Gorro',
Item_Headgear_Beret: 'Boina',
Item_Headgear_Sunvisor: 'Pala',
Item_Headgear_Mugi: 'Chapéu de Palha',
Item_Headgear_Brim_White: 'Panamá Branco',
Item_Headgear_Brim_Black: 'Panamá Preto',
Item_Headgear_Brim_Beige: 'Panamá Bege',
Item_Headgear_Tengallon_Brown: 'Chapéu de Safari Castanho',
Item_Headgear_Tengallon_White: 'Chapéu de Safari Branco',
Item_Headgear_Silk_Black: 'Cartola Preta',
Item_Headgear_Silk_White: 'Cartola Branca',
Item_Headgear_Borsalino: 'Chapéu de Fedora',
Item_Headgear_Bucket: 'Chapéu de Senhora',
Item_Headgear_Feather_Green: 'Chapéu Verde com Pena',
Item_Headgear_Feather_Purple: 'Chapéu Roxo com Pena',
Item_Headgear_Pixiehat: 'Chapéu Pontiagudo',
Item_Headgear_Santa: 'Gorro de Pai Natal',
Item_Headgear_Cook: 'Chapéu de Cozinheiro',
Item_Headgear_Viking: 'Chapéu de Viking',
Item_Headgear_Party: 'Chapéu de Festa',
Item_Headgear_Maid: 'Touca',
Item_Headgear_Helmet: 'Capacete',
Item_Headgear_Armor: 'Chapéu de Origami',
Item_Headgear_Regent: 'Peruca com Poupa',
Item_Headgear_Mushroom: 'Peruca de Corte à Tigela',
Item_Headgear_Afro: 'Peruca Arco-Íris',
Item_Headgear_Fruit_Strawberry: 'Capuz Morango',
Item_Headgear_Tiara: 'Tiara',
Item_Headgear_Crown: 'Coroa',
Item_Headgear_Champ: 'Coroa de Campeão',
Item_Headgear_Mario: 'Boné do Mario',
Item_Headgear_Luigi: 'Boné do Luigi',
Item_Headgear_Kinopio: 'Gorro de Toad',
Item_Headgear_Link: 'Gorro de Herói',
Item_Headgear_PikminRed: 'Gorro Vermelho de Pikmin',
Item_Headgear_PikminBlue: 'Gorro Azul de Pikmin',
Item_Headgear_PikminYellow: 'Gorro Amarelo de Pikmin',
Item_Headgear_Samus: 'Capacete Espacial',
Item_Headgear_Kirby: 'Gorro de Kirby',
Item_Glass_Intell: 'Óculos de Intelectual',
Item_Glass_Business: 'Óculos de Executivo',
Item_Glass_Cell_Red: 'Óculos Modernos Vermelhos',
Item_Glass_Cell_Black: 'Óculos Modernos Pretos',
Item_Glass_Deka: 'Óculos de Polícia',
Item_Glass_Sunglasses_White: 'Óculos de Sol Brancos',
Item_Glass_Sunglasses_Yellow: 'Óculos de Sol Amarelos',
Item_Glass_Sunglasses_Red: 'Óculos de Sol Vermelhos',
Item_Glass_UV: 'Óculos de Sol Desportivos',
Item_Glass_Celeb_Black: 'Óculos de Sol Pretos',
Item_Glass_Celeb_Brown: 'Óculos de Sol Castanhos',
Item_Glass_Celeb_Pink: 'Óculos de Sol Rosa',
Item_Glass_Star: 'Óculos Estrela',
Item_Glass_Heart: 'Óculos Coração',
Item_Glass_Mask: 'Máscara de Baile',
Item_Glass_Champ: 'Óculos de Campeão',
// Furnitures
Furni_BedRattan: 'Cama de Vime para Cão',
Furni_BedCloth: 'Cama de Peluche para Cão',
Furni_MiniBed: 'Cama em Miniatura',
Furni_SofaCouch: 'Sofá Confortável',
Furni_SofaAntique: 'Sofá Clássico',
Furni_SofaFairy: 'Canapé',
Furni_SofaLeather: 'Sofá de Pele',
Furni_SofaCF: 'Cadeirão',
Furni_ChairModern: 'Cadeira de Design',
Furni_ChairMario: 'Cadeira Tartaruga',
Furni_ChestStandard: 'Cómoda',
Furni_ChestAntique: 'Cómoda Antiga',
Furni_ShelfNorse: 'Móvel de Madeira',
Furni_ShelfAsia: 'Estante',
Furni_ShelfCupHigh: 'Aparador',
Furni_ChestAsia: 'Armário Vitrina',
Furni_ChestJapanese: 'Móvel Japonês com Escada',
Furni_ClosetFairy: 'Roupeiro Elegante',
Furni_ShowCase: 'Vitrina',
Furni_ShelfFuture: 'Armário Futurista',
Furni_TableDining: 'Mesa de Jantar',
Furni_TableMario: 'Mesa Cogumelo',
Furni_Fridge: 'Frigorífico',
Furni_ElectricFan: 'Ventoinha Retro',
Furni_ElectricFanF: 'Ventoinha Eletrónica',
Furni_StoveOil: 'Aquecedor a Óleo',
Furni_AquariumSmall: 'Aquário',
Furni_AquariumBig: 'Aquário de Aroanas',
Furni_Piano: 'Piano',
Furni_TVCRT: 'Televisor Retro',
Furni_TVLCD: 'Televisor de Ecrã Plano',
Furni_CatTowerSimple: 'Torre Simples para Gatos',
Furni_CatTowerSlim: 'Torre Fina para Gatos',
Furni_CatTowerHouse: 'Casa de Árvore para Gatos',
// Leashes
Item_Lead_Red: 'Trela Vermelha',
Item_Lead_White: 'Trela Branca',
Item_Lead_Blue: 'Trela Azul',
Item_Lead_Yellow: 'Trela Amarela',
Item_Lead_Green: 'Trela Verde',
Item_Lead_Pink: 'Trela Rosa',
Item_Lead_Brown: 'Trela Castanha',
Item_Lead_Black: 'Trela Preta',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Escandinava',
Room_Japanese: 'Japonesa',
Room_Asia: 'Asiática',
Room_Modern: 'Moderna',
Room_Country: 'Casa de Campo',
Room_Luxury: 'Luxuosa',
Room_Fairy: 'Conto de Fadas',
Room_Mario: 'Mario',
Room_Future: 'Futurista',
// Competitions
GP_Disc: 'Concurso de Disco',
GP_Lure: 'Corrida com Caça',
GP_Contest: 'Prova de Obediência',
// Ranks
GP_Rank1: 'Taça Principiante',
GP_Rank2: 'Taça Amador',
GP_Rank3: 'Taça Profissional',
GP_Rank4: 'Taça Mestre',
GP_Rank5: 'Taça Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in EUR
Locale.add( 'ru', {
// Food & Drinks
Item_Foods_Water: 'Вода',
Item_Foods_Milk: 'Молоко',
Item_Foods_Dry: 'Сухой корм <span class="icon-dog"></span>',
Item_Foods_Wet: 'Консервы <span class="icon-dog"></span>',
Item_Foods_Diet: 'Диетический корм <span class="icon-dog"></span>',
Item_Foods_Premium: 'Консервы «премиум» <span class="icon-dog"></span>',
Item_Foods_Cat_Dry: 'Сухой корм <span class="icon-cat"></span>',
Item_Foods_Cat_Wet: 'Консервы <span class="icon-cat"></span>',
Item_Foods_Cat_Diet: 'Диетический корм <span class="icon-cat"></span>',
Item_Foods_Cat_Premium: 'Консервы «премиум» <span class="icon-cat"></span>',
Item_Snack_Biscuit: 'Печенье',
Item_Snack_Dog: 'Печенье в форме щенков <span class="icon-dog"></span>',
Item_Snack_Bone: 'Печенье в форме костей <span class="icon-dog"></span>',
Item_Snack_Bolo: 'Галеты <span class="icon-dog"></span>',
Item_Snack_Jky: 'Вяленая говядина <span class="icon-dog"></span>',
Item_Snack_Hart: 'Печенье в форме сердечек <span class="icon-dog"></span>',
Item_Snack_Gum: 'Жевательные кости <span class="icon-dog"></span>',
Item_Snack_Cat_Cookies: 'Печенье в форме рыб <span class="icon-cat"></span>',
Item_Snack_Cat_Jerky: 'Вяленая рыба <span class="icon-cat"></span>',
Item_Snack_Voice: 'Печенье-сюрприз',
Item_Snack_Cat_Chicken: 'Вяленая курица <span class="icon-cat"></span>',
Item_Snack_Cat_Grass: 'Кошачья трава <span class="icon-cat"></span>',
Item_Brush_Animal: 'Щетка с короткой щетиной <span class="icon-dog"></span>',
Item_Brush_Pin: 'Металлическая щетка <span class="icon-dog"></span>',
Item_Brush_Rubber: 'Резиновая щетка <span class="icon-cat"></span>',
Item_Brush_Corm: 'Расческа <span class="icon-cat"></span>',
Item_Shampoo_Normal: 'Шампунь',
Item_Shampoo_Premium: 'Шампунь «премиум»',
// Toys
Item_Tennisball_Yellow: 'Теннисный мячик',
Item_Tennisball_Pink: 'Розовый теннисный мячик',
Item_Tennisball_Blue: 'Голубой теннисный мячик',
Item_Bone_Normal_White: 'Белая резиновая кость',
Item_Bone_Normal_Blue: 'Голубая резиновая кость',
Item_Bone_Normal_Pink: 'Розовая резиновая кость',
Item_Bone_Meat: 'Резиновый кусок мяса',
Item_Bone_Dumbbell: 'Резиновая гантель',
Item_Ball_Temari: 'Мяч с колокольчиком',
Item_Ball_Wanwan: 'Пищащий мяч',
Item_Ball_Mushroom: 'Мяч «гриб»',
Item_TowelCube: 'Мягкий кубик',
Item_Hamburger: 'Резиновый гамбургер',
Item_Ball_Soccer: 'Футбольный мяч',
Item_Ball_Beach: 'Надувной мяч',
Item_Flyingdisk_Normal_Beginner_Red: 'Красный летающий диск',
Item_Flyingdisk_Normal_Beginner_Blue: 'Синий летающий диск',
Item_Flyingdisk_Normal_Beginner_Orange: 'Оранжевый летающий диск',
Item_Flyingdisk_Normal_Beginner_Green: 'Зеленый летающий диск',
Item_Flyingdisk_Normal_Pro_White: 'Белый диск профи',
Item_Flyingdisk_Normal_Pro_Pink: 'Розовый диск профи',
Item_Flyingdisk_Normal_Pro_Yellow: 'Желтый диск профи',
Item_Flyingdisk_Normal_Pro_Skyblue: 'Голубой диск профи',
Item_Flyingdisk_Toy_Candy: 'Диск-леденец',
Item_Flyingdisk_Toy_Nabe: 'Крышка от кастрюли',
Item_Flyingdisk_Toy_Pizza: 'Диск-пицца',
Item_Fryingdisk_Toy_Hoop: 'Обруч',
Item_Flyingdisk_Rainbow: 'Летающий диск «радуга»',
Item_Boomerang_Blue: 'Синий бумеранг',
Item_Boomerang_Yellow: 'Желтый бумеранг',
Item_Lure_Normal_Beginner_Red: 'Красная приманка',
Item_Lure_Normal_Beginner_Blue: 'Синяя приманка',
Item_Lure_Normal_Beginner_Yellow: 'Желтая приманка',
Item_Lure_Normal_Beginner_Pink: 'Розовая приманка',
Item_Lure_Normal_Pro_White: 'Белая приманка профи',
Item_Lure_Normal_Pro_Green: 'Зеленая приманка профи',
Item_Lure_Normal_Pro_Orange: 'Оранжевая приманка профи',
Item_Lure_Normal_Pro_Blue: 'Голубая приманка профи',
Item_Lure_Toy_Meat: 'Приманка «мясо»',
Item_Lure_Toy_Rabbit: 'Приманка «кролик»',
Item_Lure_Toy_Banana: 'Приманка «банан»',
Item_Lure_Toy_Shoes: 'Приманка «балетная тапочка»',
Item_Lure_Rainbow: 'Приманка «радуга»',
Item_Balloon: 'Надувной шарик',
Item_Bring: 'Мыльные пузыри',
Item_Foxtail_Normal_Pink: 'Розовое перо на палочке',
Item_Foxtail_Normal_Blue: 'Синее перо на палочке',
Item_Foxtail_Normal_Green: 'Зеленое перо на палочке',
Item_Foxtail_FishingPole_2: 'Перья на палочке',
Item_Foxtail_FishingPole_1: 'Мышка на палочке',
Item_Foxtail_FishingPole_4: 'Бабочка на палочке',
Item_Foxtail_FishingPole_3: 'Рыба на палочке',
Item_Toy_Chick: 'Заводной цыпленок',
Item_Toy_Flog: 'Заводная лягушка',
Item_Toy_Mouse: 'Заводная мышь',
Item_Kart_Mario: 'Карт Марио',
Item_Kart_Peach: 'Карт Пич',
Item_Kart_Yoshi: 'Карт Йоши',
Item_Heli_Nomal: 'Вертолет с ДУ',
Item_Heli_Combat: 'Военный вертолет',
Item_Shoe: 'Кожаная туфля',
Item_Shoe_Highheel: 'Туфля на шпильке',
Item_Dog: 'Тряпичная собака',
Item_Daruma: 'Неваляшка',
Item_Diamond: 'Кольцо для помолвки',
Item_Gold: 'Золотой слиток',
Item_Pot: 'Свинья-копилка',
Item_AR: 'AR Camera',
Item_Card: 'Купон на щенка-робота',
Item_Piano: 'Синтезатор',
Item_Record_00: 'Пес и кот <span class="icon-note"></span>',
Item_Record_01: 'Поединок <span class="icon-note"></span>',
Item_Record_02: 'Тихий час <span class="icon-note"></span>',
Item_Record_03: 'Сюрприз <span class="icon-note"></span>',
Item_Record_04: 'Телефонный звонок <span class="icon-note"></span>',
Item_Record_06: 'Пес в клубе <span class="icon-note"></span>',
Item_Record_05: 'Собачий вальс <span class="icon-note"></span>',
Item_Record_07: 'Танец пастушков <span class="icon-note"></span>',
Item_Record_08: 'Кленовый лист <span class="icon-note"></span>',
Item_Record_09: 'Почтовая карета <span class="icon-note"></span>',
Item_Record_10: 'Вальс конькобежцев <span class="icon-note"></span>',
Item_Record_11: 'Спасибо <span class="icon-note"></span>',
Item_Handiwork_Twig: '<span class="icon-recycle"></span> Деревянная палка',
Item_Handiwork_Iron: '<span class="icon-recycle"></span> Металлический болт',
Item_Handiwork_Gom: '<span class="icon-recycle"></span> Резиновая покрышка',
Item_Handiwork_Leather: '<span class="icon-recycle"></span> Кожаный брелок',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span> Пластиковая бутылка',
Item_Handiwork_Ore: '<span class="icon-recycle"></span> Кусок звезды',
// Accessories
Item_Coller_Normal_Red: 'Красный кожаный ошейник',
Item_Coller_Normal_Blue: 'Синий кожаный ошейник',
Item_Coller_Normal_Yellow: 'Желтый кожаный ошейник',
Item_Coller_Normal_Green: 'Зеленый кожаный ошейник',
Item_Coller_Normal_Brown: 'Коричневый кожаный ошейник',
Item_Coller_Normal_White: 'Белый кожаный ошейник',
Item_Coller_Normal_Black: 'Черный кожаный ошейник',
Item_Coller_Normal_Purple: 'Сиреневый кожаный ошейник',
Item_Coller_Dot_Black: 'Черный ошейник в крапинку',
Item_Coller_Dot_Red: 'Красный ошейник в крапинку',
Item_Coller_Dot_Colorful: 'Ошейник в крапинку',
Item_Coller_Camouflage: 'Ошейник-хамелеон',
Item_Coller_Rainbow: 'Ошейник «радуга»',
Item_Coller_Stripe: 'Ошейник в полоску',
Item_Coller_Net: 'Плетеный ошейник',
Item_Coller_Flower_Necklace: 'Ошейник с цветочками',
Item_Coller_Bead: 'Ожерелье из бисера',
Item_Coller_Flower: 'Ожерелье из гибискуса',
Item_Coller_linestone_Star: 'Ошейник со звездой',
Item_Coller_linestone_Heart: 'Ошейник с сердечком',
Item_Coller_Lace: 'Кружевной ошейник',
Item_Coller_Choker: 'Кожаный шнурок',
Item_Coller_Cat_Red: 'Ошейник с колокольчиком',
Item_Coller_Cat_Blue: 'Ошейник с колокольчиком',
Item_Coller_Cat_Green: 'Ошейник с колокольчиком',
Item_Coller_Cat_Brown: 'Ошейник с колокольчиком',
Item_Coller_Japanese_Green: 'Зеленый японский ошейник',
Item_Coller_Japanese_Red: 'Красный японский ошейник',
Item_Coller_Japanese_Blue: 'Синий японский ошейник',
Item_Coller_Spike_Red: 'Красный ошейник с шипами',
Item_Coller_Spike_Black: 'Черный ошейник с шипами',
Item_Coller_Pattern_Python: 'Ошейник из кожзаменителя',
Item_Coller_Pattern_Panther: 'Ошейник из кожзаменителя',
Item_Coller_Pattern_Zebra: 'Ошейник из кожзаменителя',
Item_Coller_Pattern_Crocodile: 'Ошейник из кожзаменителя',
Item_Coller_Luck: 'Ошейник с бирюзой',
Item_Coller_Deco: 'Ошейник со стразами',
Item_Coller_Chain: 'Металлическая цепочка',
Item_Coller_Silver: 'Серебряное ожерелье',
Item_Coller_Platinum: 'Ошейник с платиной',
Item_Coller_Cashmere: 'Кашемировый ошейник',
Item_Coller_Pearl_White: 'Жемчужное ожерелье',
Item_Coller_Pearl_Black: 'Черное жемчужное ожерелье',
Item_Coller_Diamond: 'Бриллиантовое ожерелье',
Item_Coller_Jewelry: 'Королевское ожерелье',
Item_Coller_Champ: 'Ошейник чемпиона',
Item_Coller_Bandana: 'Детская косынка',
Item_Coller_Western: 'Ошейник с кожаной бахромой',
Item_Coller_Bowtie: 'Галстук-бабочка',
Item_Coller_Scarf: 'Шейный платок',
Item_Coller_Women_Scarf: 'Дамский шарфик',
Item_Coller_Men_Scarf: 'Мужское кашне',
Item_Coller_Muffler: 'Красный вязаный шарф',
Item_Ribbon_Normal_Red: 'Красный бант',
Item_Ribbon_Normal_Yellow: 'Желтый бант',
Item_Ribbon_Check_Red: 'Красный клетчатый бант',
Item_Ribbon_Check_Blue: 'Синий клетчатый бант',
Item_Ribbon_Polkadot_Red: 'Розовый бант в горошек',
Item_Ribbon_Polkadot_Blue: 'Синий бант в горошек',
Item_Ribbon_Pearl_Purple: 'Лиловый бант с жемчужиной',
Item_Ribbon_Pearl_Green: 'Зеленый бант с жемчужиной',
Item_Ribbon_Stripe_BlackWhite: 'Бант в черную полоску',
Item_Ribbon_Stripe_RedWhite: 'Бант в красную полоску',
Item_Ribbon_Torico: 'Трехцветный бант',
Item_Ribbon_Luxury: 'Изысканный бант',
Item_Flower_Rose_Red: 'Красная роза',
Item_Flower_Rose_Pink: 'Розовая роза',
Item_Flower_Hibiscus_Red: 'Красный цветок гибискуса',
Item_Flower_Hibiscus_White: 'Белый цветок гибискуса',
Item_Flower_Sunflower: 'Подсолнух',
Item_Headgear_Cap_Red: 'Красная кепка',
Item_Headgear_Cap_Yellow: 'Желтая кепка',
Item_Headgear_Cap_Black: 'Черная кепка',
Item_Headgear_Casket: 'Клетчатая кепка',
Item_Headgear_Leather: 'Кожаная кепка',
Item_Headgear_Knit_Red: 'Красная вязаная шапка',
Item_Headgear_Knit_Yellow: 'Желтая вязаная шапка',
Item_Headgear_Knit_Black: 'Черная вязаная шапка',
Item_Headgear_Knit_White: 'Белая вязаная шапка',
Item_Headgear_Knit2: 'Мужская вязаная шапка',
Item_Headgear_Beret: 'Берет',
Item_Headgear_Sunvisor: 'Козырек от солнца',
Item_Headgear_Mugi: 'Соломенная шляпа',
Item_Headgear_Brim_White: 'Белая панамка',
Item_Headgear_Brim_Black: 'Черная панамка',
Item_Headgear_Brim_Beige: 'Бежевая панамка',
Item_Headgear_Tengallon_Brown: 'Коричневая ковбойская шляпа',
Item_Headgear_Tengallon_White: 'Белая ковбойская шляпа',
Item_Headgear_Silk_Black: 'Черный цилиндр',
Item_Headgear_Silk_White: 'Белый цилиндр',
Item_Headgear_Borsalino: 'Классическая шляпа',
Item_Headgear_Bucket: 'Капор',
Item_Headgear_Feather_Green: 'Зеленая шляпа с пером',
Item_Headgear_Feather_Purple: 'Лиловая шляпа с пером',
Item_Headgear_Pixiehat: 'Остроконечная шляпа',
Item_Headgear_Santa: 'Колпак Санта-Клауса',
Item_Headgear_Cook: 'Поварской колпак',
Item_Headgear_Viking: 'Шлем викинга',
Item_Headgear_Party: 'Праздничная шляпа',
Item_Headgear_Maid: 'Кружевная наколка',
Item_Headgear_Helmet: 'Мотоциклетный шлем',
Item_Headgear_Armor: 'Шляпа «оригами»',
Item_Headgear_Regent: 'Парик «кок»',
Item_Headgear_Mushroom: 'Парик «паж»',
Item_Headgear_Afro: 'Парик «радуга»',
Item_Headgear_Fruit_Strawberry: 'Шапка «клубничка»',
Item_Headgear_Tiara: 'Диадема',
Item_Headgear_Crown: 'Корона',
Item_Headgear_Champ: 'Корона чемпиона',
Item_Headgear_Mario: 'Кепка Марио',
Item_Headgear_Luigi: 'Кепка Луиджи',
Item_Headgear_Kinopio: 'Шапка Тоада',
Item_Headgear_Link: 'Колпак героя',
Item_Headgear_PikminRed: 'Красная шапка пикмина',
Item_Headgear_PikminBlue: 'Синяя шапка пикмина',
Item_Headgear_PikminYellow: 'Желтая шапка пикмина',
Item_Headgear_Samus: 'Шлем космического костюма',
Item_Headgear_Kirby: 'Шапка Кирби',
Item_Glass_Intell: 'Очки ученого',
Item_Glass_Business: 'Очки бизнесмена',
Item_Glass_Cell_Red: 'Красные модные очки',
Item_Glass_Cell_Black: 'Черные модные очки',
Item_Glass_Deka: 'Очки полицейского',
Item_Glass_Sunglasses_White: 'Белые очки',
Item_Glass_Sunglasses_Yellow: 'Желтые очки',
Item_Glass_Sunglasses_Red: 'Красные очки',
Item_Glass_UV: 'Солнцезащитные очки',
Item_Glass_Celeb_Black: 'Черные очки кинозвезды',
Item_Glass_Celeb_Brown: 'Коричневые очки кинозвезды',
Item_Glass_Celeb_Pink: 'Розовые очки кинозвезды',
Item_Glass_Star: 'Очки в форме звезд',
Item_Glass_Heart: 'Очки в форме сердец',
Item_Glass_Mask: 'Маска',
Item_Glass_Champ: 'Очки чемпиона',
// Furnitures
Furni_BedRattan: 'Плетеная лежанка',
Furni_BedCloth: 'Плюшевая лежанка',
Furni_MiniBed: 'Маленькая кровать',
Furni_SofaCouch: 'Удобный диван',
Furni_SofaAntique: 'Антикварная софа',
Furni_SofaFairy: 'Романтический диван',
Furni_SofaLeather: 'Кожаный диван',
Furni_SofaCF: 'Кресло',
Furni_ChairModern: 'Дизайнерский стул',
Furni_ChairMario: 'Стул черепахи Купа',
Furni_ChestStandard: 'Обычный комод',
Furni_ChestAntique: 'Антикварный комод',
Furni_ShelfNorse: 'Секретер',
Furni_ShelfAsia: 'Книжный шкаф',
Furni_ShelfCupHigh: 'Посудный шкаф',
Furni_ChestAsia: 'Витрина',
Furni_ChestJapanese: 'Японский комод',
Furni_ClosetFairy: 'Шикарный шифоньер',
Furni_ShowCase: 'Сервант',
Furni_ShelfFuture: 'Космический секретер',
Furni_TableDining: 'Обеденная группа',
Furni_TableMario: 'Обеденная группа «грибы»',
Furni_Fridge: 'Холодильник',
Furni_ElectricFan: 'Вентилятор ретро',
Furni_ElectricFanF: 'Электровентилятор',
Furni_StoveOil: 'Керосинка',
Furni_AquariumSmall: 'Малый аквариум',
Furni_AquariumBig: 'Большой аквариум',
Furni_Piano: 'Фортепьяно',
Furni_TVCRT: 'Телевизор ретро',
Furni_TVLCD: 'ЖК-телевизор',
Furni_CatTowerSimple: 'Когтеточка малая',
Furni_CatTowerSlim: 'Когтеточка большая',
Furni_CatTowerHouse: 'Кошкин дом',
// Leashes
Item_Lead_Red: 'Красный поводок',
Item_Lead_White: 'Белый поводок',
Item_Lead_Blue: 'Синий поводок',
Item_Lead_Yellow: 'Желтый поводок',
Item_Lead_Green: 'Зеленый поводок',
Item_Lead_Pink: 'Розовый поводок',
Item_Lead_Brown: 'Коричневый поводок',
Item_Lead_Black: 'Черный поводок',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: 'Скандинавский стиль',
Room_Japanese: 'Японский стиль',
Room_Asia: 'Азиатский стиль',
Room_Modern: 'Стиль хай-тек',
Room_Country: 'Деревенский стиль',
Room_Luxury: 'Роскошный стиль',
Room_Fairy: 'Сказочный стиль',
Room_Mario: 'Стиль Марио',
Room_Future: 'Космический стиль',
// Competitions
GP_Disc: 'Летающий диск',
GP_Lure: 'Собачьи бега',
GP_Contest: 'Выставка собак',
// Ranks
GP_Rank1: 'Кубок новичков',
GP_Rank2: 'Кубок любителей',
GP_Rank3: 'Кубок профи',
GP_Rank4: 'Кубок мастеров',
GP_Rank5: 'Кубок Nintendogs'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in CHN
Locale.add( 'zh', {
// Food & Drinks
Item_Foods_Water: '水',
Item_Foods_Milk: '牛奶',
Item_Foods_Dry: '<span class="icon-dog"></span>干粮',
Item_Foods_Wet: '<span class="icon-dog"></span>湿粮',
Item_Foods_Diet: '<span class="icon-dog"></span>减肥粮',
Item_Foods_Premium: '<span class="icon-dog"></span>至尊粮',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span>干粮',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span>湿粮',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span>减肥粮',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span>至尊粮',
Item_Snack_Biscuit: '饼干',
Item_Snack_Dog: '<span class="icon-dog"></span>小狗曲奇',
Item_Snack_Bone: '<span class="icon-dog"></span>骨头曲奇',
Item_Snack_Bolo: '<span class="icon-dog"></span>点心小饼干',
Item_Snack_Jky: '<span class="icon-dog"></span>牛肉干',
Item_Snack_Hart: '<span class="icon-dog"></span>心形曲奇',
Item_Snack_Gum: '<span class="icon-dog"></span>牙咬胶',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span>鱼曲奇',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span>鲣鱼干',
Item_Snack_Voice: '吓一跳曲奇',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span>鸡胸肉干',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span>猫草',
Item_Brush_Animal: '<span class="icon-dog"></span>鬃毛刷',
Item_Brush_Pin: '<span class="icon-dog"></span>针刷',
Item_Brush_Rubber: '<span class="icon-cat"></span>橡胶刷',
Item_Brush_Corm: '<span class="icon-cat"></span>梳子',
Item_Shampoo_Normal: '香波',
Item_Shampoo_Premium: '至尊香波',
// Toys
Item_Tennisball_Yellow: '网球',
Item_Tennisball_Pink: '网球(粉)',
Item_Tennisball_Blue: '网球(浅蓝)',
Item_Bone_Normal_White: '橡胶骨头(白)',
Item_Bone_Normal_Blue: '橡胶骨头(浅蓝)',
Item_Bone_Normal_Pink: '橡胶骨头(粉)',
Item_Bone_Meat: '橡胶肉',
Item_Bone_Dumbbell: '橡胶哑铃',
Item_Ball_Temari: '铃铛球',
Item_Ball_Wanwan: '汪汪球',
Item_Ball_Mushroom: '蘑菇球',
Item_TowelCube: '绒布方块',
Item_Hamburger: '汉堡包',
Item_Ball_Soccer: '足球',
Item_Ball_Beach: '沙滩球',
Item_Flyingdisk_Normal_Beginner_Red: '飞盘(红)',
Item_Flyingdisk_Normal_Beginner_Blue: '飞盘(蓝)',
Item_Flyingdisk_Normal_Beginner_Orange: '飞盘(橙)',
Item_Flyingdisk_Normal_Beginner_Green: '飞盘(绿)',
Item_Flyingdisk_Normal_Pro_White: '专业飞盘(白)',
Item_Flyingdisk_Normal_Pro_Pink: '专业飞盘(粉)',
Item_Flyingdisk_Normal_Pro_Yellow: '专业飞盘(黄)',
Item_Flyingdisk_Normal_Pro_Skyblue: '专业飞盘(浅蓝)',
Item_Flyingdisk_Toy_Candy: '棒棒糖',
Item_Flyingdisk_Toy_Nabe: '锅盖',
Item_Flyingdisk_Toy_Pizza: '比萨',
Item_Fryingdisk_Toy_Hoop: '呼啦圈',
Item_Flyingdisk_Rainbow: '彩虹飞盘',
Item_Boomerang_Blue: '回旋镖(蓝)',
Item_Boomerang_Yellow: '回旋镖(黄)',
Item_Lure_Normal_Beginner_Red: '诱饵(红)',
Item_Lure_Normal_Beginner_Blue: '诱饵(蓝)',
Item_Lure_Normal_Beginner_Yellow: '诱饵(黄)',
Item_Lure_Normal_Beginner_Pink: '诱饵(粉)',
Item_Lure_Normal_Pro_White: '专业诱饵(白)',
Item_Lure_Normal_Pro_Green: '专业诱饵(绿)',
Item_Lure_Normal_Pro_Orange: '专业诱饵(橙)',
Item_Lure_Normal_Pro_Blue: '专业诱饵(浅蓝)',
Item_Lure_Toy_Meat: '鲜肉诱饵',
Item_Lure_Toy_Rabbit: '兔子娃娃',
Item_Lure_Toy_Banana: '香蕉',
Item_Lure_Toy_Shoes: '芭蕾舞鞋',
Item_Lure_Rainbow: '彩虹诱饵',
Item_Balloon: '气球',
Item_Bring: '肥皂泡泡',
Item_Foxtail_Normal_Pink: '逗猫棒(粉)',
Item_Foxtail_Normal_Blue: '逗猫棒(蓝)',
Item_Foxtail_Normal_Green: '逗猫棒(绿)',
Item_Foxtail_FishingPole_2: '飞舞之羽',
Item_Foxtail_FishingPole_1: '蹦跳之鼠',
Item_Foxtail_FishingPole_4: '飞翔之蝶',
Item_Foxtail_FishingPole_3: '跳跳鱼',
Item_Toy_Chick: '发条小鸡仔',
Item_Toy_Flog: '发条蛙先生',
Item_Toy_Mouse: '发条老鼠小子',
Item_Kart_Mario: '马力欧卡丁车',
Item_Kart_Peach: '桃花公主卡丁车',
Item_Kart_Yoshi: '耀西卡丁车',
Item_Heli_Nomal: '直升机',
Item_Heli_Combat: '武装直升机',
Item_Shoe: '皮鞋',
Item_Shoe_Highheel: '高跟鞋',
Item_Dog: '看家犬',
Item_Daruma: '不倒翁',
Item_Diamond: '订婚戒指',
Item_Gold: '金条',
Item_Pot: '猪猪储蓄罐',
Item_AR: 'AR照相机',
Item_Card: '犬型机器人兑换券',
Item_Piano: '电子琴',
Item_Record_00: '<span class="icon-note"></span>DogCat',
Item_Record_01: '<span class="icon-note"></span>剑影重重',
Item_Record_02: '<span class="icon-note"></span>午睡',
Item_Record_03: '<span class="icon-note"></span>吓一跳旋律',
Item_Record_04: '<span class="icon-note"></span>电话会议',
Item_Record_06: '<span class="icon-note"></span>狗狗明星',
Item_Record_05: '<span class="icon-note"></span>踩到猫了',
Item_Record_07: '<span class="icon-note"></span>芦笛舞曲',
Item_Record_08: '<span class="icon-note"></span>枫叶雷格',
Item_Record_09: '<span class="icon-note"></span>邮递马车',
Item_Record_10: '<span class="icon-note"></span>溜冰圆舞曲',
Item_Record_11: '<span class="icon-note"></span>感谢',
Item_Handiwork_Twig: '<span class="icon-recycle"></span>树枝',
Item_Handiwork_Iron: '<span class="icon-recycle"></span>铁螺钉',
Item_Handiwork_Gom: '<span class="icon-recycle"></span>橡胶轮胎',
Item_Handiwork_Leather: '<span class="icon-recycle"></span>皮饰品',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span>塑料瓶',
Item_Handiwork_Ore: '<span class="icon-recycle"></span>星屑',
// Accessories
Item_Coller_Normal_Red: '皮项圈(红)',
Item_Coller_Normal_Blue: '皮项圈(蓝)',
Item_Coller_Normal_Yellow: '皮项圈(黄)',
Item_Coller_Normal_Green: '皮项圈(绿)',
Item_Coller_Normal_Brown: '皮项圈(棕)',
Item_Coller_Normal_White: '皮项圈(白)',
Item_Coller_Normal_Black: '皮项圈(黑)',
Item_Coller_Normal_Purple: '皮项圈(紫)',
Item_Coller_Dot_Black: '波点项圈(黑)',
Item_Coller_Dot_Red: '波点项圈(红)',
Item_Coller_Dot_Colorful: '波点项圈(白)',
Item_Coller_Camouflage: '迷彩项圈',
Item_Coller_Rainbow: '彩虹项圈',
Item_Coller_Stripe: '斜纹项圈',
Item_Coller_Net: '皮编项圈',
Item_Coller_Flower_Necklace: '花朵项圈',
Item_Coller_Bead: '串珠项圈',
Item_Coller_Flower: '朱槿项圈',
Item_Coller_linestone_Star: '星星项圈',
Item_Coller_linestone_Heart: '心型项圈',
Item_Coller_Lace: '蕾丝颈链',
Item_Coller_Choker: '皮颈链',
Item_Coller_Cat_Red: '铃铛项圈(红)',
Item_Coller_Cat_Blue: '铃铛项圈(蓝)',
Item_Coller_Cat_Green: '铃铛项圈(绿)',
Item_Coller_Cat_Brown: '铃铛项圈(棕)',
Item_Coller_Japanese_Green: '和风项圈(绿)',
Item_Coller_Japanese_Red: '和风项圈(红)',
Item_Coller_Japanese_Blue: '和风项圈(蓝)',
Item_Coller_Spike_Red: '尖刺项圈(红)',
Item_Coller_Spike_Black: '尖刺项圈(黑)',
Item_Coller_Pattern_Python: '狩猎项圈(蟒蛇)',
Item_Coller_Pattern_Panther: '狩猎项圈(豹子)',
Item_Coller_Pattern_Zebra: '狩猎项圈(斑马)',
Item_Coller_Pattern_Crocodile: '狩猎项圈(鳄鱼)',
Item_Coller_Luck: '绿松石项圈',
Item_Coller_Deco: '莱茵石项圈',
Item_Coller_Chain: '链条项链',
Item_Coller_Silver: '银项链',
Item_Coller_Platinum: '铂金项圈',
Item_Coller_Cashmere: '羊绒项圈',
Item_Coller_Pearl_White: '珍珠项链',
Item_Coller_Pearl_Black: '黑珍珠项链',
Item_Coller_Diamond: '钻石项圈',
Item_Coller_Jewelry: '王室珠宝',
Item_Coller_Champ: '冠军项圈',
Item_Coller_Bandana: '儿童大手帕',
Item_Coller_Western: '牛仔项圈',
Item_Coller_Bowtie: '蝴蝶领结',
Item_Coller_Scarf: '厨师领巾',
Item_Coller_Women_Scarf: '淑女丝巾',
Item_Coller_Men_Scarf: '绅士丝巾',
Item_Coller_Muffler: '红色围巾',
Item_Ribbon_Normal_Red: '蝴蝶结(红)',
Item_Ribbon_Normal_Yellow: '蝴蝶结(黄)',
Item_Ribbon_Check_Red: '格纹蝴蝶结(红)',
Item_Ribbon_Check_Blue: '格纹蝴蝶结(蓝)',
Item_Ribbon_Polkadot_Red: '波点蝴蝶结(粉)',
Item_Ribbon_Polkadot_Blue: '波点蝴蝶结(蓝)',
Item_Ribbon_Pearl_Purple: '珍珠蝴蝶结(紫)',
Item_Ribbon_Pearl_Green: '珍珠蝴蝶结(绿)',
Item_Ribbon_Stripe_BlackWhite: '斜纹蝴蝶结(黑)',
Item_Ribbon_Stripe_RedWhite: '斜纹蝴蝶结(红)',
Item_Ribbon_Torico: '三色蝴蝶结',
Item_Ribbon_Luxury: '高级蝴蝶结',
Item_Flower_Rose_Red: '玫瑰花(红)',
Item_Flower_Rose_Pink: '玫瑰花(粉)',
Item_Flower_Hibiscus_Red: '朱槿花(红)',
Item_Flower_Hibiscus_White: '朱槿花(白)',
Item_Flower_Sunflower: '向日葵',
Item_Headgear_Cap_Red: '棒球帽(红)',
Item_Headgear_Cap_Yellow: '棒球帽(黄)',
Item_Headgear_Cap_Black: '棒球帽(黑)',
Item_Headgear_Casket: '报童帽',
Item_Headgear_Leather: '猎帽',
Item_Headgear_Knit_Red: '针织帽(红)',
Item_Headgear_Knit_Yellow: '针织帽(黄)',
Item_Headgear_Knit_Black: '针织帽(黑)',
Item_Headgear_Knit_White: '针织帽(白)',
Item_Headgear_Knit2: '男士针织帽',
Item_Headgear_Beret: '贝雷帽',
Item_Headgear_Sunvisor: '空顶遮阳帽',
Item_Headgear_Mugi: '草帽',
Item_Headgear_Brim_White: '简易帽子(白)',
Item_Headgear_Brim_Black: '简易帽子(黑)',
Item_Headgear_Brim_Beige: '简易帽子(杏)',
Item_Headgear_Tengallon_Brown: '牛仔帽(棕)',
Item_Headgear_Tengallon_White: '牛仔帽(白)',
Item_Headgear_Silk_Black: '礼帽(黑)',
Item_Headgear_Silk_White: '礼帽(白)',
Item_Headgear_Borsalino: '绅士帽',
Item_Headgear_Bucket: '淑女帽',
Item_Headgear_Feather_Green: '羽饰帽(绿)',
Item_Headgear_Feather_Purple: '羽饰帽(紫)',
Item_Headgear_Pixiehat: '尖顶帽',
Item_Headgear_Santa: '圣诞帽',
Item_Headgear_Cook: '厨师帽',
Item_Headgear_Viking: '牛角帽',
Item_Headgear_Party: '聚会帽',
Item_Headgear_Maid: '蕾丝发箍',
Item_Headgear_Helmet: '赛手头盔',
Item_Headgear_Armor: '纸质武士盔',
Item_Headgear_Regent: '飞机头',
Item_Headgear_Mushroom: '蘑菇头',
Item_Headgear_Afro: '彩虹爆炸头',
Item_Headgear_Fruit_Strawberry: '草莓头巾',
Item_Headgear_Tiara: '后冠',
Item_Headgear_Crown: '王冠',
Item_Headgear_Champ: '冠军王冠',
Item_Headgear_Mario: '马力欧的帽子',
Item_Headgear_Luigi: '路易吉的帽子',
Item_Headgear_Kinopio: '奇诺比奥的帽子',
Item_Headgear_Link: '勇士的帽子',
Item_Headgear_PikminRed: '红色皮克敏的帽子',
Item_Headgear_PikminBlue: '蓝色皮克敏的帽子',
Item_Headgear_PikminYellow: '黄色皮克敏的帽子',
Item_Headgear_Samus: '加强服',
Item_Headgear_Kirby: '卡比的帽子',
Item_Glass_Intell: '学者眼镜',
Item_Glass_Business: '商务眼镜',
Item_Glass_Cell_Red: '平光眼镜(红)',
Item_Glass_Cell_Black: '平光眼镜(黑)',
Item_Glass_Deka: '明星太阳镜',
Item_Glass_Sunglasses_White: '太阳镜(白)',
Item_Glass_Sunglasses_Yellow: '太阳镜(黄)',
Item_Glass_Sunglasses_Red: '太阳镜(红)',
Item_Glass_UV: 'UV太阳镜',
Item_Glass_Celeb_Black: '名人眼镜(黑)',
Item_Glass_Celeb_Brown: '名人眼镜(棕)',
Item_Glass_Celeb_Pink: '名人眼镜(粉)',
Item_Glass_Star: '星星眼镜',
Item_Glass_Heart: '心型眼镜',
Item_Glass_Mask: '奇怪的面具',
Item_Glass_Champ: '冠军眼镜',
// Furnitures
Furni_BedRattan: '藤床',
Furni_BedCloth: '软垫床',
Furni_MiniBed: '小型床',
Furni_SofaCouch: '躺椅沙发',
Furni_SofaAntique: '古董沙发',
Furni_SofaFairy: '浪漫沙发',
Furni_SofaLeather: '皮沙发',
Furni_SofaCF: '扶手椅',
Furni_ChairModern: '设计师椅子',
Furni_ChairMario: '龟壳椅',
Furni_ChestStandard: '标准柜',
Furni_ChestAntique: '古董柜',
Furni_ShelfNorse: '实木陈列柜',
Furni_ShelfAsia: '书架',
Furni_ShelfCupHigh: '餐具柜',
Furni_ChestAsia: '装饰架',
Furni_ChestJapanese: '阶梯收纳柜',
Furni_ClosetFairy: '可爱衣橱',
Furni_ShowCase: '陈列柜',
Furni_ShelfFuture: '星际飞船陈列柜',
Furni_TableDining: '餐桌套件',
Furni_TableMario: '蘑菇的桌椅套件',
Furni_Fridge: '电冰箱',
Furni_ElectricFan: '怀旧风格的电风扇',
Furni_ElectricFanF: '电能风扇',
Furni_StoveOil: '石油取暖器',
Furni_AquariumSmall: '金鱼缸',
Furni_AquariumBig: '龙鱼水族箱',
Furni_Piano: '钢琴',
Furni_TVCRT: '老式电视机',
Furni_TVLCD: '液晶电视机',
Furni_CatTowerSimple: '简易猫爬架',
Furni_CatTowerSlim: '细长猫爬架',
Furni_CatTowerHouse: '别墅猫爬架',
// Leashes
Item_Lead_Red: '狗绳(红)',
Item_Lead_White: '狗绳(白)',
Item_Lead_Blue: '狗绳(蓝)',
Item_Lead_Yellow: '狗绳(黄)',
Item_Lead_Green: '狗绳(绿)',
Item_Lead_Pink: '狗绳(粉)',
Item_Lead_Brown: '狗绳(棕)',
Item_Lead_Black: '狗绳(黑)',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: '北欧风格',
Room_Japanese: '日式风格',
Room_Asia: '亚洲风格',
Room_Modern: '现代风格',
Room_Country: '乡村风格',
Room_Luxury: '奢华风格',
Room_Fairy: '童话风格',
Room_Mario: '马力欧风格',
Room_Future: '宇宙风格',
// Competitions
GP_Disc: '飞盘赛',
GP_Lure: '诱饵猎捕赛',
GP_Contest: '表演赛',
// Ranks
GP_Rank1: '新手杯',
GP_Rank2: '业余杯',
GP_Rank3: '专业杯',
GP_Rank4: '大师杯',
GP_Rank5: 'nintendogs杯'
} );

View File

@@ -0,0 +1,347 @@
// Translations found in CHN
Locale.add( 'zh_alt', {
// Food & Drinks
Item_Foods_Water: '水',
Item_Foods_Milk: '牛奶',
Item_Foods_Dry: '<span class="icon-dog"></span>乾狗糧',
Item_Foods_Wet: '<span class="icon-dog"></span>濕狗糧',
Item_Foods_Diet: '<span class="icon-dog"></span>減肥狗糧',
Item_Foods_Premium: '<span class="icon-dog"></span>高級狗糧',
Item_Foods_Cat_Dry: '<span class="icon-cat"></span>乾貓糧',
Item_Foods_Cat_Wet: '<span class="icon-cat"></span>濕貓糧',
Item_Foods_Cat_Diet: '<span class="icon-cat"></span>減肥貓糧',
Item_Foods_Cat_Premium: '<span class="icon-cat"></span>高級貓糧',
Item_Snack_Biscuit: '餅乾',
Item_Snack_Dog: '<span class="icon-dog"></span>小狗餅乾',
Item_Snack_Bone: '<span class="icon-dog"></span>骨頭餅乾',
Item_Snack_Bolo: '<span class="icon-dog"></span>小饅頭',
Item_Snack_Jky: '<span class="icon-dog"></span>牛肉乾',
Item_Snack_Hart: '<span class="icon-dog"></span>心型餅乾',
Item_Snack_Gum: '<span class="icon-dog"></span>潔牙骨',
Item_Snack_Cat_Cookies: '<span class="icon-cat"></span>小魚餅乾',
Item_Snack_Cat_Jerky: '<span class="icon-cat"></span>鰹魚乾',
Item_Snack_Voice: '驚喜餅乾',
Item_Snack_Cat_Chicken: '<span class="icon-cat"></span>雞胸肉乾',
Item_Snack_Cat_Grass: '<span class="icon-cat"></span>貓草',
Item_Brush_Animal: '<span class="icon-dog"></span>鬃毛梳',
Item_Brush_Pin: '<span class="icon-dog"></span>針梳',
Item_Brush_Rubber: '<span class="icon-cat"></span>橡膠梳',
Item_Brush_Corm: '<span class="icon-cat"></span>排梳',
Item_Shampoo_Normal: '洗毛精',
Item_Shampoo_Premium: '高級洗毛精',
// Toys
Item_Tennisball_Yellow: '網球',
Item_Tennisball_Pink: '網球(粉紅)',
Item_Tennisball_Blue: '網球(水藍)',
Item_Bone_Normal_White: '橡皮骨頭(白)',
Item_Bone_Normal_Blue: '橡皮骨頭(水藍)',
Item_Bone_Normal_Pink: '橡皮骨頭(粉紅)',
Item_Bone_Meat: '橡皮肉骨頭',
Item_Bone_Dumbbell: '橡皮啞鈴',
Item_Ball_Temari: '鈴鐺球',
Item_Ball_Wanwan: '耐咬球',
Item_Ball_Mushroom: '蘑菇球',
Item_TowelCube: '毛巾方塊',
Item_Hamburger: '漢堡玩具',
Item_Ball_Soccer: '足球',
Item_Ball_Beach: '海灘球',
Item_Flyingdisk_Normal_Beginner_Red: '飛盤(紅)',
Item_Flyingdisk_Normal_Beginner_Blue: '飛盤(藍)',
Item_Flyingdisk_Normal_Beginner_Orange: '飛盤(橘)',
Item_Flyingdisk_Normal_Beginner_Green: '飛盤(綠)',
Item_Flyingdisk_Normal_Pro_White: '專業飛盤(白)',
Item_Flyingdisk_Normal_Pro_Pink: '專業飛盤(粉紅)',
Item_Flyingdisk_Normal_Pro_Yellow: '專業飛盤(黃)',
Item_Flyingdisk_Normal_Pro_Skyblue: '專業飛盤(水藍)',
Item_Flyingdisk_Toy_Candy: '棒棒糖',
Item_Flyingdisk_Toy_Nabe: '鍋蓋',
Item_Flyingdisk_Toy_Pizza: '披薩',
Item_Fryingdisk_Toy_Hoop: '呼拉圈',
Item_Flyingdisk_Rainbow: '彩虹飛盤',
Item_Boomerang_Blue: '回力棒(藍)',
Item_Boomerang_Yellow: '回力棒(黃)',
Item_Lure_Normal_Beginner_Red: '假餌(紅)',
Item_Lure_Normal_Beginner_Blue: '假餌(藍)',
Item_Lure_Normal_Beginner_Yellow: '假餌(黃)',
Item_Lure_Normal_Beginner_Pink: '假餌(粉紅)',
Item_Lure_Normal_Pro_White: '專業假餌(白)',
Item_Lure_Normal_Pro_Green: '專業假餌(綠)',
Item_Lure_Normal_Pro_Orange: '專業假餌(橘)',
Item_Lure_Normal_Pro_Blue: '專業假餌(水藍)',
Item_Lure_Toy_Meat: '鮮肉假餌',
Item_Lure_Toy_Rabbit: '小兔娃娃假餌',
Item_Lure_Toy_Banana: '香蕉假餌',
Item_Lure_Toy_Shoes: '芭蕾舞鞋假餌',
Item_Lure_Rainbow: '彩虹假餌',
Item_Balloon: '氣球',
Item_Bring: '肥皂泡泡',
Item_Foxtail_Normal_Pink: '逗貓棒(粉紅)',
Item_Foxtail_Normal_Blue: '逗貓棒(藍)',
Item_Foxtail_Normal_Green: '逗貓棒(綠)',
Item_Foxtail_FishingPole_2: '跳舞羽毛',
Item_Foxtail_FishingPole_1: '跳跳鼠',
Item_Foxtail_FishingPole_4: '飛飛蝴蝶',
Item_Foxtail_FishingPole_3: '跳跳魚',
Item_Toy_Chick: '發條小雞',
Item_Toy_Flog: '發條青蛙',
Item_Toy_Mouse: '發條老鼠',
Item_Kart_Mario: '瑪利歐賽車',
Item_Kart_Peach: '碧姬公主賽車',
Item_Kart_Yoshi: '耀西賽車',
Item_Heli_Nomal: '直升機',
Item_Heli_Combat: '戰鬥直升機',
Item_Shoe: '皮鞋',
Item_Shoe_Highheel: '高跟鞋',
Item_Dog: '守門犬',
Item_Daruma: '不倒翁娃娃',
Item_Diamond: '訂婚戒指',
Item_Gold: '金條',
Item_Pot: '小豬存錢筒',
Item_AR: 'AR照相機',
Item_Card: '機器狗兌換券',
Item_Piano: '電子琴',
Item_Record_00: '<span class="icon-note"></span>DogCat',
Item_Record_01: '<span class="icon-note"></span>擊劍',
Item_Record_02: '<span class="icon-note"></span>睡午覺',
Item_Record_03: '<span class="icon-note"></span>驚奇節奏',
Item_Record_04: '<span class="icon-note"></span>電話會議',
Item_Record_06: '<span class="icon-note"></span>狗狗巨星',
Item_Record_05: '<span class="icon-note"></span>踩到貓兒',
Item_Record_07: '<span class="icon-note"></span>蘆笛之舞',
Item_Record_08: '<span class="icon-note"></span>楓葉散拍曲',
Item_Record_09: '<span class="icon-note"></span>郵遞馬車',
Item_Record_10: '<span class="icon-note"></span>溜冰圓舞曲',
Item_Record_11: '<span class="icon-note"></span>謝謝',
Item_Handiwork_Twig: '<span class="icon-recycle"></span>樹枝',
Item_Handiwork_Iron: '<span class="icon-recycle"></span>鐵螺栓',
Item_Handiwork_Gom: '<span class="icon-recycle"></span>橡膠輪胎',
Item_Handiwork_Leather: '<span class="icon-recycle"></span>皮飾',
Item_Handiwork_Plastic: '<span class="icon-recycle"></span>塑膠瓶',
Item_Handiwork_Ore: '<span class="icon-recycle"></span>星塵',
// Accessories
Item_Coller_Normal_Red: '皮革項圈(紅)',
Item_Coller_Normal_Blue: '皮革項圈(藍)',
Item_Coller_Normal_Yellow: '皮革項圈(黃)',
Item_Coller_Normal_Green: '皮革項圈(綠)',
Item_Coller_Normal_Brown: '皮革項圈(棕)',
Item_Coller_Normal_White: '皮革項圈(白)',
Item_Coller_Normal_Black: '皮革項圈(黑)',
Item_Coller_Normal_Purple: '皮革項圈(紫)',
Item_Coller_Dot_Black: '點點項圈(黑)',
Item_Coller_Dot_Red: '點點項圈(紅)',
Item_Coller_Dot_Colorful: '點點項圈(白)',
Item_Coller_Camouflage: '迷彩項圈',
Item_Coller_Rainbow: '彩虹項圈',
Item_Coller_Stripe: '條紋項圈',
Item_Coller_Net: '編織項圈',
Item_Coller_Flower_Necklace: '小花項圈',
Item_Coller_Bead: '串珠項圈',
Item_Coller_Flower: '扶桑花項圈',
Item_Coller_linestone_Star: '星星項圈',
Item_Coller_linestone_Heart: '愛心項圈',
Item_Coller_Lace: '蕾絲頸圈',
Item_Coller_Choker: '皮革頸圈',
Item_Coller_Cat_Red: '鈴鐺項圈(紅)',
Item_Coller_Cat_Blue: '鈴鐺項圈(藍)',
Item_Coller_Cat_Green: '鈴鐺項圈(綠)',
Item_Coller_Cat_Brown: '鈴鐺項圈(棕)',
Item_Coller_Japanese_Green: '和風項圈(綠)',
Item_Coller_Japanese_Red: '和風項圈(紅)',
Item_Coller_Japanese_Blue: '和風項圈(藍)',
Item_Coller_Spike_Red: '刺刺項圈(紅)',
Item_Coller_Spike_Black: '刺刺項圈(黑)',
Item_Coller_Pattern_Python: '蟒蛇紋項圈',
Item_Coller_Pattern_Panther: '豹紋項圈',
Item_Coller_Pattern_Zebra: '斑馬紋項圈',
Item_Coller_Pattern_Crocodile: '鱷魚紋項圈',
Item_Coller_Luck: '綠松石項圈',
Item_Coller_Deco: '水鑽項圈',
Item_Coller_Chain: '鎖鏈項鍊',
Item_Coller_Silver: '銀項鍊',
Item_Coller_Platinum: '白金項圈',
Item_Coller_Cashmere: '喀什米爾項圈',
Item_Coller_Pearl_White: '珍珠項鍊',
Item_Coller_Pearl_Black: '黑珍珠項鍊',
Item_Coller_Diamond: '鑽石項圈',
Item_Coller_Jewelry: '皇家珠寶',
Item_Coller_Champ: '冠軍項圈',
Item_Coller_Bandana: '兒童領巾',
Item_Coller_Western: '牛仔項圈',
Item_Coller_Bowtie: '領結',
Item_Coller_Scarf: '主廚領巾',
Item_Coller_Women_Scarf: '淑女領巾',
Item_Coller_Men_Scarf: '紳士領巾',
Item_Coller_Muffler: '紅圍巾',
Item_Ribbon_Normal_Red: '蝴蝶結(紅)',
Item_Ribbon_Normal_Yellow: '蝴蝶結(黃)',
Item_Ribbon_Check_Red: '格子蝴蝶結(紅)',
Item_Ribbon_Check_Blue: '格子蝴蝶結(藍)',
Item_Ribbon_Polkadot_Red: '點點蝴蝶結(粉紅)',
Item_Ribbon_Polkadot_Blue: '點點蝴蝶結(藍)',
Item_Ribbon_Pearl_Purple: '珍珠蝴蝶結(紫)',
Item_Ribbon_Pearl_Green: '珍珠蝴蝶結(綠)',
Item_Ribbon_Stripe_BlackWhite: '條紋蝴蝶結(黑)',
Item_Ribbon_Stripe_RedWhite: '條紋蝴蝶結(紅)',
Item_Ribbon_Torico: '三色蝴蝶結',
Item_Ribbon_Luxury: '高級蝴蝶結',
Item_Flower_Rose_Red: '玫瑰花(紅)',
Item_Flower_Rose_Pink: '玫瑰花(粉紅)',
Item_Flower_Hibiscus_Red: '扶桑花(紅)',
Item_Flower_Hibiscus_White: '扶桑花(白)',
Item_Flower_Sunflower: '向日葵',
Item_Headgear_Cap_Red: '棒球帽(紅)',
Item_Headgear_Cap_Yellow: '棒球帽(黃)',
Item_Headgear_Cap_Black: '棒球帽(黑)',
Item_Headgear_Casket: '報童帽',
Item_Headgear_Leather: '狩獵帽',
Item_Headgear_Knit_Red: '針織帽(紅)',
Item_Headgear_Knit_Yellow: '針織帽(黃)',
Item_Headgear_Knit_Black: '針織帽(黑)',
Item_Headgear_Knit_White: '針織帽(白)',
Item_Headgear_Knit2: '男用針織帽',
Item_Headgear_Beret: '貝雷帽',
Item_Headgear_Sunvisor: '遮陽帽',
Item_Headgear_Mugi: '草帽',
Item_Headgear_Brim_White: '漁夫帽(白)',
Item_Headgear_Brim_Black: '漁夫帽(黑)',
Item_Headgear_Brim_Beige: '漁夫帽(米)',
Item_Headgear_Tengallon_Brown: '牛仔帽(棕)',
Item_Headgear_Tengallon_White: '牛仔帽(白)',
Item_Headgear_Silk_Black: '禮帽(黑)',
Item_Headgear_Silk_White: '禮帽(白)',
Item_Headgear_Borsalino: '紳士帽',
Item_Headgear_Bucket: '淑女帽',
Item_Headgear_Feather_Green: '羽毛帽(綠)',
Item_Headgear_Feather_Purple: '羽毛帽(紫)',
Item_Headgear_Pixiehat: '尖帽子',
Item_Headgear_Santa: '聖誕帽',
Item_Headgear_Cook: '廚師帽',
Item_Headgear_Viking: '牛角帽',
Item_Headgear_Party: '派對帽',
Item_Headgear_Maid: '頭飾',
Item_Headgear_Helmet: '安全帽',
Item_Headgear_Armor: '摺紙帽',
Item_Headgear_Regent: '飛機頭',
Item_Headgear_Mushroom: '香菇頭',
Item_Headgear_Afro: '彩虹爆炸頭',
Item_Headgear_Fruit_Strawberry: '草莓頭巾',
Item_Headgear_Tiara: '后冠',
Item_Headgear_Crown: '王冠',
Item_Headgear_Champ: '冠軍皇冠',
Item_Headgear_Mario: '瑪利歐的帽子',
Item_Headgear_Luigi: '路易吉的帽子',
Item_Headgear_Kinopio: '奇諾比奧的帽子',
Item_Headgear_Link: '勇者的帽子',
Item_Headgear_PikminRed: '紅色皮克敏的帽子',
Item_Headgear_PikminBlue: '藍色皮克敏的帽子',
Item_Headgear_PikminYellow: '黃色皮克敏的帽子',
Item_Headgear_Samus: '加強服',
Item_Headgear_Kirby: '卡比的帽子',
Item_Glass_Intell: '學者眼鏡',
Item_Glass_Business: '商務眼鏡',
Item_Glass_Cell_Red: '平光眼鏡(紅)',
Item_Glass_Cell_Black: '平光眼鏡(黑)',
Item_Glass_Deka: '刑警墨鏡',
Item_Glass_Sunglasses_White: '墨鏡(白)',
Item_Glass_Sunglasses_Yellow: '墨鏡(黃)',
Item_Glass_Sunglasses_Red: '墨鏡(紅)',
Item_Glass_UV: '抗UV墨鏡',
Item_Glass_Celeb_Black: '名人墨鏡(黑)',
Item_Glass_Celeb_Brown: '名人墨鏡(棕)',
Item_Glass_Celeb_Pink: '名人墨鏡(粉紅)',
Item_Glass_Star: '星星眼鏡',
Item_Glass_Heart: '心型眼鏡',
Item_Glass_Mask: '化裝舞會面具',
Item_Glass_Champ: '冠軍眼鏡',
// Furnitures
Furni_BedRattan: '藤編床',
Furni_BedCloth: '軟墊床',
Furni_MiniBed: '迷你床',
Furni_SofaCouch: '舒適沙發',
Furni_SofaAntique: '古董沙發',
Furni_SofaFairy: '浪漫沙發',
Furni_SofaLeather: '皮革沙發',
Furni_SofaCF: '扶手椅',
Furni_ChairModern: '設計師椅',
Furni_ChairMario: '龜殼椅',
Furni_ChestStandard: '標準櫃',
Furni_ChestAntique: '古董櫃',
Furni_ShelfNorse: '木櫥',
Furni_ShelfAsia: '書架',
Furni_ShelfCupHigh: '碗櫃',
Furni_ChestAsia: '裝飾架',
Furni_ChestJapanese: '樓梯櫃',
Furni_ClosetFairy: '可愛衣櫃',
Furni_ShowCase: '展示櫃',
Furni_ShelfFuture: '太空船櫃',
Furni_TableDining: '餐桌椅組',
Furni_TableMario: '蘑菇桌椅組',
Furni_Fridge: '冰箱',
Furni_ElectricFan: '復古電風扇',
Furni_ElectricFanF: '電風扇',
Furni_StoveOil: '石油暖爐',
Furni_AquariumSmall: '金魚缸',
Furni_AquariumBig: '龍魚水族箱',
Furni_Piano: '鋼琴',
Furni_TVCRT: '映像管電視',
Furni_TVLCD: '液晶電視',
Furni_CatTowerSimple: '簡易貓塔',
Furni_CatTowerSlim: '細長貓塔',
Furni_CatTowerHouse: '貓屋塔',
// Leashes
Item_Lead_Red: '牽繩(紅)',
Item_Lead_White: '牽繩(白)',
Item_Lead_Blue: '牽繩(藍)',
Item_Lead_Yellow: '牽繩(黃)',
Item_Lead_Green: '牽繩(綠)',
Item_Lead_Pink: '牽繩(粉紅)',
Item_Lead_Brown: '牽繩(棕)',
Item_Lead_Black: '牽繩(黑)',
// Water Bowls
Item_Dish_W_Stainless_1: 'Stainless Steel Bowl',
Item_Dish_W_Bowl_Green_2: 'Green Bowl',
Item_Dish_W_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_W_Bowl_Red_4: 'Red Bowl',
Item_Dish_W_Classic_5: 'Urushi Bowl',
Item_Dish_W_Pattern_6: 'White Polka-Dot Bowl',
Item_Dish_W_Western_7: 'High-Class Bowl',
Item_Dish_W_Wood_8: 'Wooden Bowl',
// Food Bowls
Item_Dish_White_1: 'White Bowl',
Item_Dish_Bowl_Green_2: 'Green Bowl',
Item_Dish_Bowl_Yellow_3: 'Yellow Bowl',
Item_Dish_Bowl_Red_4: 'Red Bowl',
Item_Dish_Classic_5: 'Pottery Bowl',
Item_Dish_Pattern_6: 'Pink Polka-Dot Bowl',
Item_Dish_Western_7: 'Japanese-Style Bowl',
Item_Dish_Wood_8: 'Wooden Bowl',
// Interiors
Room_Norse: '北歐風格',
Room_Japanese: '日式風格',
Room_Asia: '亞洲風格',
Room_Modern: '現代風格',
Room_Country: '鄉村風格',
Room_Luxury: '華麗風格',
Room_Fairy: '童話風格',
Room_Mario: '瑪利歐風格',
Room_Future: '宇宙風格',
// Competitions
GP_Disc: '飛盤賽',
GP_Lure: '假餌追逐賽',
GP_Contest: '才藝比賽',
// Ranks
GP_Rank1: '新人盃',
GP_Rank2: '業餘盃',
GP_Rank3: '專業盃',
GP_Rank4: '大師盃',
GP_Rank5: 'nintendogs盃'
} );

View File

@@ -59,34 +59,35 @@
width: 80%;
}
.item-name[ data-icon ]::before {
.icon-dog,
.icon-cat,
.icon-note,
.icon-recycle {
background-image: url( ./assets/icons.webp );
background-repeat: no-repeat;
background-size: 68px;
content: '';
display: inline-block;
filter: invert( 1 );
height: 21px;
margin-right: 3px;
pointer-events: none;
user-select: none;
vertical-align: text-bottom;
width: 17px;
}
.item-name[ data-icon='1' ]::before {
.icon-dog {
background-position-x: 0;
}
.item-name[ data-icon='2' ]::before {
.icon-cat {
background-position-x: -17px;
}
.item-name[ data-icon='3' ]::before {
.icon-note {
background-position-x: -34px;
}
.item-name[ data-icon='4' ]::before {
.icon-recycle {
background-position-x: -51px;
}

View File

@@ -104,15 +104,15 @@ SavegameEditor = {
PET_PERSONALITIES_OFFSET_CAT2: 0x1F2,
WALKING_COUNTER_OFFSET: 0x215,
interiors: [
[ '0x208', 'Scandinavian' ],
[ '0x209', 'Japanese' ],
[ '0x20A', 'Asian' ],
[ '0x20B', 'Modern' ],
[ '0x20C', 'Country' ],
[ '0x20D', 'Luxerious House' ],
[ '0x20E', 'Fairy Tale' ],
[ '0x20F', 'Mario House' ],
[ '0x210', 'Futuristic' ]
[ '0x208', 'Room_Norse' ],
[ '0x209', 'Room_Japanese' ],
[ '0x20A', 'Room_Asia' ],
[ '0x20B', 'Room_Modern' ],
[ '0x20C', 'Room_Country' ],
[ '0x20D', 'Room_Luxury' ],
[ '0x20E', 'Room_Fairy' ],
[ '0x20F', 'Room_Mario' ],
[ '0x210', 'Room_Future' ]
]
},
@@ -220,9 +220,6 @@ SavegameEditor = {
itemName.className = 'item-name';
itemName.dataset.translate = item[ 1 ];
SavegameEditor.setPos( itemIcon, index );
if ( item[ 3 ] ) {
itemName.dataset.icon = item[ 3 ];
}
row.append( itemCol );
row.append(
col( 1, itemInput )
@@ -244,16 +241,24 @@ SavegameEditor = {
row = get( 'row-interiors' );
SavegameEditor.Constants.interiors.forEach( ( interior, index ) => {
const input = inputNumber( `interiors_${ index }`, 0, interior[ 1 ], tempFile.readU8( Number( interior[ 0 ] ) ) );
const textEle = span( '' );
textEle.dataset.translate = interior[ 1 ];
row.append(
col( 3, span( interior[ 1 ] ) ),
col( 3, textEle ),
col( 1, input )
);
input.dataset.offset = interior[ 0 ];
input.addEventListener( 'change', SavegameEditor._write_supply_amount );
options.push( interior[ 1 ] );
} );
row.prepend( col( 4, select( 'interiors', options, SavegameEditor.updateInterior ) ) );
const opt = select( 'interiors', options, SavegameEditor.updateInterior );
row.prepend( col( 4, opt ) );
row.prepend( col( 8, span( 'Active interior' ) ) );
for ( let i = 0; i < opt.length; i++ ) {
if ( opt[ i ].nodeName === 'OPTION' ) {
opt[ i ].dataset.translate = opt[ i ].textContent;
}
}
},
/* settings */