serverless-ircd 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +6 -1
- package/.gitmodules +3 -0
- package/CHANGELOG.md +214 -0
- package/README.md +110 -23
- package/apps/aws-stack/package.json +1 -1
- package/apps/cf-tcp-container/package.json +1 -1
- package/apps/cf-worker/package.json +1 -1
- package/apps/cf-worker/src/origin-allowlist.ts +99 -0
- package/apps/cf-worker/src/worker.ts +89 -9
- package/apps/cf-worker/tests/fixtures/web-dist/app/index.html +18 -0
- package/apps/cf-worker/tests/fixtures/web-dist/index.html +18 -0
- package/apps/cf-worker/tests/origin-allowlist.test.ts +101 -0
- package/apps/cf-worker/tests/smoke.test.ts +28 -2
- package/apps/cf-worker/tests/ws-origin.test.ts +89 -0
- package/apps/cf-worker/wrangler.test.toml +23 -0
- package/apps/cf-worker/wrangler.toml +54 -0
- package/apps/local-cli/package.json +1 -1
- package/apps/web/landing/index.html +217 -0
- package/apps/web/package.json +28 -0
- package/apps/web/scripts/build.mjs +125 -0
- package/apps/web/src/build-env.ts +43 -0
- package/apps/web/src/config-schema.ts +138 -0
- package/apps/web/static/config.json +28 -0
- package/apps/web/static/config.prod.json +28 -0
- package/apps/web/static/config.staging.json +28 -0
- package/apps/web/tests/build-env.test.ts +63 -0
- package/apps/web/tests/build-smoke.test.ts +103 -0
- package/apps/web/tests/config-schema.test.ts +432 -0
- package/apps/web/tests/workspace.test.ts +12 -0
- package/apps/web/tsconfig.json +10 -0
- package/apps/web/upstream/.browserslistrc +3 -0
- package/apps/web/upstream/.editorconfig +9 -0
- package/apps/web/upstream/.eslintignore +3 -0
- package/apps/web/upstream/.eslintrc.js +90 -0
- package/apps/web/upstream/.github/FUNDING.yml +12 -0
- package/apps/web/upstream/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/apps/web/upstream/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/apps/web/upstream/.github/workflows/push.yml +26 -0
- package/apps/web/upstream/.github/workflows/release.yml +33 -0
- package/apps/web/upstream/.github/workflows/release_manual.yml +55 -0
- package/apps/web/upstream/.prettierrc.js +9 -0
- package/apps/web/upstream/.stylelintignore +5 -0
- package/apps/web/upstream/.stylelintrc.js +21 -0
- package/apps/web/upstream/LICENSE +201 -0
- package/apps/web/upstream/README.md +76 -0
- package/apps/web/upstream/babel.config.js +25 -0
- package/apps/web/upstream/crowdin.yml +3 -0
- package/apps/web/upstream/index.html +35 -0
- package/apps/web/upstream/jest.config.js +7 -0
- package/apps/web/upstream/jsdoc.json +22 -0
- package/apps/web/upstream/package.json +80 -0
- package/apps/web/upstream/scripts/pre-commit +43 -0
- package/apps/web/upstream/src/components/App.vue +516 -0
- package/apps/web/upstream/src/components/AppSettings.vue +587 -0
- package/apps/web/upstream/src/components/AutoComplete.vue +284 -0
- package/apps/web/upstream/src/components/Avatar.vue +105 -0
- package/apps/web/upstream/src/components/AwayStatusIndicator.vue +77 -0
- package/apps/web/upstream/src/components/BufferKey.vue +121 -0
- package/apps/web/upstream/src/components/BufferSettings.vue +97 -0
- package/apps/web/upstream/src/components/Captcha.vue +85 -0
- package/apps/web/upstream/src/components/ChannelBanlist.vue +96 -0
- package/apps/web/upstream/src/components/ChannelInfo.vue +159 -0
- package/apps/web/upstream/src/components/ChannelInvitelist.vue +276 -0
- package/apps/web/upstream/src/components/ChannelList.vue +345 -0
- package/apps/web/upstream/src/components/Container.vue +401 -0
- package/apps/web/upstream/src/components/ContainerHeader.vue +522 -0
- package/apps/web/upstream/src/components/ControlInput.vue +1016 -0
- package/apps/web/upstream/src/components/LoadingAnimation.vue +104 -0
- package/apps/web/upstream/src/components/MediaViewer.vue +199 -0
- package/apps/web/upstream/src/components/MessageInfo.vue +192 -0
- package/apps/web/upstream/src/components/MessageList.vue +1028 -0
- package/apps/web/upstream/src/components/MessageListAvatar.vue +20 -0
- package/apps/web/upstream/src/components/MessageListMessageCompact.vue +361 -0
- package/apps/web/upstream/src/components/MessageListMessageInline.vue +257 -0
- package/apps/web/upstream/src/components/MessageListMessageModern.vue +430 -0
- package/apps/web/upstream/src/components/NetworkSettings.vue +528 -0
- package/apps/web/upstream/src/components/Nicklist.vue +309 -0
- package/apps/web/upstream/src/components/NicklistUser.vue +181 -0
- package/apps/web/upstream/src/components/NotConnected.vue +271 -0
- package/apps/web/upstream/src/components/SelfUser.vue +283 -0
- package/apps/web/upstream/src/components/ServerSelector.vue +162 -0
- package/apps/web/upstream/src/components/ServerView.vue +126 -0
- package/apps/web/upstream/src/components/SettingsAdvanced.vue +232 -0
- package/apps/web/upstream/src/components/SettingsAliases.vue +121 -0
- package/apps/web/upstream/src/components/Sidebar.vue +429 -0
- package/apps/web/upstream/src/components/SidebarAboutBuffer.vue +288 -0
- package/apps/web/upstream/src/components/SidebarState.vue +145 -0
- package/apps/web/upstream/src/components/StartupError.vue +35 -0
- package/apps/web/upstream/src/components/StateBrowser.vue +420 -0
- package/apps/web/upstream/src/components/StateBrowserBuffer.vue +124 -0
- package/apps/web/upstream/src/components/StateBrowserNetwork.vue +823 -0
- package/apps/web/upstream/src/components/StateBrowserUsermenu.vue +162 -0
- package/apps/web/upstream/src/components/TypingStatusIndicator.vue +34 -0
- package/apps/web/upstream/src/components/TypingUsersList.vue +56 -0
- package/apps/web/upstream/src/components/UrlEmbed.vue +149 -0
- package/apps/web/upstream/src/components/UserBox.vue +728 -0
- package/apps/web/upstream/src/components/inputtools/Emoji.vue +67 -0
- package/apps/web/upstream/src/components/inputtools/TextStyle.vue +142 -0
- package/apps/web/upstream/src/components/startups/CommonLayout.vue +208 -0
- package/apps/web/upstream/src/components/startups/CustomServer.vue +495 -0
- package/apps/web/upstream/src/components/startups/KiwiBnc.vue +361 -0
- package/apps/web/upstream/src/components/startups/Personal.vue +317 -0
- package/apps/web/upstream/src/components/startups/Welcome.vue +544 -0
- package/apps/web/upstream/src/components/startups/ZncLogin.vue +229 -0
- package/apps/web/upstream/src/components/utils/InputConfirm.vue +68 -0
- package/apps/web/upstream/src/components/utils/InputPrompt.vue +118 -0
- package/apps/web/upstream/src/components/utils/InputText.vue +172 -0
- package/apps/web/upstream/src/components/utils/IrcInput.vue +579 -0
- package/apps/web/upstream/src/components/utils/PluginWrapper.vue +26 -0
- package/apps/web/upstream/src/components/utils/TabbedView.vue +149 -0
- package/apps/web/upstream/src/components/utils/TransitionExpand.vue +97 -0
- package/apps/web/upstream/src/helpers/Colours.js +128 -0
- package/apps/web/upstream/src/helpers/IrcdDiffs.js +26 -0
- package/apps/web/upstream/src/helpers/Md5.js +193 -0
- package/apps/web/upstream/src/helpers/Misc.js +401 -0
- package/apps/web/upstream/src/helpers/TextFormatting.js +237 -0
- package/apps/web/upstream/src/libs/AliasRewriter.js +157 -0
- package/apps/web/upstream/src/libs/AudioManager.js +60 -0
- package/apps/web/upstream/src/libs/BouncerMiddleware.js +247 -0
- package/apps/web/upstream/src/libs/BouncerProvider.js +551 -0
- package/apps/web/upstream/src/libs/ChathistoryMiddleware.js +153 -0
- package/apps/web/upstream/src/libs/ConfigLoader.js +94 -0
- package/apps/web/upstream/src/libs/EmojiProvider.js +46 -0
- package/apps/web/upstream/src/libs/GlobalApi.js +346 -0
- package/apps/web/upstream/src/libs/IPC.js +51 -0
- package/apps/web/upstream/src/libs/InputHandler.js +921 -0
- package/apps/web/upstream/src/libs/IrcClient.js +1506 -0
- package/apps/web/upstream/src/libs/Logger.js +71 -0
- package/apps/web/upstream/src/libs/Message.js +169 -0
- package/apps/web/upstream/src/libs/MessageFormatter.js +364 -0
- package/apps/web/upstream/src/libs/MessageParser.js +249 -0
- package/apps/web/upstream/src/libs/Notifications.js +78 -0
- package/apps/web/upstream/src/libs/ServerConnection.js +270 -0
- package/apps/web/upstream/src/libs/ServerSession.js +102 -0
- package/apps/web/upstream/src/libs/SoundBleep.js +20 -0
- package/apps/web/upstream/src/libs/StatePersistence.js +90 -0
- package/apps/web/upstream/src/libs/ThemeManager.js +128 -0
- package/apps/web/upstream/src/libs/TypingMiddleware.js +105 -0
- package/apps/web/upstream/src/libs/WindowTitle.js +63 -0
- package/apps/web/upstream/src/libs/batchedAdd.js +74 -0
- package/apps/web/upstream/src/libs/bufferTools.js +177 -0
- package/apps/web/upstream/src/libs/polyfill/Element.closest.js +18 -0
- package/apps/web/upstream/src/libs/renderers/Html.js +113 -0
- package/apps/web/upstream/src/libs/settingTools.js +31 -0
- package/apps/web/upstream/src/libs/state/BufferState.js +703 -0
- package/apps/web/upstream/src/libs/state/NetworkState.js +158 -0
- package/apps/web/upstream/src/libs/state/UserState.js +89 -0
- package/apps/web/upstream/src/libs/state/common.js +26 -0
- package/apps/web/upstream/src/libs/state.js +961 -0
- package/apps/web/upstream/src/libs/storage/Local.js +51 -0
- package/apps/web/upstream/src/main.js +566 -0
- package/apps/web/upstream/src/res/autocompleteCommands.js +31 -0
- package/apps/web/upstream/src/res/configTemplates.js +373 -0
- package/apps/web/upstream/src/res/globalStyle.css +277 -0
- package/apps/web/upstream/src/res/kiwiLoadingLogo.png +0 -0
- package/apps/web/upstream/src/res/locales/app.af-ZA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ar-SA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.bg-BG.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.bs-BA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ca-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.cs-CZ.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.da-DK.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.de-DE.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.dev.po +1246 -0
- package/apps/web/upstream/src/res/locales/app.el-GR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.en-US.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-419.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-AR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-EM.po +536 -0
- package/apps/web/upstream/src/res/locales/app.es-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.es-US.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.eu-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.fi-FI.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.fr-FR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.gl-ES.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.he-IL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.hi-IN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.hu-HU.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.id-ID.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.it-IT.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ja-JP.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ko-KR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.nl-NL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.no-NO.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pl-PL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pt-BR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.pt-PT.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ro-RO.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.ru-RU.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sl-SI.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sq-AL.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sr-SP.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.sv-SE.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.tr-TR.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.uk-UA.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.vi-VN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.zh-CN.po +1145 -0
- package/apps/web/upstream/src/res/locales/app.zh-TW.po +1145 -0
- package/apps/web/upstream/src/res/localesList.json +27 -0
- package/apps/web/upstream/src/res/logo.png +0 -0
- package/apps/web/upstream/src/thirdparty/about.html +43 -0
- package/apps/web/upstream/src/thirdparty/index.js +5 -0
- package/apps/web/upstream/src/thirdparty/kiwiirccom.vue +185 -0
- package/apps/web/upstream/static/config.json +28 -0
- package/apps/web/upstream/static/emoticons/smile.png +0 -0
- package/apps/web/upstream/static/favicon.png +0 -0
- package/apps/web/upstream/static/highlight.mp3 +0 -0
- package/apps/web/upstream/static/highlight.ogg +0 -0
- package/apps/web/upstream/static/locales/.gitignore +2 -0
- package/apps/web/upstream/static/plugins/customise.html.example +10 -0
- package/apps/web/upstream/static/themes/coffee/theme.css +145 -0
- package/apps/web/upstream/static/themes/common/base.css +1064 -0
- package/apps/web/upstream/static/themes/dark/theme.css +196 -0
- package/apps/web/upstream/static/themes/default/theme.css +92 -0
- package/apps/web/upstream/static/themes/elite/theme.css +248 -0
- package/apps/web/upstream/static/themes/grayfox/theme.css +143 -0
- package/apps/web/upstream/static/themes/nightswatch/theme.css +367 -0
- package/apps/web/upstream/static/themes/osprey/theme.css +115 -0
- package/apps/web/upstream/static/themes/radioactive/theme.css +1211 -0
- package/apps/web/upstream/static/themes/sky/theme.css +107 -0
- package/apps/web/upstream/tests/unit/BatchAdd.spec.js +174 -0
- package/apps/web/upstream/tests/unit/MessageParser.spec.js +125 -0
- package/apps/web/upstream/tests/unit/Misc.spec.js +24 -0
- package/apps/web/upstream/tests/unit/NetworkState.spec.js +58 -0
- package/apps/web/upstream/tests/unit/StartupError.spec.js +20 -0
- package/apps/web/upstream/vue.config.js +150 -0
- package/apps/web/upstream/yarn.lock +9767 -0
- package/apps/web/vitest.config.ts +13 -0
- package/biome.json +1 -0
- package/docs/Home.md +1 -0
- package/docs/WebClientGuide.md +535 -0
- package/package.json +2 -2
- package/packages/aws-adapter/package.json +1 -1
- package/packages/cf-adapter/package.json +1 -1
- package/packages/cf-adapter/tests/cf-harness.ts +12 -1
- package/packages/in-memory-runtime/package.json +1 -1
- package/packages/irc-core/package.json +1 -1
- package/packages/irc-core/reports/mutation/mutation.html +342 -0
- package/packages/irc-core/tests/batch.test.ts +15 -0
- package/packages/irc-core/tests/numerics.test.ts +13 -0
- package/packages/irc-core/tests/parser.test.ts +109 -0
- package/packages/irc-server/package.json +1 -1
- package/packages/irc-test-support/package.json +1 -1
- package/packages/irc-test-support/src/scenarios.ts +24 -2
- package/tools/ci-hardening/package.json +1 -1
- package/tools/load-test/package.json +1 -1
- package/tools/tcp-ws-forwarder/package.json +1 -1
|
@@ -0,0 +1,536 @@
|
|
|
1
|
+
#: Close
|
|
2
|
+
msgid "close"
|
|
3
|
+
msgstr "Cerrar"
|
|
4
|
+
|
|
5
|
+
#: Connect
|
|
6
|
+
msgid "connect"
|
|
7
|
+
msgstr "Conectar"
|
|
8
|
+
|
|
9
|
+
#: Connecting...
|
|
10
|
+
msgid "connecting"
|
|
11
|
+
msgstr "Conectando..."
|
|
12
|
+
|
|
13
|
+
#: Connected
|
|
14
|
+
msgid "connected"
|
|
15
|
+
msgstr "Conectado"
|
|
16
|
+
|
|
17
|
+
#: Settings
|
|
18
|
+
msgid "settings"
|
|
19
|
+
msgstr "Configuración"
|
|
20
|
+
|
|
21
|
+
#: Channels
|
|
22
|
+
msgid "channels"
|
|
23
|
+
msgstr "Salas"
|
|
24
|
+
|
|
25
|
+
#: Banned Users
|
|
26
|
+
msgid "banned"
|
|
27
|
+
msgstr "Usuarios baneados"
|
|
28
|
+
|
|
29
|
+
#: Notifications
|
|
30
|
+
msgid "notifications"
|
|
31
|
+
msgstr "Notificaciones"
|
|
32
|
+
|
|
33
|
+
#: Username
|
|
34
|
+
msgid "username"
|
|
35
|
+
msgstr "Nombre de usuario"
|
|
36
|
+
|
|
37
|
+
#: Password
|
|
38
|
+
msgid "password"
|
|
39
|
+
msgstr "Contraseña"
|
|
40
|
+
|
|
41
|
+
#: I have a password
|
|
42
|
+
msgid "password_have"
|
|
43
|
+
msgstr "Tengo contraseña"
|
|
44
|
+
|
|
45
|
+
#: Server
|
|
46
|
+
msgid "server"
|
|
47
|
+
msgstr "Servidor"
|
|
48
|
+
|
|
49
|
+
#: Nick
|
|
50
|
+
msgid "nick"
|
|
51
|
+
msgstr "Apodo"
|
|
52
|
+
|
|
53
|
+
#: Channel
|
|
54
|
+
msgid "channel"
|
|
55
|
+
msgstr "Sala"
|
|
56
|
+
|
|
57
|
+
#: Network
|
|
58
|
+
msgid "network"
|
|
59
|
+
msgstr "Red"
|
|
60
|
+
|
|
61
|
+
#: ZNC
|
|
62
|
+
msgid "znc"
|
|
63
|
+
msgstr "ZNC"
|
|
64
|
+
|
|
65
|
+
#: Logging in...
|
|
66
|
+
msgid "logging_in"
|
|
67
|
+
msgstr "Verificando credenciales..."
|
|
68
|
+
|
|
69
|
+
#: Invalid login
|
|
70
|
+
msgid "invalid_login"
|
|
71
|
+
msgstr "Credenciales inválidas"
|
|
72
|
+
|
|
73
|
+
#: Search...
|
|
74
|
+
msgid "do_search"
|
|
75
|
+
msgstr "Buscar..."
|
|
76
|
+
|
|
77
|
+
#: OK
|
|
78
|
+
msgid "ok"
|
|
79
|
+
msgstr "De acuerdo"
|
|
80
|
+
|
|
81
|
+
#: Cancel
|
|
82
|
+
msgid "cancel"
|
|
83
|
+
msgstr "Cancelar"
|
|
84
|
+
|
|
85
|
+
#: This will close all KiwiIRC conversations. Are you sure you want to close this window?
|
|
86
|
+
msgid "window_unload"
|
|
87
|
+
msgstr "Se van a cerrar todas las conversaciones de KiwiIRC. ¿Seguro que quieres cerrar esta ventana?"
|
|
88
|
+
|
|
89
|
+
#: Real name
|
|
90
|
+
msgid "whois_realname"
|
|
91
|
+
msgstr "Nombre real"
|
|
92
|
+
|
|
93
|
+
#: Status
|
|
94
|
+
msgid "whois_status"
|
|
95
|
+
msgstr "Estado"
|
|
96
|
+
|
|
97
|
+
#: Is available
|
|
98
|
+
msgid "whois_status_available"
|
|
99
|
+
msgstr "Está disponible"
|
|
100
|
+
|
|
101
|
+
#: Send a message
|
|
102
|
+
msgid "send_a_message"
|
|
103
|
+
msgstr "Envía un mensaje"
|
|
104
|
+
|
|
105
|
+
#: More information
|
|
106
|
+
msgid "more_information"
|
|
107
|
+
msgstr "Más información"
|
|
108
|
+
|
|
109
|
+
#: Ignore user
|
|
110
|
+
msgid "ignore_user"
|
|
111
|
+
msgstr "Ignorar usuario"
|
|
112
|
+
|
|
113
|
+
#: Channel
|
|
114
|
+
msgid "connection_channel"
|
|
115
|
+
msgstr "Sala"
|
|
116
|
+
|
|
117
|
+
#: General
|
|
118
|
+
msgid "settings_general"
|
|
119
|
+
msgstr "General"
|
|
120
|
+
|
|
121
|
+
#: Theme
|
|
122
|
+
msgid "settings_theme"
|
|
123
|
+
msgstr "Tema"
|
|
124
|
+
|
|
125
|
+
#: Theme URL
|
|
126
|
+
msgid "settings_themeurl"
|
|
127
|
+
msgstr "URL del tema"
|
|
128
|
+
|
|
129
|
+
#: Use monospace
|
|
130
|
+
msgid "settings_use_monospace"
|
|
131
|
+
msgstr "Usar fuente Monospace"
|
|
132
|
+
|
|
133
|
+
#: Traditional IRC layout
|
|
134
|
+
msgid "settings_layout_compact"
|
|
135
|
+
msgstr "Diseño IRC tradicional"
|
|
136
|
+
|
|
137
|
+
#: Show autocomplete list
|
|
138
|
+
msgid "settings_show_autocomplete"
|
|
139
|
+
msgstr "Mostrar lista autocompletado"
|
|
140
|
+
|
|
141
|
+
#: Chat Messages
|
|
142
|
+
msgid "settings_messages_title"
|
|
143
|
+
msgstr "Mensajes"
|
|
144
|
+
|
|
145
|
+
#: Show timestamps
|
|
146
|
+
msgid "settings_timestamps"
|
|
147
|
+
msgstr "Mostrar hora"
|
|
148
|
+
|
|
149
|
+
#: Use 24-hour timestamps
|
|
150
|
+
msgid "settings_24hour_timestamps"
|
|
151
|
+
msgstr "Mostrar hora en formato 24 horas"
|
|
152
|
+
|
|
153
|
+
#: Show emoticons
|
|
154
|
+
msgid "settings_emoticons"
|
|
155
|
+
msgstr "Mostrar emoticonos"
|
|
156
|
+
|
|
157
|
+
#: Block new Private messages
|
|
158
|
+
msgid "settings_block_private"
|
|
159
|
+
msgstr "Bloquear nuevos mensajes privados"
|
|
160
|
+
|
|
161
|
+
#: Messages in scrollback
|
|
162
|
+
msgid "settings_scrollback"
|
|
163
|
+
msgstr "Mensajes en el histórico"
|
|
164
|
+
|
|
165
|
+
#: Extra formatting
|
|
166
|
+
msgid "settings_formatting"
|
|
167
|
+
msgstr "Formateado extra"
|
|
168
|
+
|
|
169
|
+
#: Colour nicknames in messages
|
|
170
|
+
msgid "settings_nick_colouring"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
173
|
+
#: Include join/part messages as activity
|
|
174
|
+
msgid "settings_show_joinpart"
|
|
175
|
+
msgstr "Incluir mensajes de entrada y salida como actividad"
|
|
176
|
+
|
|
177
|
+
#: Mute sound notifications
|
|
178
|
+
msgid "settings_mute_sound"
|
|
179
|
+
msgstr "Silenciar notificaciones"
|
|
180
|
+
|
|
181
|
+
#: Highlight on words (space seperated)
|
|
182
|
+
msgid "settings_highlight"
|
|
183
|
+
msgstr "Palabras a destacar (sepáralas con un espacio)"
|
|
184
|
+
|
|
185
|
+
#: Aliases
|
|
186
|
+
msgid "settings_aliases"
|
|
187
|
+
msgstr "Alias"
|
|
188
|
+
|
|
189
|
+
#: Send Message
|
|
190
|
+
msgid "send_message"
|
|
191
|
+
msgstr "Enviar mensaje"
|
|
192
|
+
|
|
193
|
+
#: Notify me when
|
|
194
|
+
msgid "settings_notify"
|
|
195
|
+
msgstr "Notificarme cuando"
|
|
196
|
+
|
|
197
|
+
#: All messages
|
|
198
|
+
msgid "settings_notify_all"
|
|
199
|
+
msgstr "Todos los mensajes"
|
|
200
|
+
|
|
201
|
+
#: I am mentioned
|
|
202
|
+
msgid "settings_notify_mentioned"
|
|
203
|
+
msgstr "He sido mencionado"
|
|
204
|
+
|
|
205
|
+
#: Never
|
|
206
|
+
msgid "settings_notify_never"
|
|
207
|
+
msgstr "Nunca"
|
|
208
|
+
|
|
209
|
+
#: Mute sounds
|
|
210
|
+
msgid "settings_notify_mute"
|
|
211
|
+
msgstr "Deshabilitar sonidos"
|
|
212
|
+
|
|
213
|
+
#: Operator tools
|
|
214
|
+
msgid "operator_tools"
|
|
215
|
+
msgstr "Herramientas del Operador"
|
|
216
|
+
|
|
217
|
+
#: Default ban mask
|
|
218
|
+
msgid "settings_default_ban_mask"
|
|
219
|
+
msgstr "Máscara de ban por defecto"
|
|
220
|
+
|
|
221
|
+
#: Default kick reason
|
|
222
|
+
msgid "settings_default_kick_reason"
|
|
223
|
+
msgstr "Mensaje de expulsión por defecto"
|
|
224
|
+
|
|
225
|
+
#: Refresh banlist
|
|
226
|
+
msgid "bans_refresh"
|
|
227
|
+
msgstr "Actualizar lista de baneos"
|
|
228
|
+
|
|
229
|
+
#: Banned user
|
|
230
|
+
msgid "bans_user"
|
|
231
|
+
msgstr "Usuario baneado"
|
|
232
|
+
|
|
233
|
+
#: Banned by
|
|
234
|
+
msgid "bans_by"
|
|
235
|
+
msgstr "Baneado por"
|
|
236
|
+
|
|
237
|
+
#: Refreshing banlist...
|
|
238
|
+
msgid "bans_refreshing"
|
|
239
|
+
msgstr "Actualizando lista de baneos"
|
|
240
|
+
|
|
241
|
+
#: Nobody is banned!
|
|
242
|
+
msgid "bans_nobody"
|
|
243
|
+
msgstr "Nadie está baneado"
|
|
244
|
+
|
|
245
|
+
#: Topic
|
|
246
|
+
msgid "channel_topic"
|
|
247
|
+
msgstr "Tópico"
|
|
248
|
+
|
|
249
|
+
#: Moderated chat
|
|
250
|
+
msgid "channel_moderated"
|
|
251
|
+
msgstr "Sala moderada"
|
|
252
|
+
|
|
253
|
+
#: Invite only
|
|
254
|
+
msgid "channel_invite"
|
|
255
|
+
msgstr "Se necesita invitación para entrar"
|
|
256
|
+
|
|
257
|
+
#: Only moderators can change the topic
|
|
258
|
+
msgid "channel_moderated_topic"
|
|
259
|
+
msgstr "Solo los moderadores pueden cambiar el tópico"
|
|
260
|
+
|
|
261
|
+
#: Block messages from outside this channel
|
|
262
|
+
msgid "channel_external"
|
|
263
|
+
msgstr "Bloquear mensajes externos"
|
|
264
|
+
|
|
265
|
+
#: Welcome to Kiwi IRC!
|
|
266
|
+
msgid "container_welcome"
|
|
267
|
+
msgstr "¡Bienvenido a Kiwi IRC! Selecciona una sala de la izquierda."
|
|
268
|
+
|
|
269
|
+
#: Show statebrowser
|
|
270
|
+
msgid "container_statebrowser"
|
|
271
|
+
msgstr "Mostrar barra estado del navegador"
|
|
272
|
+
|
|
273
|
+
#: Join Channel
|
|
274
|
+
msgid "container_join"
|
|
275
|
+
msgstr "Entrar a una sala"
|
|
276
|
+
|
|
277
|
+
#: Not Connected
|
|
278
|
+
msgid "container_notconnected"
|
|
279
|
+
msgstr "Desconectado"
|
|
280
|
+
|
|
281
|
+
#: Private conversation with {{user}}
|
|
282
|
+
msgid "container_privmsg"
|
|
283
|
+
msgstr "Conversación privada con {{user}}"
|
|
284
|
+
|
|
285
|
+
#: Send a message...
|
|
286
|
+
msgid "input_placeholder"
|
|
287
|
+
msgstr "Enviar un mensaje..."
|
|
288
|
+
|
|
289
|
+
#: Loading {{url}}...
|
|
290
|
+
msgid "media_loading"
|
|
291
|
+
msgstr "Cargando {{url}}..."
|
|
292
|
+
|
|
293
|
+
#: Load previous messages
|
|
294
|
+
msgid "messages_load"
|
|
295
|
+
msgstr "Cargar mensajes anteriores"
|
|
296
|
+
|
|
297
|
+
#: Unread Messages
|
|
298
|
+
msgid "unread_messages"
|
|
299
|
+
msgstr "Mensajes sin leer"
|
|
300
|
+
|
|
301
|
+
#: Server details
|
|
302
|
+
msgid "settings_server_details"
|
|
303
|
+
msgstr "Detalles del servidor"
|
|
304
|
+
|
|
305
|
+
#: Port
|
|
306
|
+
msgid "settings_port"
|
|
307
|
+
msgstr "Puerto"
|
|
308
|
+
|
|
309
|
+
#: Other networks on this ZNC account will be listed in the network list
|
|
310
|
+
msgid "settings_znc_other"
|
|
311
|
+
msgstr "Otras redes en esta cuenta ZNC serán listadas en la lista de redes"
|
|
312
|
+
|
|
313
|
+
#: Your details
|
|
314
|
+
msgid "settings_your_details"
|
|
315
|
+
msgstr "Tus detalles"
|
|
316
|
+
|
|
317
|
+
#: Nickname
|
|
318
|
+
msgid "settings_nickname"
|
|
319
|
+
msgstr "Apodo"
|
|
320
|
+
|
|
321
|
+
#: Advanced
|
|
322
|
+
msgid "settings_advanced"
|
|
323
|
+
msgstr "Avanzado"
|
|
324
|
+
|
|
325
|
+
#: Encoding
|
|
326
|
+
msgid "settings_encoding"
|
|
327
|
+
msgstr "Codificación"
|
|
328
|
+
|
|
329
|
+
#: Show Raw
|
|
330
|
+
msgid "settings_show_raw"
|
|
331
|
+
msgstr "Mostrar el original"
|
|
332
|
+
|
|
333
|
+
#: Run commands when connected
|
|
334
|
+
msgid "settings_autorun"
|
|
335
|
+
msgstr "Ejecuta comandos al conectar"
|
|
336
|
+
|
|
337
|
+
#: Danger Zone
|
|
338
|
+
msgid "settings_danger"
|
|
339
|
+
msgstr "Zona de peligro"
|
|
340
|
+
|
|
341
|
+
#: Remove network
|
|
342
|
+
msgid "settings_remove"
|
|
343
|
+
msgstr "Eliminar red"
|
|
344
|
+
|
|
345
|
+
#: {{count}} person here
|
|
346
|
+
msgid "person"
|
|
347
|
+
msgstr "{{count}} usuario aquí"
|
|
348
|
+
|
|
349
|
+
#: {{count}} people here
|
|
350
|
+
msgid "person_plural"
|
|
351
|
+
msgstr "{{count}} usuarios aquí"
|
|
352
|
+
|
|
353
|
+
#: Reconnect to join {{channel}}
|
|
354
|
+
msgid "reconnect_channel"
|
|
355
|
+
msgstr "Reconectar para entrar en {{channel}}"
|
|
356
|
+
|
|
357
|
+
#: Reconnect to {{network}} to start talking
|
|
358
|
+
msgid "reconnect_network"
|
|
359
|
+
msgstr "Reconectar a {{network}} para empezar a chatear"
|
|
360
|
+
|
|
361
|
+
#: Reconnect to continue talking with {{user}}
|
|
362
|
+
msgid "reconnect_query"
|
|
363
|
+
msgstr "Reconectar para continuar hablando con {{user}}"
|
|
364
|
+
|
|
365
|
+
#: Connection settings
|
|
366
|
+
msgid "reconnect_settings"
|
|
367
|
+
msgstr "Configuración de la conexión"
|
|
368
|
+
|
|
369
|
+
#: Close options
|
|
370
|
+
msgid "side_close"
|
|
371
|
+
msgstr "Cerrar opciones"
|
|
372
|
+
|
|
373
|
+
#: Channel options
|
|
374
|
+
msgid "side_options"
|
|
375
|
+
msgstr "Opciones de la sala"
|
|
376
|
+
|
|
377
|
+
#: Your settings
|
|
378
|
+
msgid "side_settings"
|
|
379
|
+
msgstr "Tu configuración"
|
|
380
|
+
|
|
381
|
+
#: Show when people join
|
|
382
|
+
msgid "side_joins"
|
|
383
|
+
msgstr "Mostrar cuando la gente entra a la sala"
|
|
384
|
+
|
|
385
|
+
#: Extra message formatting
|
|
386
|
+
msgid "side_formatting"
|
|
387
|
+
msgstr "Formateo extra de los mensajes"
|
|
388
|
+
|
|
389
|
+
#: Nick colours in the list"
|
|
390
|
+
msgid "side_colours"
|
|
391
|
+
msgstr "Colorear alias en la lista"
|
|
392
|
+
|
|
393
|
+
#: No buffer set
|
|
394
|
+
msgid "side_buffer"
|
|
395
|
+
msgstr "No hay buffer configurado"
|
|
396
|
+
|
|
397
|
+
#: There was an error starting Kiwi IRC :(
|
|
398
|
+
msgid "error_starting"
|
|
399
|
+
msgstr "Ha habido un error iniciando Kiwi IRC :("
|
|
400
|
+
|
|
401
|
+
#: Make sure you have installed Kiwi IRC correctly and the configurartion can be loaded
|
|
402
|
+
msgid "error_installed"
|
|
403
|
+
msgstr "Comprueba que has instalado el Kiwi IRC correctamente y que la configuración puede cargarse."
|
|
404
|
+
|
|
405
|
+
#: Leave {{name}}
|
|
406
|
+
msgid "state_leave"
|
|
407
|
+
msgstr "Salir de {{name}}"
|
|
408
|
+
|
|
409
|
+
#: Your account
|
|
410
|
+
msgid "state_account"
|
|
411
|
+
msgstr "Tu cuenta"
|
|
412
|
+
|
|
413
|
+
#: Your settings and networks will be remembered on this computer.
|
|
414
|
+
msgid "state_remembered"
|
|
415
|
+
msgstr "Tu configuración y redes se recordarán en este ordenador."
|
|
416
|
+
|
|
417
|
+
#: Forget me
|
|
418
|
+
msgid "state_forget"
|
|
419
|
+
msgstr "Borrar configuración"
|
|
420
|
+
|
|
421
|
+
#: No networks here yet.
|
|
422
|
+
msgid "state_network"
|
|
423
|
+
msgstr "Aún no has configurado ninguna red."
|
|
424
|
+
|
|
425
|
+
#: Add one?
|
|
426
|
+
msgid "state_add"
|
|
427
|
+
msgstr "¿Quieres añadir una?"
|
|
428
|
+
|
|
429
|
+
#: Available networks
|
|
430
|
+
msgid "state_available"
|
|
431
|
+
msgstr "Redes disponibles"
|
|
432
|
+
|
|
433
|
+
#: Configure network
|
|
434
|
+
msgid "state_configure"
|
|
435
|
+
msgstr "Configurar red"
|
|
436
|
+
|
|
437
|
+
#: Not connected.
|
|
438
|
+
msgid "state_disconnected"
|
|
439
|
+
msgstr "Desconectado."
|
|
440
|
+
|
|
441
|
+
#: Join new #channel
|
|
442
|
+
msgid "state_join"
|
|
443
|
+
msgstr "Entrar en una #sala nueva"
|
|
444
|
+
|
|
445
|
+
#: Change nick
|
|
446
|
+
msgid "change_nick"
|
|
447
|
+
msgstr "Cambiar alias"
|
|
448
|
+
|
|
449
|
+
#: Account name: {{user}}
|
|
450
|
+
msgid "user_account"
|
|
451
|
+
msgstr "Nombre de la cuenta: {{user}}"
|
|
452
|
+
|
|
453
|
+
#: Real name: {{realname}}
|
|
454
|
+
msgid "user_realname"
|
|
455
|
+
msgstr "Nombre real: {{realname}}"
|
|
456
|
+
|
|
457
|
+
#: Is a bot
|
|
458
|
+
msgid "user_bot"
|
|
459
|
+
msgstr "Es un robot"
|
|
460
|
+
|
|
461
|
+
#: Is available for help
|
|
462
|
+
msgid "user_help"
|
|
463
|
+
msgstr "Está disponible para ayudar"
|
|
464
|
+
|
|
465
|
+
#: Is an operator
|
|
466
|
+
msgid "user_op"
|
|
467
|
+
msgstr "Es un operador"
|
|
468
|
+
|
|
469
|
+
#: Connected to {{server}} {{info}}
|
|
470
|
+
msgid "user_server"
|
|
471
|
+
msgstr "Conectado a {{server}} {{info}}"
|
|
472
|
+
|
|
473
|
+
#: Securely connected via SSL/TLS
|
|
474
|
+
msgid "user_secure"
|
|
475
|
+
msgstr "Conectado de forma segura con SSL/TLS"
|
|
476
|
+
|
|
477
|
+
#: Also in channels {{channels}}
|
|
478
|
+
msgid "user_channels"
|
|
479
|
+
msgstr "Está también en las salas {{channels}}"
|
|
480
|
+
|
|
481
|
+
#: Access level
|
|
482
|
+
msgid "user_access"
|
|
483
|
+
msgstr "Nivel de acceso"
|
|
484
|
+
|
|
485
|
+
#: Normal
|
|
486
|
+
msgid "user_normal"
|
|
487
|
+
msgstr "Normal"
|
|
488
|
+
|
|
489
|
+
#: Kick from the channel
|
|
490
|
+
msgid "user_kick"
|
|
491
|
+
msgstr "Expulsar de la sala"
|
|
492
|
+
|
|
493
|
+
#: Ban from the channel
|
|
494
|
+
msgid "user_ban"
|
|
495
|
+
msgstr "Banear de la sala"
|
|
496
|
+
|
|
497
|
+
#: Ban and kick from the channel
|
|
498
|
+
msgid "user_kickban"
|
|
499
|
+
msgstr "Kick + Ban del canal"
|
|
500
|
+
|
|
501
|
+
#: Your IRC client
|
|
502
|
+
msgid "personal_client"
|
|
503
|
+
msgstr "Tu cliente de IRC"
|
|
504
|
+
|
|
505
|
+
#: Add your networks. Join your channels.
|
|
506
|
+
msgid "personal_addjoin"
|
|
507
|
+
msgstr "Añade tus redes. Entra en tus salas."
|
|
508
|
+
|
|
509
|
+
#: They will be here when you come back.
|
|
510
|
+
msgid "personal_return"
|
|
511
|
+
msgstr "Estarán aquí cuando vuelvas."
|
|
512
|
+
|
|
513
|
+
#: Add a Network
|
|
514
|
+
msgid "personal_add"
|
|
515
|
+
msgstr "Añade una Red"
|
|
516
|
+
|
|
517
|
+
#: Saved networks
|
|
518
|
+
msgid "personal_saved"
|
|
519
|
+
msgstr "Redes guardadas"
|
|
520
|
+
|
|
521
|
+
#: Kiwi IRC (next gen) - Rizon preview
|
|
522
|
+
msgid "rizon_title"
|
|
523
|
+
msgstr "Kiwi IRC (nueva generación) - Previsualización Rizon"
|
|
524
|
+
|
|
525
|
+
#: Direct websockets. No Kiwi server or webirc involved.
|
|
526
|
+
msgid "rizon_websockets"
|
|
527
|
+
msgstr "Websocket directo. Sin servidor Kiwi ni webirc."
|
|
528
|
+
|
|
529
|
+
#: (Thanks to Adam @Rizon for the development websocket server support!)
|
|
530
|
+
msgid "rizon_thanks"
|
|
531
|
+
msgstr "(Gracias a Adam @Rizon por el desarrollo del soporte del servidor de websockets!)"
|
|
532
|
+
|
|
533
|
+
#: Give the developer version of Kiwi IRC a try!
|
|
534
|
+
msgid "rizon_dev"
|
|
535
|
+
msgstr "¡Prueba la versión en desarrollo del Kiwi IRC!"
|
|
536
|
+
|