From 5d6cffedb19e6d6106f519e378d0e91248bf6be9 Mon Sep 17 00:00:00 2001 From: Paulino Michelazzo Date: Wed, 19 Oct 2016 19:25:48 +0200 Subject: Update Portuguese (Brazilian) translation Adding the config.yml on the package. --- app/config/config.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'app/config') diff --git a/app/config/config.yml b/app/config/config.yml index 5127c8cf..0b4494d3 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -44,6 +44,7 @@ wallabag_core: es: 'Español' oc: 'Occitan' it: 'Italiano' + pt: 'Português' items_on_page: 12 theme: material language: '%locale%' -- cgit v1.2.3 From d1b075509dff22e191bcf912d7eef9fb7b1661cc Mon Sep 17 00:00:00 2001 From: Baptiste Mille-Mathias Date: Sun, 23 Oct 2016 15:34:52 +0200 Subject: Add relevant links to fetch content error pages. We link to the troubleshooting guide and give the mail link. --- app/config/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/config') diff --git a/app/config/config.yml b/app/config/config.yml index a56cbdd9..65187eca 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -50,7 +50,8 @@ wallabag_core: rss_limit: 50 reading_speed: 1 cache_lifetime: 10 - fetching_error_message: "wallabag can't retrieve contents for this article. Please report this issue to us." + fetching_error_message: | + wallabag can't retrieve contents for this article. Please first troubleshoot this issue and report it to us. wallabag_user: registration_enabled: "%fosuser_registration%" -- cgit v1.2.3 From d36e5e20a5627faed81d3865470b032d95b86916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Mon, 24 Oct 2016 21:01:13 +0200 Subject: Removed the email part --- app/config/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/config') diff --git a/app/config/config.yml b/app/config/config.yml index 65187eca..84eba759 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -51,7 +51,7 @@ wallabag_core: reading_speed: 1 cache_lifetime: 10 fetching_error_message: | - wallabag can't retrieve contents for this article. Please first troubleshoot this issue and report it to us. + wallabag can't retrieve contents for this article. Please troubleshoot this issue. wallabag_user: registration_enabled: "%fosuser_registration%" -- cgit v1.2.3 From c4b3933bae583da1bdd4b97471bdcca08ab92312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sat, 29 Oct 2016 14:14:20 +0200 Subject: Updated Capistrano configuration --- app/config/capistrano/deploy.rb | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'app/config') diff --git a/app/config/capistrano/deploy.rb b/app/config/capistrano/deploy.rb index f15eef30..fee04620 100644 --- a/app/config/capistrano/deploy.rb +++ b/app/config/capistrano/deploy.rb @@ -1,9 +1,4 @@ # config valid only for current version of Capistrano -lock '3.4.0' - -set :log_path, "var/logs" -set :cache_path, "var/cache" -set :symfony_console_path, 'bin/console' set :application, 'wallabag' set :repo_url, 'git@github.com:wallabag/wallabag.git' @@ -11,8 +6,6 @@ set :repo_url, 'git@github.com:wallabag/wallabag.git' set :ssh_user, 'framasoft_bag' server '78.46.248.87', user: fetch(:ssh_user), roles: %w{web app db} -set :scm, :git - set :format, :pretty set :log_level, :info # set :log_level, :debug @@ -23,4 +16,4 @@ set :linked_files, %w{app/config/parameters.yml} set :linked_dirs, [fetch(:log_path), "var/sessions", "web/uploads", "data"] set :keep_releases, 3 -after 'deploy:finishing', 'deploy:cleanup' +after 'deploy:updated', 'symfony:cache:clear' -- cgit v1.2.3