From 6743d5475fb0e55364ba81c9b0e54c4ff4e6c3fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Wed, 10 Feb 2016 15:28:45 +0100 Subject: [PATCH] Contrib plugin subscriptions --- app/locales/taiga/locale-en.json | 21 +++++++++++++++++++++ app/styles/dependencies/helpers.scss | 1 + gulpfile.js | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/app/locales/taiga/locale-en.json b/app/locales/taiga/locale-en.json index 138fdb09..4bacf2a3 100644 --- a/app/locales/taiga/locale-en.json +++ b/app/locales/taiga/locale-en.json @@ -1480,5 +1480,26 @@ "ACTION_TITLE": "Search", "RESULTS": "Search results" } + }, + "SUBSCRIPTIONS": { + "PLAN": "Plan", + "PLAN_STARTING": "Active Plans starting April 30, 2016", + "YOUR_PLAN": "Your plan", + "YOUR_RECOMMENDED_PLAN": "Your recommended plan", + "WANT_PLAN": "I want it!", + "UPDATE_PLAN": "Update Plan", + "PRIVATE_PROJECTS_LIMIT": "Up to {{limit}} private projects + Unlimited public projects", + "MEMBERS_LIMIT": "Up to {{limit}} members per private project", + "FREQUENCY_MONTH": "month", + "FREQUENCY_YEAR": "year", + "HELP": { + "WHY": "Why do we recommend this plan?", + "NO_PROJECTS": "Currently you have no private projects, so the plan that fits for you is the {{vm.myRecommendedPlan.name}} plan.", + "UPGRADE": "You can upgade your plan if you need it.", + "ACTIVATION": "On 30th April we will activate the paid plans. If you have more than 1 provate project you could keep its privacity making the payment for the plan that better fits for you.", + "PUBLIC": "We love to share, so if you keep your projects public, it will be completely free.", + "MORE_INFO_TITLE": "Frequently Asked Questions", + "MORE_INFO": "More info (FAQ)" + } } } diff --git a/app/styles/dependencies/helpers.scss b/app/styles/dependencies/helpers.scss index df38b422..e71a081c 100644 --- a/app/styles/dependencies/helpers.scss +++ b/app/styles/dependencies/helpers.scss @@ -6,6 +6,7 @@ %larger {font-size: 1.6rem;} %xlarge {font-size: 2rem;} %xxlarge {font-size: 3rem;} +%gigantic {font-size: 4rem;} // __Font Types__ // %title {font-family: 'OpenSans-CondLight', Arial, Helvetica, sans-serif; } diff --git a/gulpfile.js b/gulpfile.js index 8890c0ba..03ee1164 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -480,7 +480,7 @@ gulp.task("copy-theme-fonts", function() { }); gulp.task("copy-images", function() { - return gulp.src(paths.app + "/images/**/*") + return gulp.src([paths.app + "/images/**/*", paths.app + '/modules/compile-modules/**/images/*']) .pipe(gulpif(isDeploy, imagemin({progressive: true}))) .pipe(gulp.dest(paths.distVersion + "/images/")); });