TO SQUASH: Started translating to Spanish.
This commit is contained in:
@@ -1,56 +1,225 @@
|
||||
from renpy import _
|
||||
|
||||
"""renpy
|
||||
init python:
|
||||
"""
|
||||
|
||||
SYNONYMS = {
|
||||
'happy': set(["amused", "animated", "beaming", "beatific", "blessed",
|
||||
"blissful", "blithe", "blithesome", "boisterous", "bouncy",
|
||||
"breezy", "bright", "bubbly", "buoyant", "carefree",
|
||||
"cheerful", "cheery", "chipper", "chirpy", "chuffed",
|
||||
"comfortable", "content", "contented", "convivial",
|
||||
"delighted", "delirious", "ebullient", "ecstatic",
|
||||
"effervescent", "elated", "enchanted", "enraptured",
|
||||
"enthusiastic", "euphoric", "exhilarated", "exultant",
|
||||
"exuberant", "felicitous", "festive", "fortunate",
|
||||
"fulfilled", "genial", "glad", "gladdened", "gleeful",
|
||||
"glowing", "good-humored", "good-natured", "gratified",
|
||||
"halcyon", "happy", "heartened", "high-spirited", "hopeful",
|
||||
"jaunty", "jocose", "jocular", "jocund", "jolly", "jovial",
|
||||
"joyful", "joyous", "jubilant", "lighthearted", "lively",
|
||||
"lucky", "merry", "mirthful", "optimistic", "overjoyed",
|
||||
"peaceful", "peppy", "perky", "playful", "pleasant",
|
||||
"pleased", "positive", "pumped", "radiant", "rapt",
|
||||
"rapturous", "rejoicing", "relaxed", "sanguine", "satisfied",
|
||||
"serene", "smiling", "sparkling", "spirited", "sprightly",
|
||||
"stoked", "sunny", "thrilled", "tickled", "tranquil",
|
||||
"triumphant", "unclouded", "untroubled", "upbeat",
|
||||
"vivacious", "winsome", "zestful", "zippy"]),
|
||||
"sad": set(["unhappy", "sorrowful", "dejected", "depressed", "downcast",
|
||||
"miserable", "gloomy", "despondent", "melancholy", "woeful",
|
||||
"forlorn", "heartbroken", "blue", "doleful", "lugubrious",
|
||||
"somber", "disconsolate", "wretched", "heavy-hearted", "low",
|
||||
"crestfallen"]),
|
||||
"surprised": set(["astonished", "amazed", "startled", "stunned",
|
||||
"thunderstruck", "confounded", "staggered",
|
||||
"flabbergasted", "shocked", "awestruck", "speechless",
|
||||
"dumbfounded", "jolted"]),
|
||||
"embarrassed": set(["ashamed", "humiliated", "mortified", "abashed",
|
||||
"self-conscious", "sheepish", "chagrined", "awkward",
|
||||
"flustered", "red-faced", "discomfited", "discomposed",
|
||||
"rattled"]),
|
||||
"flirty": set(["coquettish", "playful", "amorous", "provocative",
|
||||
"teasing", "frisky", "saucy", "coy", "seductive",
|
||||
"suggestive", "vampish", "dallying", "skittish"]),
|
||||
"angry": set(["irate", "furious", "incensed", "enraged", "wrathful",
|
||||
"annoyed", "irritated", "fuming", "livid", "indignant",
|
||||
"cross", "vexed", "seething", "maddened", "choleric",
|
||||
"resentful", "piqued", "infuriated"]),
|
||||
"thinking": set(["pondering", "contemplating", "reflecting", "meditating",
|
||||
"ruminating", "deliberating", "mulling", "considering",
|
||||
"pensive", "cogitating", "brooding", "cerebral",
|
||||
"introspective", "analytical"]),
|
||||
"confused": set(["puzzled", "baffled", "perplexed", "muddled",
|
||||
"bewildered", "disoriented", "nonplussed", "befuddled",
|
||||
"dazed", "flummoxed", "stumped", "mystified", "addled",
|
||||
"discombobulated"]),
|
||||
'happy': set([
|
||||
_("amused"),
|
||||
_("animated"),
|
||||
_("beaming"),
|
||||
_("beatific"),
|
||||
_("blessed"),
|
||||
_("blissful"),
|
||||
_("blithe"),
|
||||
_("blithesome"),
|
||||
_("boisterous"),
|
||||
_("bouncy"),
|
||||
_("breezy"),
|
||||
_("bright"),
|
||||
_("bubbly"),
|
||||
_("buoyant"),
|
||||
_("carefree"),
|
||||
_("cheerful"),
|
||||
_("cheery"),
|
||||
_("chipper"),
|
||||
_("chirpy"),
|
||||
_("chuffed"),
|
||||
_("comfortable"),
|
||||
_("content"),
|
||||
_("contented"),
|
||||
_("convivial"),
|
||||
_("delighted"),
|
||||
_("delirious"),
|
||||
_("ebullient"),
|
||||
_("ecstatic"),
|
||||
_("effervescent"),
|
||||
_("elated"),
|
||||
_("enchanted"),
|
||||
_("enraptured"),
|
||||
_("enthusiastic"),
|
||||
_("euphoric"),
|
||||
_("exhilarated"),
|
||||
_("exultant"),
|
||||
_("exuberant"),
|
||||
_("felicitous"),
|
||||
_("festive"),
|
||||
_("fortunate"),
|
||||
_("fulfilled"),
|
||||
_("genial"),
|
||||
_("glad"),
|
||||
_("gladdened"),
|
||||
_("gleeful"),
|
||||
_("glowing"),
|
||||
_("good-humored"),
|
||||
_("good-natured"),
|
||||
_("gratified"),
|
||||
_("halcyon"),
|
||||
_("happy"),
|
||||
_("heartened"),
|
||||
_("high-spirited"),
|
||||
_("hopeful"),
|
||||
_("jaunty"),
|
||||
_("jocose"),
|
||||
_("jocular"),
|
||||
_("jocund"),
|
||||
_("jolly"),
|
||||
_("jovial"),
|
||||
_("joyful"),
|
||||
_("joyous"),
|
||||
_("jubilant"),
|
||||
_("lighthearted"),
|
||||
_("lively"),
|
||||
_("lucky"),
|
||||
_("merry"),
|
||||
_("mirthful"),
|
||||
_("optimistic"),
|
||||
_("overjoyed"),
|
||||
_("peaceful"),
|
||||
_("peppy"),
|
||||
_("perky"),
|
||||
_("playful"),
|
||||
_("pleasant"),
|
||||
_("pleased"),
|
||||
_("positive"),
|
||||
_("pumped"),
|
||||
_("radiant"),
|
||||
_("rapt"),
|
||||
_("rapturous"),
|
||||
_("rejoicing"),
|
||||
_("relaxed"),
|
||||
_("sanguine"),
|
||||
_("satisfied"),
|
||||
_("serene"),
|
||||
_("smiling"),
|
||||
_("sparkling"),
|
||||
_("spirited"),
|
||||
_("sprightly"),
|
||||
_("stoked"),
|
||||
_("sunny"),
|
||||
_("thrilled"),
|
||||
_("tickled"),
|
||||
_("tranquil"),
|
||||
_("triumphant"),
|
||||
_("unclouded"),
|
||||
_("untroubled"),
|
||||
_("upbeat"),
|
||||
_("vivacious"),
|
||||
_("winsome"),
|
||||
_("zestful"),
|
||||
_("zippy")]),
|
||||
"sad": set([
|
||||
_("unhappy"),
|
||||
_("sorrowful"),
|
||||
_("dejected"),
|
||||
_("depressed"),
|
||||
_("downcast"),
|
||||
_("miserable"),
|
||||
_("gloomy"),
|
||||
_("despondent"),
|
||||
_("melancholy"),
|
||||
_("woeful"),
|
||||
_("forlorn"),
|
||||
_("heartbroken"),
|
||||
_("blue"),
|
||||
_("doleful"),
|
||||
_("lugubrious"),
|
||||
_("somber"),
|
||||
_("disconsolate"),
|
||||
_("wretched"),
|
||||
_("heavy-hearted"),
|
||||
_("low"),
|
||||
_("crestfallen")]),
|
||||
"surprised": set([
|
||||
_("astonished"),
|
||||
_("amazed"),
|
||||
_("startled"),
|
||||
_("stunned"),
|
||||
_("thunderstruck"),
|
||||
_("confounded"),
|
||||
_("staggered"),
|
||||
_("flabbergasted"),
|
||||
_("shocked"),
|
||||
_("awestruck"),
|
||||
_("speechless"),
|
||||
_("dumbfounded"),
|
||||
_("jolted")]),
|
||||
"embarrassed": set([
|
||||
_("ashamed"),
|
||||
_("humiliated"),
|
||||
_("mortified"),
|
||||
_("abashed"),
|
||||
_("self-conscious"),
|
||||
_("sheepish"),
|
||||
_("chagrined"),
|
||||
_("awkward"),
|
||||
_("flustered"),
|
||||
_("red-faced"),
|
||||
_("discomfited"),
|
||||
_("discomposed"),
|
||||
_("rattled")]),
|
||||
"flirty": set([
|
||||
_("coquettish"),
|
||||
_("playful"),
|
||||
_("amorous"),
|
||||
_("provocative"),
|
||||
_("teasing"),
|
||||
_("frisky"),
|
||||
_("saucy"),
|
||||
_("coy"),
|
||||
_("seductive"),
|
||||
_("suggestive"),
|
||||
_("vampish"),
|
||||
_("dallying"),
|
||||
_("skittish")]),
|
||||
"angry": set([
|
||||
_("irate"),
|
||||
_("furious"),
|
||||
_("incensed"),
|
||||
_("enraged"),
|
||||
_("wrathful"),
|
||||
_("annoyed"),
|
||||
_("irritated"),
|
||||
_("fuming"),
|
||||
_("livid"),
|
||||
_("indignant"),
|
||||
_("cross"),
|
||||
_("vexed"),
|
||||
_("seething"),
|
||||
_("maddened"),
|
||||
_("choleric"),
|
||||
_("resentful"),
|
||||
_("piqued"),
|
||||
_("infuriated")]),
|
||||
"thinking": set([
|
||||
_("pondering"),
|
||||
_("contemplating"),
|
||||
_("reflecting"),
|
||||
_("meditating"),
|
||||
_("ruminating"),
|
||||
_("deliberating"),
|
||||
_("mulling"),
|
||||
_("considering"),
|
||||
_("pensive"),
|
||||
_("cogitating"),
|
||||
_("brooding"),
|
||||
_("cerebral"),
|
||||
_("introspective"),
|
||||
_("analytical")]),
|
||||
"confused": set([
|
||||
_("puzzled"),
|
||||
_("baffled"),
|
||||
_("perplexed"),
|
||||
_("muddled"),
|
||||
_("bewildered"),
|
||||
_("disoriented"),
|
||||
_("nonplussed"),
|
||||
_("befuddled"),
|
||||
_("dazed"),
|
||||
_("flummoxed"),
|
||||
_("stumped"),
|
||||
_("mystified"),
|
||||
_("addled"),
|
||||
_("discombobulated")]),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user