Initial commit

This commit is contained in:
xenticore
2025-03-21 13:53:45 -04:00
commit 568b2eaabd
28 changed files with 1604 additions and 0 deletions

24
src/strings/en.js Normal file
View File

@@ -0,0 +1,24 @@
module.exports = {
// Generic button text, %@ is always a URL (eg. backpack.tf)
"View listings on %@": "View listings on %@",
// Itembox header
"Community Pricing": "Community Pricing",
// Itembox footer
"Updated %@.": "Updated %@.", // %@ is a date string, sourced from AppleGlot
"Trade prices sourced from %@. Currency conversions are approximate.": "Trade prices sourced from %@. Currency conversions are approximate.", // %@ is always a URL, (eg. prices.tf)
// Price strings
"Data unavailable": "Data unavailable", // sourced from AppleGlot
"%@ key": "%@ key",
"%@ keys": "%@ keys",
// Item quality names, all sourced from TF2 wiki
"Normal": "Normal",
"Genuine": "Genuine",
"Vintage": "Vintage",
"Unique": "Unique",
"Strange": "Strange",
"Collector's": "Collector's",
"Haunted": "Haunted"
}

24
src/strings/es.js Normal file
View File

@@ -0,0 +1,24 @@
module.exports = {
// Generic button text, %@ is always a URL (eg. backpack.tf)
"View listings on %@": "Ver ofertas en %@",
// Itembox header
"Community Pricing": "Precios de la comunidad",
// Itembox footer
"Updated %@.": "Actualizado %@.", // %@ is a date string, sourced from AppleGlot
"Trade prices sourced from %@. Currency conversions are approximate.": "Precios comerciales obtenidos de %@. Las conversiones de divisas son aproximadas.", // %@ is always a URL, (eg. prices.tf)
// Price strings
"Data unavailable": "Datos no disponibles", // sourced from AppleGlot
"%@ key": "%@ llave",
"%@ keys": "%@ llaves",
// Item quality names, all sourced from TF2 wiki
"Normal": "de Calidad Normal",
"Genuine": "de Calidad Genuina",
"Vintage": "de Calidad Clásica",
"Unique": "de Calidad Única",
"Strange": "de Calidad Rara",
"Collector's": "de Coleccionista",
"Haunted": "de Calidad Embrujada"
}

16
src/strings/it.js Normal file
View File

@@ -0,0 +1,16 @@
module.exports = {
"View listings on %@": "Voir les offres sur %@",
"Community Pricing": "Community Pricing",
"Updated %@": "Updated %@",
"From %@": "From %@",
"Data unavailable": "Data unavailable",
"%@ key": "%@ key",
"%@ keys": "%@ keys",
"Normal": "Normale",
"Genuine": "Autentico",
"Vintage": "Vintage",
"Unique": "Unico",
"Strange": "Strano",
"Collector's": "Da collezione",
"Haunted": "Stregato"
}

24
src/strings/ja.js Normal file
View File

@@ -0,0 +1,24 @@
module.exports = {
// Generic button text, %@ is always a URL (eg. backpack.tf)
"View listings on %@": "%@で検索結果を見る",
// Itembox header
"Community Pricing": "Community Pricing",
// Itembox footer
"Updated %@.": "アップデート: %@。", // %@ is a date string, sourced from AppleGlot
"Trade prices sourced from %@. Currency conversions are approximate.": "Trade prices sourced from %@. Currency conversions are approximate.", // %@ is always a URL, (eg. prices.tf)
// Price strings
"Data unavailable": "データがありません", // sourced from AppleGlot
"%@ key": "%@ key",
"%@ keys": "%@ keys",
// Item quality names, all sourced from TF2 wiki
"Normal": "ノーマル",
"Genuine": "ジェニュイン",
"Vintage": "ビンテージ",
"Unique": "専用",
"Strange": "ストレンジ",
"Collector's": "Collector's",
"Haunted": "Haunted"
}