From 1eae3adac33a3299d6165e88f78336d4899618a3 Mon Sep 17 00:00:00 2001 From: Jules Laplace Date: Fri, 29 Mar 2019 19:46:24 +0100 Subject: gray background on pyro --- app/client/i18n/i18n.en.js | 4 ++ app/client/i18n/i18n.moon.js | 99 ---------------------------------------- app/client/i18n/i18n.pyro.js | 104 +++++++++++++++++++++++++++++++++++++++++++ app/client/i18n/index.js | 8 ++-- 4 files changed, 112 insertions(+), 103 deletions(-) delete mode 100644 app/client/i18n/i18n.moon.js create mode 100644 app/client/i18n/i18n.pyro.js (limited to 'app/client/i18n') diff --git a/app/client/i18n/i18n.en.js b/app/client/i18n/i18n.en.js index 406afa6..3003014 100644 --- a/app/client/i18n/i18n.en.js +++ b/app/client/i18n/i18n.en.js @@ -1,4 +1,5 @@ export default { + language: 'en', header: { system: "system", dashboard: "dashboard", @@ -23,6 +24,9 @@ export default { interrupt: "Interrupt", not_processing: "Not Processing", processing: "Processing", + }, + system: { + }, pix2pixhd: { live: { diff --git a/app/client/i18n/i18n.moon.js b/app/client/i18n/i18n.moon.js deleted file mode 100644 index 930c831..0000000 --- a/app/client/i18n/i18n.moon.js +++ /dev/null @@ -1,99 +0,0 @@ -export default { - header: { - system: "system", - dashboard: "dashboard", - folders: "folders", - sequences: "sequences", - checkpoints: "checkpoints", - results: "results", - uprez: "uprez", - live: "live", - pix2pixhd: "pix2pixhd", - pix2pix: "pix2pix", - pix2wav: "pix2wav", - samplernn: "samplernn", - morph: "morph", - }, - gpu: { - idle: "GPU Idle", - busy: "GPU Busy", - start: "Start", - restart: "Restart", - stop: "Stop", - interrupt: "Interrupt", - not_processing: "Not Processing", - processing: "Processing", - }, - pix2pixhd: { - live: { - network: { - title: "Mumbo Jumbo", - view_mode: "bollocks", - sequence: "mess", - checkpoint: "skew", - epoch: "REACTIONARY REGRESSION", - }, - playback: { - title: "Divine", - position: "accelerationism", - playback_rate: "apocalypticism", - skip_frames: "pretend there is an emergent phenomenon", - fade_sequence: "speaking in tongues", - frame_delay: "babble", - }, - record: { - save_frame: "PYROMANCE DISCOUNT", - save: "Save", - record_video: "Pyromance Premium", - video_name: "Video name", - }, - transition: { - title: "Enlightenment", - period: "endarkenment", - min: "MONTECARLOCASINO", - max: "RANDOM STUMBLE", - }, - recursion: { - title: "Proprietary button", - frac: "pay $5M to change this", - roll: "pay $5M and still nothing happens", - axis: "When will I die?", - }, - sequence: { - title: "Political thermometer", - frac: "ignition", - process_frac: "wealth coefficient", - }, - transform: { - title: "Hate", - rotate: "0,14 factor", - scale: "Ariernachweis", - }, - clahe: { - title: "Clahe", - clip_limit: "clip limit", - }, - posterize: { - title: "Posterize", - spatial_window: "spatial window", - color_window: "color window", - }, - blur: { - title: "Blur", - radius: "radius", - sigma: "sigma", - }, - canny: { - title: "Canny Edge Detection", - lo: "lower bound", - hi: "upper bound", - }, - hsl: { - title: "Hue / Saturation", - hue: "hue", - saturation: "saturation", - luminosity: "luminosity", - } - } - } -} diff --git a/app/client/i18n/i18n.pyro.js b/app/client/i18n/i18n.pyro.js new file mode 100644 index 0000000..f32343c --- /dev/null +++ b/app/client/i18n/i18n.pyro.js @@ -0,0 +1,104 @@ +export default { + language: 'pyro', + header: { + site_name: "political", + system: "random wrecking ball", + dashboard: "out of control buttons", + folders: "spam", + sequences: "YangGang offlimits sector", + checkpoints: "ideological filters", + results: "history", + uprez: "resolution", + live: "burning love", + pix2pixhd: "PYROMANCER", + pix2pix: "pyromancer lite", + pix2wav: "hierophant", + samplernn: "echo chamber", + morph: "time travel", + }, + gpu: { + idle: "Pyromancer is idle", + busy: "Pyromancer is working...", + start: "Start", + restart: "Restart", + stop: "Stop", + interrupt: "Interrupt", + not_processing: "Preparing", + processing: "Processing", + }, + system: { + + }, + pix2pixhd: { + live: { + network: { + title: "Mumbo Jumbo", + view_mode: "bollocks", + sequence: "mess", + checkpoint: "skew", + epoch: "reactionary regression", + }, + playback: { + title: "Divination", + position: "accelerationism", + playback_rate: "apocalypticism", + skip_frames: "emergent phenomena", + fade_sequence: "glossolalia", + frame_delay: "babble", + }, + record: { + save_frame: "PYROMANCER DISCOUNT", + save: "Save", + record_video: "PYROMANCER PREMIUM", + video_name: "Video name", + }, + transition: { + title: "Enlightenment", + period: "endarkenment", + min: "montecarlocasino", + max: "random stumble", + }, + recursion: { + title: "Proprietary button", + frac: "pay $5M to change this", + roll: "waste $5M", + axis: "When will I die?", + }, + sequence: { + title: "Political thermometer", + frac: "ignition", + process_frac: "wealth coeff.", + }, + transform: { + title: "Hate", + rotate: "0,14 factor", + scale: "Ariernachweis", + }, + clahe: { + title: "Loss function", + clip_limit: "sadness", + }, + posterize: { + title: "Depression", + spatial_window: "breakdown", + color_window: "burnout", + }, + blur: { + title: "Blur", + radius: "pressure", + sigma: "distortion", + }, + canny: { + title: "Future production", + lo: "conjuration", + hi: "self-fulfilling prophecy", + }, + hsl: { + title: "Generative future", + hue: "figure it out", + saturation: "make possibility appear", + luminosity: "glow", + } + } + } +} diff --git a/app/client/i18n/index.js b/app/client/i18n/index.js index 2bdde02..8f252ae 100644 --- a/app/client/i18n/index.js +++ b/app/client/i18n/index.js @@ -1,15 +1,15 @@ import en from './i18n.en' -import moon from './i18n.moon' +import pyro from './i18n.pyro' const strings = lang => { switch (lang) { - case 'moon': - return moon + case 'pyro': + return pyro default: return en } } -const languages = ['en', 'moon'] +const languages = ['en', 'pyro'] export { strings, languages } -- cgit v1.2.3-70-g09d2