Contrib plugin subscriptions
parent
af00d7ef11
commit
6743d5475f
|
@ -1480,5 +1480,26 @@
|
||||||
"ACTION_TITLE": "Search",
|
"ACTION_TITLE": "Search",
|
||||||
"RESULTS": "Search results"
|
"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)"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
%larger {font-size: 1.6rem;}
|
%larger {font-size: 1.6rem;}
|
||||||
%xlarge {font-size: 2rem;}
|
%xlarge {font-size: 2rem;}
|
||||||
%xxlarge {font-size: 3rem;}
|
%xxlarge {font-size: 3rem;}
|
||||||
|
%gigantic {font-size: 4rem;}
|
||||||
|
|
||||||
// __Font Types__ //
|
// __Font Types__ //
|
||||||
%title {font-family: 'OpenSans-CondLight', Arial, Helvetica, sans-serif; }
|
%title {font-family: 'OpenSans-CondLight', Arial, Helvetica, sans-serif; }
|
||||||
|
|
|
@ -480,7 +480,7 @@ gulp.task("copy-theme-fonts", function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("copy-images", 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(gulpif(isDeploy, imagemin({progressive: true})))
|
||||||
.pipe(gulp.dest(paths.distVersion + "/images/"));
|
.pipe(gulp.dest(paths.distVersion + "/images/"));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue