Fix paths after legacy rename
This commit is contained in:
parent
ca21225fb9
commit
c4c89eae19
23 changed files with 47 additions and 47 deletions
|
@ -12,7 +12,7 @@ First, you should check if a localization is already under way for your locale o
|
|||
|
||||
GNU **gettext** means using a .po file for each language or dialect, a specially formatted plain text file with groups of three or more lines, like this example from LibreTime's Korean localization:
|
||||
|
||||
#: airtime_mvc/application/configs/navigation.php:57
|
||||
#: legacy/application/configs/navigation.php:57
|
||||
msgid "Media Folders"
|
||||
msgstr "미디어 폴더"
|
||||
|
||||
|
@ -32,17 +32,17 @@ After forking the LibreTime git repository, make sure you're in the **master** b
|
|||
devel
|
||||
* master
|
||||
|
||||
Create a new locale directory (e.g. _airtime_mvc/locale/de_CH/LC_MESSAGES/_ for German as spoken in Switzerland):
|
||||
Create a new locale directory (e.g. _legacy/locale/de_CH/LC_MESSAGES/_ for German as spoken in Switzerland):
|
||||
|
||||
mkdir -p airtime_mvc/locale/de_CH/LC_MESSAGES/
|
||||
mkdir -p legacy/locale/de_CH/LC_MESSAGES/
|
||||
|
||||
Copy the template _airtime.po_ file into the directory you just created:
|
||||
|
||||
cp airtime_mvc_locale/template/airtime.po airtime_mvc/locale/de_CH/LC_MESSAGES
|
||||
cp legacy_locale/template/airtime.po legacy/locale/de_CH/LC_MESSAGES
|
||||
|
||||
and update the header information in the new copy of the _airtime.po_ file using the **nano** editor:
|
||||
|
||||
nano airtime_mvc/locale/de_CH/LC_MESSAGES/airtime.po
|
||||
nano legacy/locale/de_CH/LC_MESSAGES/airtime.po
|
||||
|
||||
For the example of Swiss German, the header of the file should now look like this:
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ podcast tabs, and a live feed of your station with information on the the curren
|
|||
|
||||
## Modifying the LibreTime Radio Page
|
||||
|
||||
The background of the mini-site that appears when you visit the server's domain in your web browser can be changed by modifying the page's CSS file, located at _/usr/share/airtime/php/airtime_mvc/public/css/radio-page/radio-page.css_.
|
||||
The background of the mini-site that appears when you visit the server's domain in your web browser can be changed by modifying the page's CSS file, located at _/usr/share/airtime/php/legacy/public/css/radio-page/radio-page.css_.
|
||||
|
||||
```
|
||||
html {
|
||||
|
@ -25,4 +25,4 @@ html {
|
|||
}
|
||||
```
|
||||
|
||||
Place the new background image in the `/usr/share/airtime/php/airtime_mvc/public/css/radio-page/img/` folder and change the `background:` entry's URL to point to the new image. The new image should be at least 1280 x 720 in pixel size to avoid being blurry.
|
||||
Place the new background image in the `/usr/share/airtime/php/legacy/public/css/radio-page/img/` folder and change the `background:` entry's URL to point to the new image. The new image should be at least 1280 x 720 in pixel size to avoid being blurry.
|
||||
|
|
|
@ -88,10 +88,10 @@ On port 80, Apache's _alias_ module is used to set a _Redirect permanent_ for th
|
|||
|
||||
ServerAdmin admin@example.com
|
||||
|
||||
DocumentRoot /usr/share/airtime/php/airtime_mvc/public
|
||||
DocumentRoot /usr/share/airtime/php/legacy/public
|
||||
DirectoryIndex index.php
|
||||
|
||||
<Directory /usr/share/airtime/php/airtime_mvc/public>
|
||||
<Directory /usr/share/airtime/php/legacy/public>
|
||||
Options -Indexes FollowSymLinks MultiViews
|
||||
AllowOverride all
|
||||
Order allow,deny
|
||||
|
@ -104,12 +104,12 @@ On port 80, Apache's _alias_ module is used to set a _Redirect permanent_ for th
|
|||
|
||||
ServerAdmin admin@example.com
|
||||
|
||||
DocumentRoot /usr/share/airtime/php/airtime_mvc/public
|
||||
DocumentRoot /usr/share/airtime/php/legacy/public
|
||||
Redirect permanent /login https://airtime.example.com/login
|
||||
|
||||
SetEnv APPLICATION_ENV "production"
|
||||
|
||||
<Directory /usr/share/airtime/php/airtime_mvc/public>
|
||||
<Directory /usr/share/airtime/php/legacy/public>
|
||||
Options -Indexes FollowSymLinks MultiViews
|
||||
AllowOverride All
|
||||
Order allow,deny
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue