Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat (*): Add i18n support #2534

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Imported app styling files
stherrienaspnet committed Apr 4, 2017
commit 16ef89cb893399838240562760c0858bf0fba245
6 changes: 6 additions & 0 deletions templates/app/client/app/app(css).css
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
<%_ if(filters.oauth) { -%>
@import '~bootstrap-social/bootstrap-social.css';
<%_ } -%>

/**
* Bootstrap Fonts
*/
@@ -44,6 +45,11 @@
color: #000;
padding: 0.2em 0;
}

<% if (filters.i18nSupport) { %>
@import '../components/i18n/flags.css';
<% } %>

<% if(!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
3 changes: 3 additions & 0 deletions templates/app/client/app/app(less).less
Original file line number Diff line number Diff line change
@@ -15,6 +15,9 @@
color: #000;
padding: 0.2em 0;
}
<% if (filters.i18nSupport) { %>
@import '../components/i18n/flags.less';
<% } %>
<% if(!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
3 changes: 3 additions & 0 deletions templates/app/client/app/app(sass).scss
Original file line number Diff line number Diff line change
@@ -19,6 +19,9 @@ $fa-font-path: '/assets/fonts/font-awesome/';
color: #000;
padding: 0.2em 0;
}
<% if (filters.i18nSupport) { %>
@import '../components/i18n/flags.scss';
<% } %>
<% if(!filters.bootstrap) { %>
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
3 changes: 3 additions & 0 deletions templates/app/client/app/app(stylus).styl
Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@ $icon-font-path = '../assets/fonts/bootstrap/'
color #000
margin 0.2em 0
padding 0.2em 0
<% if (filters.i18nSupport) { %>
@import '../components/i18n/flags.styl';
<% } %>
<% if(!filters.bootstrap) { %>
// Responsive: Portrait tablets and up
@media screen and (min-width: 768px)