Skip to content

Commit

Permalink
Let's get pretty!
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Oct 21, 2022
1 parent 4bd44a0 commit 3a9ec83
Show file tree
Hide file tree
Showing 98 changed files with 10,457 additions and 10,260 deletions.
28 changes: 13 additions & 15 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
---
name: Bug Report
about: Create a report to help us improve
title: 'short description of bug'
labels: 'bug'
assignees: ''

title: "short description of bug"
labels: "bug"
assignees: ""
---

**Describe the bug**
A clear and concise description of what the bug is.
**Describe the bug** A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
**To Reproduce** Steps to reproduce the behavior:

**Expected behavior**
A clear and concise description of what you expected to happen.
**Expected behavior** A clear and concise description of what you expected to happen.

**Desktop (please complete the following information):**
- OS: [e.g. Windows]
- Replugged version: [You can find it in the Updater tab, available in your settings]

- OS: [e.g. Windows]
- Replugged version: [You can find it in the Updater tab, available in your settings]

**Additional context**
- [ ] I checked if Discord and/or Replugged are up to date
- [ ] I made sure this is not related to an external plugin or a theme


- [ ] I checked if Discord and/or Replugged are up to date
- [ ] I made sure this is not related to an external plugin or a theme

Add any other context about the problem here.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
contact_links:
- name: Support Server
url: https://discord.gg/B2TcnXV9Rg
about: If you need help with Replugged, join our support server and ask in the appropriated channel.
about:
If you need help with Replugged, join our support server and ask in the appropriated channel.
16 changes: 6 additions & 10 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
---
name: Feature Request
about: Create a feature request
title: '[Feature Request]'
labels: 'enhancement'
assignees: ''

title: "[Feature Request]"
labels: "enhancement"
assignees: ""
---

**Describe the feature request**
A clear and concise description of what the feature is.
**Describe the feature request** A clear and concise description of what the feature is.

**What Plugin would it be for?**
Name of plugin if applicable
**What Plugin would it be for?** Name of plugin if applicable

**Expected behavior**
A clear and concise description of what you expected to happen.
**Expected behavior** A clear and concise description of what you expected to happen.
4 changes: 2 additions & 2 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Lint
on:
push:
branches:
- '*'
- "*"
pull_request:
branches:
- '*'
- "*"

