## Please edit system and help pages ONLY in the master wiki!
## For more information, please see MoinMoin:MoinDev/Translation.
##master-page:Unknown-Page
##master-date:Unknown-Date
#acl -All:write Default
#format wiki
#language uk

## The DesktopEdition can be configured similarly to a normal MoinMoin installation. You must restart `moin.exe`/`moin.py` for changes to take effect.
НастільнеВидання можна конфігурувати як звичайний МоінМоін. Вам необхідно "перезапустити" moin.exe`/`moin.py`, щоб зміни у конфігурації набули чинності.

= Базове конфігурування =
## Just edit the `wikiconfig.py` file. You can use the options listed on the page HelpOnConfiguration.
Просто відредагуйте файл `wikiconfig.py`. Ви можете використовувати налаштування, перелічені на сторінці ДовідкаКонфігурування.

Наприклад: {{{#!python
from MoinMoin.multiconfig import DefaultConfig

class Config(DefaultConfig):
    sitename = "Мій записничок"
    logo_string = u'<img src= "/wiki/mylogo.png"> Мій Вікі-Записничок'
    acl_rights_default = u"All:read,write,delete"
}}}
## Note that the last line is needed if you want to disable administrator access for all users. This is very important if you are using your wiki on the Internet.
Зауважте, що останній рядок необхідний, якщо ви хочете заборонити доступ до адміністрування осім користувачам. Це надзвичайно важливо, якщо ви використовуєте ваш вікі у мережі Інтернет.

## Note that you need admin rights to install help pages in your language. So, install them before you use the `acl_rights_default` above.
Зауважте, що вам необхідно мати права адміністратора, щоб встановити сторінки довідки вашою мовою. Тобто, встановіть їх до того, як виправити `acl_rights_default`, як наведено вище.

= Конфігурування сервера =
## Additionally, you can set some server options like the port etc. in the file `wikiserverconfig.py`. You need to create it and fill it like shown below. See [:HelpOnInstalling/StandaloneServer#options:HelpOnInstalling/StandaloneServer] for the available options.
Також ви можете встановити деякі параметри сервера -- наприклад, порт тощо -- у файлі wikiserverconfig.py`. Вам треба створити цей файл та заповнити, як наведено нижче. Дивіться також перелік можливий параметрів у [[ДовідкаВстановлення/ВиділенийСервер#options|ДовідкаВстановлення/ВиділенийСервер]].

Наприклад: {{{#!python
from __main__ import DefaultConfig
class Config(DefaultConfig):
    port = 80
    interface = "10.0.0.0" # вказує, до якого інтерфейсу прислухатися серверу. вкажіть "" для будь-якого.
}}}

= Словник =
##You can create a `dict` directory in the MMDE directory and copy dictionary files into it. Then they will be found by the integrated spellchecker.
Ви можете створити папку-словник (`dict`) у каталозі MMDE та скопіювати туди файли перевірки правопису. Після цього вони будуть використані вбудованим перевіряльником правопису.

= Plugins/Themes =
## Of course you can install plugins and themes like you do it normally. If it is a prepared MoinMoin package file, then you just need to upload it and click `install` on the page which lists all attachments. Otherwise you have to copy the plugin file into the directory `wiki/data/plugin/` followed by the type of the plugin. E.g. for a theme you would copy the `.py` file into `wiki/data/plugin/theme` directory.
Звичайно ж, ви можете встановити додатки (`plugins`) та теми (`themes`), як ви це робите завжди. Якщо вони запаковані як пакунки МоінМоін, їх треба завантажити (як долучення) на сторінку та вибрати `Встановити` на сторінці долучень. Інакше треба скопіювати додаток чи тему у відповідний каталог (`wiki/data/plugin/` та тип додатку чи `wiki/data/plugin/theme`).

##You will need to copy `the css` and `img` folders (if you are installing a theme) into a subfolder, which has got the name of your theme, of `wiki/htdocs`.
Вам також треба буде скопіювати каталоги `css` та `img` (якщо ви встановлюєте тему) у підпапку з назвою теми у `wiki/htdocs`.
