# Adjustments

***

## Setting the Notification Default Location <a href="#setting-the-notification-default-location" id="setting-the-notification-default-location"></a>

To set the default location of the notification, you can follow these steps.

* Open provided config file.
* Find "

  ```lua
  CODEO.DefaultNotifyPosition = "bottom-center" -- | top-left | top-center | top-right | center-left | center-right | bottom-left | bottom-center | bottom-right |
  ```

  ".
* Then, in the setting here you can type one of these positions

***

## Set notification sound enable/disable <a href="#set-notification-sound-enable-disable" id="set-notification-sound-enable-disable"></a>

You can follow the steps below to enable/disable the notification sound.

* Open provided config file.
* Find "

  ```lua
  CODEO.DefaultNotifySound = "one" -- | one | two | three | four | five | six | seven | eight |
  ```

  ".
* Then this feature will turn the notification sound off if false, and turn the notification sound on if true

***

## Customize Test Notification Messages <a href="#turning-notification-test-commands-on-and-off" id="turning-notification-test-commands-on-and-off"></a>

You can follow the steps below to turn the notification test commands on and off.

* Open provided **client/client\_editable.lua** file.
* Find "

  ```lua
  RegisterNUICallback('SEND_TEST_NOTIFICATION', function(data)
      sendNotify(nil, "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Success", 'success', 3000)
      sendNotify(nil, "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Error", 'error', 3000)
      sendNotify(nil, "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Info", 'info', 3000)
      sendNotify(nil, "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Server", 'server', 3000)
      sendNotify(nil, "Lorem ipsum dolor sit amet consectetur, adipisicing elit. Police", 'police', 3000)
  end)
  ```

  ".
* You can edit test messages from this section.

***

## Turn Notification Sound on or off <a href="#edit-notification-languages" id="edit-notification-languages"></a>

Check how to do it with the information I will provide below.

* Open provided config file.
* Find "

  ```lua
  CODEO.DefaultNotifySoundEnable = true -- Enable or disable sound for notifications.
  ```

  "
* You can turn the system on and off by simply selecting true or false here.

***

## Edit notification themes <a href="#edit-notification-languages" id="edit-notification-languages"></a>

Change the notify theme using the information I provided in the section below.

* Open provided config file.
* Find "

  ```lua
  CODEO.DefaultNotifyTheme = 'Theme1' -- | Theme1 | Theme2 | Theme3 | Theme4 | Theme5 | Theme6 | Theme7 |
  ```

  "
* Now enter the theme code you want.

***

## Change the default notification font <a href="#edit-notification-languages" id="edit-notification-languages"></a>

Check how to do it with the information I will provide below.

* Open provided config file.
* Find "

  ```lua
  CODEO.DefaultNotifyFont = "SF-Pro" -- | SF-Pro | Nekst | Gilroy | Poppins | Nature |
  ```

  "
* You can edit the default font type in this section.

***

## Edit notification languages <a href="#edit-notification-languages" id="edit-notification-languages"></a>

Please follow the steps below to change the language of the text in the notification.

* Open provided config file.
* Find "

  ```lua
  CODEO.Locale = "en" -- | Code    | Language Name      |
                      -- | ------- | ------------------ |
                      -- | `en`    | English            |
                      -- | `tr`    | Türkçe             |
                      -- | `es`    | Español            |
                      -- | `et`    | Eesti              |
                      -- | `fr`    | Français           |
                      -- | `it`    | Italiano           |
                      -- | `nl`    | Nederlands         |
                      -- | `pt`    | Português          |
                      -- | `pt-br` | Português (Brasil) |
                      -- | `sv`    | Svenska            |
                      -- | ------- | ------------------ |
                      -- | NOTE : If you want to add a new language, you can add it in the locales.lua file. 
  ```

  ".&#x20;
* Then adjust the text there according to your language.
* Additionally, you can customize the texts in `locales/locales.lua` to suit your own language.

{% hint style="danger" %}

```lua
['NOTIFICATION_SETTINGS'] = "ONLY HERE"
```

{% endhint %}