jobs:
run-linters:
Expand Down
14 changes: 14 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": true,
"arrowParens": "always",
"proseWrap": "always"
}
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig"
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode"
]
}
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
24 changes: 19 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
# Replugged
Maintained fork of [powercord](https://github.com/powercord-org/powercord) - a lightweight @discord client mod focused on simplicity and performance.

Maintained fork of [powercord](https://github.com/powercord-org/powercord) - a lightweight @discord
client mod focused on simplicity and performance.

# Installation/Uninstallation
See the [installation page of the Replugged Wiki](https://github.com/replugged-org/replugged/wiki/Installation).

See the
[installation page of the Replugged Wiki](https://github.com/replugged-org/replugged/wiki/Installation).

# Is this against the ToS?
Long story short... __yes__. Replugged is against the Discord Terms of Service — but, you should keep reading:

As of right now, __Discord is not going out of their way to detect client mods or ban client mod users__. On top of that, Replugged does not make any manual HTTP requests unlike certain client mods / plugins, so your client's user agent is the same as a legitimate client. Meaning, Discord doesn't detect a client mod like Replugged. They can go out of their way to start detecting it, but they don't.
Long story short... **yes**. Replugged is against the Discord Terms of Service — but, you should
keep reading:

As of right now, **Discord is not going out of their way to detect client mods or ban client mod
users**. On top of that, Replugged does not make any manual HTTP requests unlike certain client mods
/ plugins, so your client's user agent is the same as a legitimate client. Meaning, Discord doesn't
detect a client mod like Replugged. They can go out of their way to start detecting it, but they
don't.

Hypothetically speaking - even if they somehow did detect Replugged, users are very unlikely to be banned on sight. It doesn't make sense for Discord to start banning a substantial part of it's userbase (client mod users) without any kind of warning. Not to mention it is mandatory for Replugged plugins to be fully API-compliant and ethical, implying Replugged users can't be banned for indirect ToS violations (e.g. selfbotting).
Hypothetically speaking - even if they somehow did detect Replugged, users are very unlikely to be
banned on sight. It doesn't make sense for Discord to start banning a substantial part of it's
userbase (client mod users) without any kind of warning. Not to mention it is mandatory for
Replugged plugins to be fully API-compliant and ethical, implying Replugged users can't be banned
for indirect ToS violations (e.g. selfbotting).
120 changes: 60 additions & 60 deletions i18n/ar.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,62 @@
{
"REPLUGGED_ACCOUNT": "حساب Replugged",
"REPLUGGED_BADGES_CONTRIBUTOR": "الداعم Replugged",
"REPLUGGED_BADGES_EARLY": "مستخدم مبكر ل Replugged",
"REPLUGGED_BADGES_HUNTER": "معالج الاخطاء ل Replugged",
"REPLUGGED_BADGES_STAFF": "إداري ل Replugged",
"REPLUGGED_BADGES_SUPPORT": "الدعم الفني ل Replugged",
"REPLUGGED_BADGES_BOOSTER": "داعم البوست في Replugged",
"REPLUGGED_BUTTON_GOT_IT": "حسناً",
"REPLUGGED_BUTTON_INSTALLER_INSTALLED": "تم تنزيل {type}",
"REPLUGGED_BUTTON_INSTALLER_DOWNLOAD": "لتحميل {type}",
"REPLUGGED_CANCEL": "إلغاء",
"REPLUGGED_CONFIRM": "تأكيد",
"REPLUGGED_OK": "حسناً",
"REPLUGGED_COMMAND_AUTOCOMPLETE_PLUGIN": "Plugin - {description}",
"REPLUGGED_COMMAND_AUTOCOMPLETE_THEME": "Theme - {description}",
"REPLUGGED_COMMAND_DEBUG_DESC": "إرسال معلومات الجهاز Discord و Replugged لتصحيحها في الدردشة.",
"REPLUGGED_COMMAND_DISABLE_DESC": "Disable a plugin/theme",
"REPLUGGED_COMMAND_ENABLE_DESC": "تفعيل plugin/theme",
"REPLUGGED_COMMAND_ENABLE_ENABLED": "تم تفعيل {type} \"{id}\"",
"REPLUGGED_COMMAND_ECHO_DESC": "الرجوع الى الوسائط المحددة.",
"REPLUGGED_COMMAND_HELP_COMMAND_NOT_FOUND": "أمر `{commandName}` لم يتم العثور عليه.",
"REPLUGGED_COMMAND_HELP_LIST_TITLE": "قائمة الأوامر",
"REPLUGGED_COMMAND_HELP_COMMAND_TITLE": "مساعدة ل{commandName}",
"REPLUGGED_COMMAND_HELP_FIELD_USAGE": "إستخدام",
"REPLUGGED_COMMAND_HELP_COMMAND_FOOTER": "مأخوذ من {commandOrigin}.",
"REPLUGGED_COMMAND_INSTALL_DESC": "لتحميل بلوقن او ثيم.",
"REPLUGGED_COMMAND_INSTALL_ERROR_INVALID_URL": "رابط خطأ! الرجاء تحديد رابط صحيح في GitHub او اسم مستخدم/صفحة.",
"REPLUGGED_COMMAND_PREFIX": "بادئة الأمر",
"REPLUGGED_COMMAND_LIST_OF_INSTALLED": "قائمة الplugins التي تم تحميلها {type} ({count}",
"REPLUGGED_COMMAND_RELOAD_DESC": "إعادة تشغيل plugin/theme",
"REPLUGGED_COMMAND_RELOAD_RELOADED": "تم إعادة التشغيل {type} \"{id}!",
"REPLUGGED_COMMAND_SAY_DESC": "إرسال الامر المحدد.",
"REPLUGGED_BADGES_DEVELOPER": "مطور Replugged",
"REPLUGGED_BADGES_TRANSLATOR": "مترجم في Replugged",
"REPLUGGED_COMMAND_AUTOCOMPLETE_ENTITY_LIST": "الثيمات والبلوقنات التي تم تنزيلها",
"REPLUGGED_COMMAND_DISABLE_DISABLED": "تم إلغاء {type} \"{id}\"",
"REPLUGGED_COMMAND_HELP_DESC": "إعطائك قائمة الأوامر او المعلومات على الامر المحدد.",
"REPLUGGED_COMMAND_HELP_LIST_FOOTER": "تشغيل {prefix} مساعدة <commandName> للمزيد من المعلومات بخصوص لأمر محدد.",
"REPLUGGED_COMMAND_INSTALL_ERROR_NOT_FOUND": "البلقن او الثيم المطلوب لم يتم ايجاده او خاطئ.",
"REPLUGGED_COMMAND_PLUGINS_DESC": "إظهار قائمة البلوقنات التي تم تحميلها.",
"REPLUGGED_COMMAND_SHARE_DESCRIPTION": "نشر بلوقن او ثيم تم تنزيلها",
"REPLUGGED_CUTIE_TIER_1_DESC": "احصل على **role قابل التخصيص بااكامل** على سيرفر Replugged و ** ألوان مخصصة** في شارة الملف الشخصي لـReplugged.",
"REPLUGGED_COMMAND_SHARE_BOTH_ENTITY": "{id} قيد الاستخدام من قبل الplugins و themes بنفس الوقت. سيتعين عليك التحديد بكتابة --theme أو --plugin.",
"REPLUGGED_COMMAND_SHARE_URL_NOT_FOUND": "لم يتم العثور على رابط من اجل plugin {id}",
"REPLUGGED_COMMAND_THEMES_DESC": "إظهار قائمة الthemes التي تم تحميلها.",
"REPLUGGED_COMMAND_UNINSTALL_DESC": "إلغاء تنزيل plugin او theme",
"REPLUGGED_COMMAND_UNINSTALL_MODAL_HEADER": "إلغاء تنزيل {id}",
"REPLUGGED_COMMAND_UNINSTALL_MODAL_DESC": "هل أنت متأكد من أنك تريد إلغاء التثبيت وحذف {id}؟ هذا لا يمكن التراجع عنه.",
"REPLUGGED_COMMAND_UNINSTALL_TOAST_CONTENT": "تم إلغاء تثبيت و حذف {id}",
"REPLUGGED_COMMAND_UNINSTALL_TOAST_HEADER": "تم إلغاء تنزيل {type}",
"REPLUGGED_CUTIE_DONATE": "تبرع",
"REPLUGGED_CUTIE_SUBTITLE": "واحصل على ميزات رائعة",
"REPLUGGED_CUTIE_TIER_1_PRICE": "**$1 USD**/شهر",
"REPLUGGED_CUTIE_TIER_2_DESC": "احصل على شارة مخصصة **قابلة للتخصيص بالكامل** في ملفك الشخصي.",
"REPLUGGED_CUTIE_TIER_2_PRICE": "**$5 USD**/شهر",
"REPLUGGED_CUTIE_TIER_3_PRICE": "**$10 USD**/شهر",
"REPLUGGED_CUTIE_TIER_EASTER_PRICE": "**$1،337،420.69 USD**",
"REPLUGGED_CUTIE_TITLE": "دعم برمجة Replugged",
"REPLUGGED_ERROR_COULD_NOT_FIND_PLUGIN_THEME": "لم يتم العثور على اي plugin أو theme مطابق ل\"{id}\".",
"REPLUGGED_ERROR_COULD_NOT_FIND_PLUGIN_THEME_AT_REPO": "لم يتم العثور على اي plugin او theme في {repoURL}"
"REPLUGGED_ACCOUNT": "حساب Replugged",
"REPLUGGED_BADGES_CONTRIBUTOR": "الداعم Replugged",
"REPLUGGED_BADGES_EARLY": "مستخدم مبكر ل Replugged",
"REPLUGGED_BADGES_HUNTER": "معالج الاخطاء ل Replugged",
"REPLUGGED_BADGES_STAFF": "إداري ل Replugged",
"REPLUGGED_BADGES_SUPPORT": "الدعم الفني ل Replugged",
"REPLUGGED_BADGES_BOOSTER": "داعم البوست في Replugged",
"REPLUGGED_BUTTON_GOT_IT": "حسناً",
"REPLUGGED_BUTTON_INSTALLER_INSTALLED": "تم تنزيل {type}",
"REPLUGGED_BUTTON_INSTALLER_DOWNLOAD": "لتحميل {type}",
"REPLUGGED_CANCEL": "إلغاء",
"REPLUGGED_CONFIRM": "تأكيد",
"REPLUGGED_OK": "حسناً",
"REPLUGGED_COMMAND_AUTOCOMPLETE_PLUGIN": "Plugin - {description}",
"REPLUGGED_COMMAND_AUTOCOMPLETE_THEME": "Theme - {description}",
"REPLUGGED_COMMAND_DEBUG_DESC": "إرسال معلومات الجهاز Discord و Replugged لتصحيحها في الدردشة.",
"REPLUGGED_COMMAND_DISABLE_DESC": "Disable a plugin/theme",
"REPLUGGED_COMMAND_ENABLE_DESC": "تفعيل plugin/theme",
"REPLUGGED_COMMAND_ENABLE_ENABLED": "تم تفعيل {type} \"{id}\"",
"REPLUGGED_COMMAND_ECHO_DESC": "الرجوع الى الوسائط المحددة.",
"REPLUGGED_COMMAND_HELP_COMMAND_NOT_FOUND": "أمر `{commandName}` لم يتم العثور عليه.",
"REPLUGGED_COMMAND_HELP_LIST_TITLE": "قائمة الأوامر",
"REPLUGGED_COMMAND_HELP_COMMAND_TITLE": "مساعدة ل{commandName}",
"REPLUGGED_COMMAND_HELP_FIELD_USAGE": "إستخدام",
"REPLUGGED_COMMAND_HELP_COMMAND_FOOTER": "مأخوذ من {commandOrigin}.",
"REPLUGGED_COMMAND_INSTALL_DESC": "لتحميل بلوقن او ثيم.",
"REPLUGGED_COMMAND_INSTALL_ERROR_INVALID_URL": "رابط خطأ! الرجاء تحديد رابط صحيح في GitHub او اسم مستخدم/صفحة.",
"REPLUGGED_COMMAND_PREFIX": "بادئة الأمر",
"REPLUGGED_COMMAND_LIST_OF_INSTALLED": "قائمة الplugins التي تم تحميلها {type} ({count}",
"REPLUGGED_COMMAND_RELOAD_DESC": "إعادة تشغيل plugin/theme",
"REPLUGGED_COMMAND_RELOAD_RELOADED": "تم إعادة التشغيل {type} \"{id}!",
"REPLUGGED_COMMAND_SAY_DESC": "إرسال الامر المحدد.",
"REPLUGGED_BADGES_DEVELOPER": "مطور Replugged",
"REPLUGGED_BADGES_TRANSLATOR": "مترجم في Replugged",
"REPLUGGED_COMMAND_AUTOCOMPLETE_ENTITY_LIST": "الثيمات والبلوقنات التي تم تنزيلها",
"REPLUGGED_COMMAND_DISABLE_DISABLED": "تم إلغاء {type} \"{id}\"",
"REPLUGGED_COMMAND_HELP_DESC": "إعطائك قائمة الأوامر او المعلومات على الامر المحدد.",
"REPLUGGED_COMMAND_HELP_LIST_FOOTER": "تشغيل {prefix} مساعدة <commandName> للمزيد من المعلومات بخصوص لأمر محدد.",
"REPLUGGED_COMMAND_INSTALL_ERROR_NOT_FOUND": "البلقن او الثيم المطلوب لم يتم ايجاده او خاطئ.",
"REPLUGGED_COMMAND_PLUGINS_DESC": "إظهار قائمة البلوقنات التي تم تحميلها.",
"REPLUGGED_COMMAND_SHARE_DESCRIPTION": "نشر بلوقن او ثيم تم تنزيلها",
"REPLUGGED_CUTIE_TIER_1_DESC": "احصل على **role قابل التخصيص بااكامل** على سيرفر Replugged و ** ألوان مخصصة** في شارة الملف الشخصي لـReplugged.",
"REPLUGGED_COMMAND_SHARE_BOTH_ENTITY": "{id} قيد الاستخدام من قبل الplugins و themes بنفس الوقت. سيتعين عليك التحديد بكتابة --theme أو --plugin.",
"REPLUGGED_COMMAND_SHARE_URL_NOT_FOUND": "لم يتم العثور على رابط من اجل plugin {id}",
"REPLUGGED_COMMAND_THEMES_DESC": "إظهار قائمة الthemes التي تم تحميلها.",
"REPLUGGED_COMMAND_UNINSTALL_DESC": "إلغاء تنزيل plugin او theme",
"REPLUGGED_COMMAND_UNINSTALL_MODAL_HEADER": "إلغاء تنزيل {id}",
"REPLUGGED_COMMAND_UNINSTALL_MODAL_DESC": "هل أنت متأكد من أنك تريد إلغاء التثبيت وحذف {id}؟ هذا لا يمكن التراجع عنه.",
"REPLUGGED_COMMAND_UNINSTALL_TOAST_CONTENT": "تم إلغاء تثبيت و حذف {id}",
"REPLUGGED_COMMAND_UNINSTALL_TOAST_HEADER": "تم إلغاء تنزيل {type}",
"REPLUGGED_CUTIE_DONATE": "تبرع",
"REPLUGGED_CUTIE_SUBTITLE": "واحصل على ميزات رائعة",
"REPLUGGED_CUTIE_TIER_1_PRICE": "**$1 USD**/شهر",
"REPLUGGED_CUTIE_TIER_2_DESC": "احصل على شارة مخصصة **قابلة للتخصيص بالكامل** في ملفك الشخصي.",
"REPLUGGED_CUTIE_TIER_2_PRICE": "**$5 USD**/شهر",
"REPLUGGED_CUTIE_TIER_3_PRICE": "**$10 USD**/شهر",
"REPLUGGED_CUTIE_TIER_EASTER_PRICE": "**$1،337،420.69 USD**",
"REPLUGGED_CUTIE_TITLE": "دعم برمجة Replugged",
"REPLUGGED_ERROR_COULD_NOT_FIND_PLUGIN_THEME": "لم يتم العثور على اي plugin أو theme مطابق ل\"{id}\".",
"REPLUGGED_ERROR_COULD_NOT_FIND_PLUGIN_THEME_AT_REPO": "لم يتم العثور على اي plugin او theme في {repoURL}"
}
Loading

0 comments on commit 3a9ec83

Please sign in to comment.