diff --git a/app/Constants.php b/app/Constants.php index e54b0f69aea5..d5d06fd740b7 100644 --- a/app/Constants.php +++ b/app/Constants.php @@ -361,7 +361,7 @@ if (! defined('APP_NAME')) { define('NINJA_APP_URL', env('NINJA_APP_URL', 'https://app.invoiceninja.com')); define('NINJA_DOCS_URL', env('NINJA_DOCS_URL', 'https://invoice-ninja.readthedocs.io/en/latest')); define('NINJA_DATE', '2000-01-01'); - define('NINJA_VERSION', '4.5.26' . env('NINJA_VERSION_SUFFIX')); + define('NINJA_VERSION', '4.5.27' . env('NINJA_VERSION_SUFFIX')); define('NINJA_TERMS_VERSION', '1.0.1'); define('SOCIAL_LINK_FACEBOOK', env('SOCIAL_LINK_FACEBOOK', 'https://www.facebook.com/invoiceninja')); diff --git a/docs/conf.py b/docs/conf.py index 15e701b1ef57..c9c4c8228881 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ author = u'Invoice Ninja' # The short X.Y version. version = u'4.5' # The full version, including alpha/beta/rc tags. -release = u'4.5.26' +release = u'4.5.27' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 8cba638c5212..7d591f21248c 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -3896,6 +3896,12 @@ $LANG = array( 'show_product_discount' => 'Show Product Discount', 'show_product_discount_help' => 'Display a line item discount field', 'tax_name3' => 'Tax Name 3', + 'debug_mode_is_enabled' => 'Debug mode is enabled', + 'debug_mode_is_enabled_help' => 'Warning: it is intented for use on local machines, it can leak credentials. Click to learn more.', + 'running_tasks' => 'Running Tasks', + 'recent_tasks' => 'Recent Tasks', + 'recent_expenses' => 'Recent Expenses', + 'upcoming_expenses' => 'Upcoming Expenses', ); return $LANG;