diff options
author | Thomas Lange <code@nerdmind.de> | 2017-03-10 21:46:12 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-03-10 21:46:12 +0100 |
commit | e33c245d910e55b8cab407a03e669470509a705d (patch) | |
tree | e958504564ab47e72e0d3dcfe0b967440007b1d9 /core/language | |
parent | aae885b9784466ab412e4010893808867e93c213 (diff) | |
download | blog-e33c245d910e55b8cab407a03e669470509a705d.tar.gz blog-e33c245d910e55b8cab407a03e669470509a705d.tar.xz blog-e33c245d910e55b8cab407a03e669470509a705d.zip |
Several changes have been made in this commit, which together with the previous commits result in version 1.1:v1.1
+ The rules for the Apache and nginx configuration have been changed and redirects now all requests to the index.php.
+ A router class has been added which now handles all requests that arrives at the application on the index.php.
+ Short-hand functions "PAGE", "POST" and "USER" for use in templates added to get specific item data by ID.
+ More language variables have been added to the core language.
Diffstat (limited to 'core/language')
-rw-r--r-- | core/language/de.php | 7 | ||||
-rw-r--r-- | core/language/en.php | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/core/language/de.php b/core/language/de.php index dc6e924..c310719 100644 --- a/core/language/de.php +++ b/core/language/de.php @@ -191,4 +191,11 @@ $LANGUAGE['title_user_overview'] = "{$LANGUAGE['user_overview']} [%d]"; #=============================================================================== $LANGUAGE['title_search_request'] = 'Volltextsuche'; $LANGUAGE['title_search_results'] = 'Ergebnisse für "%s"'; + +#=============================================================================== +# Feed names +#=============================================================================== +$LANGUAGE['feed_name_items'] = '%s [alle Inhalte]'; +$LANGUAGE['feed_name_pages'] = '%s [nur Seiten]'; +$LANGUAGE['feed_name_posts'] = '%s [nur Beiträge]'; ?>
\ No newline at end of file diff --git a/core/language/en.php b/core/language/en.php index 3e48191..55c0ce3 100644 --- a/core/language/en.php +++ b/core/language/en.php @@ -191,4 +191,11 @@ $LANGUAGE['title_user_overview'] = "{$LANGUAGE['user_overview']} [%d]"; #=============================================================================== $LANGUAGE['title_search_request'] = 'Fulltext search'; $LANGUAGE['title_search_results'] = 'Results for "%s"'; + +#=============================================================================== +# Feed names +#=============================================================================== +$LANGUAGE['feed_name_items'] = '%s [all content]'; +$LANGUAGE['feed_name_pages'] = '%s [only pages]'; +$LANGUAGE['feed_name_posts'] = '%s [only posts]'; ?>
\ No newline at end of file |