diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 7ff9017cb0..3ee25a89c7 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,4 +1,7 @@
contact_links:
- - name: Report a Security Vulnerability
+ - name: Сообщить об уязвимости
url: https://github.com/space-wizards/space-station-14/blob/master/SECURITY.md
- about: Please report security vulnerabilities to the Space Wizards privately so they can fix them before they are publicly disclosed.
+ about: Пожалуйста, сообщайте о серьезных эксплойтах и уязвимостях безопасности.
+ - name: Предложение
+ url: https://discord.station14.ru
+ about: Свои предложения можете оставлять в соответствующем канале Discord.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 0db5b08930..31c9cef384 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,21 +1,38 @@
-**Описание обновления:**
+
+
+## Описание обновления:
+**Медиа**
+
-**Причина/Для чего**
-
+**Проверки**
+
+- [ ] PR завершён и мне не нужна помощь чтобы его закончить.
+- [ ] Я внимательно просмотрел все свои изменения и багов в них не нашёл.
+- [ ] Я запускал локальный сервер со своими изменениями и всё протестировал.
+- [ ] Я добавил скриншот/видео демонстрации PR в игре, **или** этот PR этого не требует.
+- [ ] Я не добавлял никакого авторского контента под закрытыми лицензиями
**Изменения**
-
-**Медиа**
-
+:cl: Клоун
+- add: Добавлено веселье!
+- remove: Убрано веселье!
+- tweak: Изменено веселье!
+- fix: Исправлено веселье!
diff --git a/.github/labeler.yml b/.github/labeler.yml
index eb01eeecc4..5332138b86 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,10 +1,10 @@
-"Changes: Audio":
+"Изменения: Звуки":
- "**/*.ogg"
-
-"Changes: C#":
+
+"Изменения: C#":
- "**/*.cs"
-"Changes: Config":
+"Изменения: Конфиг":
- "**/*.toml"
- "**/*.config"
- "*.json"
@@ -13,27 +13,27 @@
- ".vscode/*.json"
- ".editorconfig"
-"Changes: Documentation":
+"Изменения: Документация":
- "**/*.xml"
- "**/*.md"
-"Changes: Localization":
+"Изменения: Локализация":
- 'Resources/Locale/**/*.ftl'
-"Changes: Map":
+"Изменения: Карта":
- "Resources/Maps/**/*.yml"
- "Resources/Prototypes/Maps/**/*.yml"
-"Changes: Sprite":
+"Изменения: Спрайт":
- "**/*.rsi/*.png"
- "**/*.rsi/*.json"
-"Changes: UI":
+"Изменения: Интерфейс":
- "**/*.xaml*"
-"Changes: YML":
+"Изменения: YML":
- any: ["**/*.yml"]
all: ["!Resources/Maps/**/*.yml", "!Resources/Prototypes/Maps/**/*.yml"]
-"Changes: Workflow":
+"Изменения: Github":
- ".github/workflows/*.yml"
diff --git a/.github/workflows/close-master-pr.yml b/.github/workflows/close-master-pr.yml
index 4d7dd348ba..0df3a9488c 100644
--- a/.github/workflows/close-master-pr.yml
+++ b/.github/workflows/close-master-pr.yml
@@ -12,7 +12,7 @@ jobs:
steps:
- uses: superbrothers/close-pull-request@v3
with:
- comment: "Thank you for contributing to our repository. Unfortunately, it looks like you submitted your pull request from the master branch. We suggest you follow [the git usage documentation](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n You can move your current work from the master branch to another branch by [branching](https://git-scm.com/docs/git-branch) from and [resetting](https://git-scm.com/docs/git-reset) the master branch."
+ comment: "Благодарим вас за вклад в наш репозиторий. К сожалению, похоже, что вы отправили ПР из master ветки. Мы рекомендуем вам следовать [документации](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n Вы можете перенести свою текущую работу из основной ветки в другую ветку с помощью [создав новый](https://git-scm.com/docs/git-branch) и [очистив](https://git-scm.com/docs/git-reset) master ветку."
# If you prefer to just comment on the pr and not close it, uncomment the bellow and comment the above
diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/conflict-labeler.yml
index 15d4de341b..a9192d53ce 100644
--- a/.github/workflows/conflict-labeler.yml
+++ b/.github/workflows/conflict-labeler.yml
@@ -1,16 +1,19 @@
name: Check Merge Conflicts
on:
- workflow_dispatch:
+ push:
+ branches:
+ - master
+ pull_request_target:
jobs:
Label:
- if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14'
+ if: github.actor != 'PJBot' && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14'r != 'Lost-Paradise-Bot'
runs-on: ubuntu-latest
steps:
- name: Check for Merge Conflicts
uses: ike709/actions-label-merge-conflict@9eefdd17e10566023c46d2dc6dc04fcb8ec76142
with:
- dirtyLabel: "Status: Merge Conflict"
- repoToken: "${{ secrets.GITHUB_TOKEN }}"
- commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request."
+ dirtyLabel: "Статус: Конфликт"
+ repoToken: "${{ secrets.BOT_TOKEN }}"
+ commentOnDirty: "В этом ПР'е есть конфликты, пожалуйста, устраните их, прежде чем мы сможем оценить ваш ПР."
diff --git a/.github/workflows/labeler-needsreview.yml b/.github/workflows/labeler-needsreview.yml
index 90670fe85e..caa0140889 100644
--- a/.github/workflows/labeler-needsreview.yml
+++ b/.github/workflows/labeler-needsreview.yml
@@ -1,7 +1,8 @@
name: "Labels: Review"
on:
- workflow_dispatch:
+ pull_request_target:
+ types: [review_requested]
jobs:
add_label:
@@ -9,9 +10,9 @@ jobs:
steps:
- uses: actions-ecosystem/action-add-labels@v1
with:
- labels: "Status: Needs Review"
+ labels: "Статус: Требуется одобрение"
repo-token: "${{ secrets.BOT_TOKEN }}"
- uses: actions-ecosystem/action-remove-labels@v1
with:
- labels: "Status: Awaiting Changes"
+ labels: "Статус: Ожидание изменений"
repo-token: "${{ secrets.BOT_TOKEN }}"
diff --git a/LEGAL.md b/LEGAL.md
index 31dace2a11..dff0ac48a2 100644
--- a/LEGAL.md
+++ b/LEGAL.md
@@ -1,29 +1,29 @@
-# Legal Info
+# Юридическая информация
-## Copyright
+## Авторское право
-The Authors retain all copyright to their respective work submitted here.
+Авторы сохраняют за собой все авторские права на свои соответствующие работы, представленные здесь.
-## Licenses
+## Лицензии
-### Code
+### Код
> [!NOTE]
-> If you want MIT-licensed code, please visit the Space Wizards' repository [here](https://github.com/space-wizards/space-station-14/) instead.
-> If they do not have something you want as MIT but we do as AGPLv3, you may ask the authors of the code to relicense it for you.
->
-> If you can not figure out the license of something, or who the author(s) of a feature are, please ask in our [Discord](https://discord.gg/X4QEXxUrsJ).
+> Если вам нужен код, лицензированный MIT, пожалуйста, посетите репозиторий [Space Wizards](https://github.com/space-wizards/space-station-14/).
+> Если у них нет того, что нужно от MIT, а у нас есть от AGPLv3, вы можете попросить авторов кода повторно лицензировать это для.
+>
+> Если вы не можете определить лицензию на что-либо или кто является автором той или иной функции, пожалуйста, спросите в нашем [Discord](https://discord.gg/X4QEXxUrsJ).
-Content contributed to this repository after commit [87c70a8](https://github.com/Simple-Station/Einstein-Engines/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4) is licensed under the GNU Affero General Public License version 3.0 unless otherwise stated.
-See [LICENSE-AGPLv3](./LICENSE-AGPLv3.txt).
-Content contributed to this repository before the aforementioned commit is MIT-licensed unless otherwise stated.
-See [LICENSE-MIT](./LICENSE-MIT.txt).
+Контент добавленный в этот репозиторий после коммита [87c70a8](https://github.com/Simple-Station/Einstein-Engines/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4) имеет лицензию "GNU Affero General Public License version 3.0" если не указано другое.
+Смотрите [LICENSE-AGPLv3](./LICENSE-AGPLv3.txt).
+Контент, размещенный в этом репозитории до вышеупомянутого коммита, имеет лицензию "MIT", если не указано иное.
+Смотрите [LICENSE-MIT](./LICENSE-MIT.txt).
[87c70a8](https://github.com/Simple-Station/Einstein-Engines/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4) was pushed on February 17th 2024 at 21:48 UTC.
-### Assets
+### Активы
-Most assets are licensed under [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) unless stated otherwise.
-Assets have their license and the copyright in the metadata file.
+Большинство активов лицензированы в соответствии с [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) если не указано иное.
+Ресурсы имеют свою лицензию и авторские права на файле метаданных.
[Example](./Resources/Textures/Objects/Tools/crowbar.rsi/meta.json).
-Note that some assets are licensed under the non-commercial [CC-BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/) or similar non-commercial licenses and will need to be removed if you wish to use this project commercially.
+Обратите внимание, что некоторые активы лицензированы в соответствии с некоммерческим соглашением. [CC-BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/) или аналогичные некоммерческие лицензии, и их необходимо будет удалить, если вы хотите использовать этот проект в коммерческих целях.
diff --git a/README.md b/README.md
index 1e6d746e0a..8d9b852f41 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@
Вы не можете использовать имя нашего проекта, все права на франшизу "Lost Paradise" принадлежат @Flybik.
Обратите внимание, что любое использования нашего контента должно соответствовать лицензии [LICENSE-AGPLv3](./LICENSE-AGPLv3.txt).
Что значит вы должны делится улучшениями этого контента даже если он значительно изменён.
-Если вы используете этот репозиторий как основновной, вы должны указать его как источник.
+Если вы используете этот репозиторий как основной, вы должны указать его как источник.
Если вы нашли неточности или неправомерное использование вашего контента свяжитесь с `jay_jacobs` в личных сообщениях, его можно найти на [Discord сервере](https://discord.gg/v5mGmMzAdB) / If you find any inaccuracies or misuse of your content, please contact `jay_jacobs` via private messages, he can be found on the [Discord server](https://discord.gg/v5mGmMzAdB).
@@ -46,21 +46,9 @@
> 1. Клонируйте репо `git clone`
> 2. Запустите `git submodule update --init --recursive` в терминале для скачивания движка.
-> 3. Запустите `Scripts/sh/buildAllDebug.sh` после каждого измения.
+> 3. Запустите `Scripts/sh/buildAllDebug.sh` после каждого изменения. (После изменения папки Resources не требуется)
> 4. Запустите `Scripts/sh/runQuickAll.sh` для запуска клиента и сервера.
> 5. Подключитесь к "localhost" в клиенте.
-## Лицензия
-
-Контент добавленный в этот репозиторий после коммита 87c70a89a67d0521a56388e6b1c3f2cb947943e4 (`17 February 2024 23:00:00 UTC`) имеет лицензию "GNU Affero General Public License version 3.0".
-Посмотреть [LICENSE-AGPLv3](./LICENSE-AGPLv3.txt).
-
-Контент добавленный в этот репозиторий до коммита 87c70a89a67d0521a56388e6b1c3f2cb947943e4 (`17 February 2024 23:00:00 UTC`) имеет лицензию "MIT license".
-Посмотреть [LICENSE-MIT](./LICENSE-MIT.txt).
-
-Большинство контента под лицензией [CC-BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) если не указано иное. Контент имеет лицензию в файле метаданных.
-[Пример](./Resources/Textures/Objects/Tools/crowbar.rsi/meta.json).
-
-Обратите внимание, что некоторый контент лицензирован в соответствии с некоммерческой лицензией. [CC-BY-NC-SA 3.0](https://creativecommons.org/licenses/by-nc-sa/3.0/) или аналогичные некоммерческие лицензии, и их необходимо будет удалить, если вы захотите использовать этот проект в коммерческих целях.
-
-Please read the [LEGAL.md](./LEGAL.md) file for information on the licenses of the code and assets in this repository.
+# Лицензия
+Пожалуйста прочитайте файл [LEGAL.md](./LEGAL.md) для получения информации о лицензиях на все ресурсы в этом репозитории.
diff --git a/Resources/Locale/ru-RU/_LostParadise/update20.ftl b/Resources/Locale/ru-RU/_LostParadise/update20.ftl
index be7f46547b..2ffc0a6fa0 100644
--- a/Resources/Locale/ru-RU/_LostParadise/update20.ftl
+++ b/Resources/Locale/ru-RU/_LostParadise/update20.ftl
@@ -1,7 +1,7 @@
ent-LPPCentralCommandRepresentativeIDCard = ID карта представителя ЦентКом
.desc = Выглядит страшно...
ent-LPPKirasCloakn = Плащ Киры
- .desc = Прекресный плащ с прекрасным капющёном
+ .desc = Прекрасный плащ с прекрасным капюшоном
ent-LPPSmallCactus01 = Кактус
.desc = Я КАКТУС
ent-LPPSmallCactus02 = Кактус
@@ -386,8 +386,12 @@ ent-LPPClothingUnderThinThighOrange = тонкие колгодки
ent-LPPClothingUnderThinKneeOrange = тонкие носки
ent-LPPClothingUnderStripedKnee = полосатое носки
ent-LPPClothingUnderStripedThigh = полосатое носки
+ .desc = { ent-LPPClothingUnderSocksThighBlack.desc }
ent-LPPClothingUnderSocksKneeOrange = носки
ent-LPPClothingUnderSocksNormOrange = носки
ent-LPPClothingUnderSocksShortOrange = носки
ent-LPPClothingUnderSocksThighOrange = носки
+ .desc = { ent-LPPClothingUnderSocksThighBlack.desc }
ent-SpawnSecPilot = спавн пилота службы безопансоти
+ent-LockerWoCSyndicate = Шкафчик для хранения улик
+ .desc = Для хранения мешков с гильзами и вещами задержанного.
diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl
index e225c08173..09bb024a13 100644
--- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl
+++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/storage/closets/closets.ftl
@@ -25,8 +25,6 @@ ent-ClosetMaintenance = технический шкаф
.desc = Это хранилище.
ent-LockerSyndicate = оружейный шкаф
.desc = Это хранилище.
-ent-LockerWoCSyndicate = Шкафчик для хранения улик
- .desc = Для хранения мешков с гильзами и вещами задержанного.
ent-ClosetBluespace = подозрительный шкаф
.desc = Это хранилище... правда же?
.suffix = Блюспейс
diff --git a/Resources/Locale/ru-RU/wires/wire-names.ftl b/Resources/Locale/ru-RU/wires/wire-names.ftl
index b02f8a9b16..29fe29bb3f 100644
--- a/Resources/Locale/ru-RU/wires/wire-names.ftl
+++ b/Resources/Locale/ru-RU/wires/wire-names.ftl
@@ -21,8 +21,7 @@ wires-board-name-anomalygenerator = Генератор аномалий
wires-board-name-cloningpod = Капсула клонирования
wires-board-name-cryopod = Криокапсула
wires-board-name-chemdispenser = Раздатчик химикатов
-#wires-board-name-chemdispenser = Раздатчик химикатов
-wires-board-name-chemmaster = Мастер химикатов
+wires-board-name-chem_master = Мастер химикатов
wires-board-name-generator = Генератор
wires-board-name-vendingmachine = Торгомат
wires-board-name-intercom = Интерком
diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml
index ab8e3c78f9..aea06ad477 100644
--- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml
+++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/bishop.yml
@@ -42,7 +42,7 @@
id: CyberLimbsMarkingBishopLArm
bodyPart: LArm
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: l_arm-primary
@@ -55,7 +55,7 @@
id: CyberLimbsMarkingBishopLHand
bodyPart: LHand
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: l_hand
@@ -64,7 +64,7 @@
id: CyberLimbsMarkingBishopLLeg
bodyPart: LLeg
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: l_leg-primary
@@ -76,7 +76,7 @@
id: CyberLimbsMarkingBishopLFoot
bodyPart: LFoot
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: l_foot
@@ -87,7 +87,7 @@
id: CyberLimbsMarkingBishopRArm
bodyPart: RArm
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: r_arm-primary
@@ -101,7 +101,7 @@
id: CyberLimbsMarkingBishopRHand
bodyPart: RHand
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: r_hand
@@ -110,7 +110,7 @@
id: CyberLimbsMarkingBishopRLeg
bodyPart: RLeg
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: r_leg-primary
@@ -122,7 +122,7 @@
id: CyberLimbsMarkingBishopRFoot
bodyPart: RFoot
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/bishop/bishop_main.rsi
state: r_foot
diff --git a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml
index 8843a98b5c..cc4954e857 100644
--- a/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml
+++ b/Resources/Prototypes/Entities/Mobs/Customization/cyberlimbs/hesphiastos.yml
@@ -37,7 +37,7 @@
id: CyberLimbsMarkingHesphiastosLArm
bodyPart: LArm
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: l_arm-1
@@ -48,7 +48,7 @@
id: CyberLimbsMarkingHesphiastosLHand
bodyPart: LHand
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: l_hand-1
@@ -59,7 +59,7 @@
id: CyberLimbsMarkingHesphiastosLLeg
bodyPart: LLeg
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: l_leg-1
@@ -71,7 +71,7 @@
id: CyberLimbsMarkingHesphiastosLFoot
bodyPart: LFoot
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: l_foot-1
@@ -84,7 +84,7 @@
id: CyberLimbsMarkingHesphiastosRArm
bodyPart: RArm
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: r_arm-1
@@ -96,7 +96,7 @@
id: CyberLimbsMarkingHesphiastosRHand
bodyPart: RHand
markingCategory: Arms
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: r_hand-1
@@ -108,7 +108,7 @@
id: CyberLimbsMarkingHesphiastosRLeg
bodyPart: RLeg
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: r_leg-1
@@ -120,7 +120,7 @@
id: CyberLimbsMarkingHesphiastosRFoot
bodyPart: RFoot
markingCategory: Legs
- speciesRestriction: [IPC, Moth, Dwarf, Human, Arachnid, Felinid, Oni, Vulpkanin, HumanoidFoxes, Reptilian]
+ speciesRestriction: [IPC]
sprites:
- sprite: Mobs/Customization/cyberlimbs/hesphiastos/hesphiastos_main.rsi
state: r_foot-1
diff --git a/Resources/ServerInfo/Guidebook/Cargo/TradeStation.xml b/Resources/ServerInfo/Guidebook/Cargo/TradeStation.xml
index bde0506b17..91d5018843 100644
--- a/Resources/ServerInfo/Guidebook/Cargo/TradeStation.xml
+++ b/Resources/ServerInfo/Guidebook/Cargo/TradeStation.xml
@@ -1,10 +1,10 @@
- # Trade Station
- The Trade Station is seperate from the station, usually floating around in space visible on the scanner and shuttle computer. It is self maintaining, and self powered with solar pannels, so cargo doesn't need to do anything for it to work.
-
- ## Selling
- Using the [color=#a4885c]cargo shuttle[/color], you are able to transport items and bounties to sell at the trade station by flying the shuttle (explained in [textlink="cargo" link="Cargo"]) and docking it to the trade station. Then you bring the objects to sell over the cargo pallets, go to the computer inbetween the 2 sets of pallets and sell what can be sold. Dont worry, you can't sell yourself! Then [color=#118C4F]Spessos[/color] should come out of the computer, and can be inserted into the Quartermasters Digiboard or the Cargo Computer to be added to the Bank.
-
- ## Collecting Orders
- All cargo orders are sent to the [color=#a4885c]Trade Station[/color] to be [color=#a4885c]collected[/color], this includes items sent by centcom. To collect them you have to travel to the Trade station and they should be there on the cargo pallets in a crate, ready to be taken back to the station.
+ # Станция Торговли
+ Торговая станция отделена от станции и обычно парит в космосе, видимая на сканере и консоли шаттла. Она самоподдерживается и питается от солнечных батарей, поэтому отделу Снабжения не нужно ничего делать, чтобы она работала.
+
+ ## Продажа
+ Используя [color=#a4885c]шаттл отдела Снабжения[/color], вы можете перевозить вещи и запросы для продажи на торговой станции, управляя шаттлом (описано в [textlink="логистике", link="Cargo"]) и пристыковывая его к торговой станции. Затем вы переносите предметы для продажи на грузовые поддоны, открываете интерфейс компьютера, расположенного между поддонов, и продаёте то, что можно продать. Не волнуйтесь, вы не можете продать себя! Затем [color=#118C4F]Деньги[/color] должны выйти из компьютера, они в свою очередь могут быть вставлены в планшет Квартирмейстера или консоль заказов, после чего они будут добавлены в Банк.
+
+ ## Сбор заказов
+ Все заказы грузов отправляются на [color=#a4885c]торговую станцию [/color] для того что-бы вы их оттуда [color=#a4885c]забрали[/color], включая товары, отправленные Центральным Командованием. Чтобы забрать их, вам нужно отправиться на торговую станцию, где они будут лежать на грузовых поддонах в ящиках, готовые к отправке обратно на станцию.
diff --git a/Resources/Textures/_LostParadise/Interface/Misc/status_ai.rsi/meta.json b/Resources/Textures/_LostParadise/Interface/Misc/status_ai.rsi/meta.json
index db38d20c64..070bdbf3e7 100644
--- a/Resources/Textures/_LostParadise/Interface/Misc/status_ai.rsi/meta.json
+++ b/Resources/Textures/_LostParadise/Interface/Misc/status_ai.rsi/meta.json
@@ -1,6 +1,6 @@
{
"version": 1,
- "license": "CC-BY-NC-SA 3.0",
+ "license": "CC-BY-SA 3.0",
"copyright": "Made by Lost Paradise",
"size": {
"x": 8,
diff --git a/SECURITY.md b/SECURITY.md
index 22bdbd9fbf..27d0a17928 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -1,8 +1,8 @@
-# Reporting a security vulnerability
+# Сообщение об уязвимости в системе безопасности
-You can report a security vulnerability through Discord or through email.
+Вы можете сообщить об уязвимости в системе безопасности через Discord или по электронной почте.
-If you want to send an email, you can contact us at .
-If you want to contact us through Discord, you can join [our server](https://discord.gg/X4QEXxUrsJ) and then **privately** message anyone with the `@Maintainer` role.
+Если вы хотите отправить электронное письмо, вы можете связаться с нами по адресу .
+Если вы хотите связаться с нами через Discord, вы можете присоединиться к [нашему серверу](https://discord.gg/X4QEXxUrsJ), а затем ** отправить личное сообщение любому пользователю с ролью `@Maintainer`.
-In either case, **do not publicly disclose the vulnerability until we explicitly give you permission to do so**.
+В любом случае, **не раскрывайте уязвимость публично до тех пор, пока мы явно не дадим вам на это разрешение**.