Gentelella Bootstrap theme rights - twitter-bootstrap-3

I saw this bootstrap template:
https://colorlib.com/polygon/gentelella/index.html
This is the licence: https://github.com/puikinsh/gentelella/blob/master/LICENSE.txt
Can I ask money for logging in if I customize the template?
Thanks in advance,

short answer: yes you can modify. MIT license

Related

How to translate Presta Shop 1.6 when the string does not appear in backoffice?

I have a PrestaShop 1.6 website and i've translated everything to SPANISH and downloaded the lagnguage packs but 4 items remain untranslated. I've search for them in backoffice and they are just not there. I found one, "Viewed Product", and the translation was empty so I proceed to fill it with the desired translation in Spanish, but it just doesn't work.
This are the strings that I cannot find a way to translate: screenshot 1, screenshot 2, screenshot 3.
Have anyone encountered this issue before?
Thank you very much in advance!
These translation have to been altered in the modules and cannot be found in the Theme files.
Prestashop 1.6:
Backoffice > Localization > Translations
For example the "Information" can be found in the Module blockcms

intelliJ Issue Navigation in code comments

With IntelliJ IDEA you can search for a specified regex pattern in VCS checkin comments and have it linked to an issue tracker like YouTrack or JIRA.
Is there a way to do this in the code comments? I know I can stick a huge URL in there and have that linked... but how about just the issue alone? Ex:
// fix this string -- see ACME-2034
$someVar = 'some_problem';
You can use the Plugin Tasks Navigation from the Marketplace.
After you installed the Plugin, you'll have to add your Jira-Server to Tools > Tasks > Servers.
I simply added my Jira-server (e.g. http://my-jira.my-domain.com:8080) without Username and Passwort - I don't want those to be saved in Jira.
In Tools > Tasks > Navigation the check mark Search for issues in comments should already be set.
Now you can CTRL+Klick on anything that looks like a Jira-ID:
see also: Github-Home of the Plugin: https://github.com/VladRassokhin/intellij-tasks-navigate
IntelliJ now supports this in Preferences | Version Control | Issue Navigation.
See https://www.jetbrains.com/help/idea/settings-version-control-issue-navigation.html
The Issue Navigation supports code comments also, not just commit messages.
But it only works with regular grey comments, not with green PHPDoc comments.
https://youtrack.jetbrains.com/issue/WI-50454

ExtJS 5 Custom Theme Testing

I recently started to create custom theme for ExtJS 5 by Sencha.
Following http://docs.sencha.com/extjs/5.0.0/core_concepts/theming.html I managed to create ThemeDemoApp, inherit ext-theme-neptune, change $base-color to green and refresh/rebuild ThemeDemoApp with my-custom-theme. All ok.
My problem is, ThemeDemoApp is quite poor for testing a custom theme. A panel, tab, button and a modal window. That's it?
After bit of googling I bumped into http://dev.sencha.com/ext/5.0.0/examples/themes/index.html. (Why isn't this mentioned in the guide?!) Heading says: View and test every Ext component against bundled Ext Themes, or your own custom themes.
My question is: How? How do I test my own custom theme against this example? Do I have to dig into the source (themes.js) and build such page/application myself?
The examples - including the Theme tester - is included in the ExtJS download.
You can modify the list of themes available by editing the shared/options-toolbar.js file.
To get it to find your theme, you'll either need to name it similar to the others (ext-theme-name), or modify themes.js accordingly.
Or you could just hack the theme.js file to hardcode your theme.
(Ext JS 4 used to create an example page for themes automatically - it doesn't seem to do that now, though)
According to advice at How do I include a JavaScript file in another JavaScript file? I decided to load both options-toolbar.js and themes.js (with just minor modification - commenting out Ext.onReady(...) function in themes.js) and I used functions getBasicPanel(), getCollapsedPanel(), etc. in my own application to create the same testing page (absolute-layout container that fits the page).
Anyhow, I guess Robert's answer is the correct one - there is no prearranged, ready-to-use functionality from Sencha :-(

Code assist - Sencha Touch

I am following this tutorial http://vimeo.com/album/1573372/video/37212149
It seems that there is a way to type "xmodel" and have a standard model's code generated automatically. I am using Webstorm IDE - is there a way of doing this in it, and any configurations I can import?
Thanks
Seems 'Live Templates' is the feature you refer to - it allows expanding abbreviations into code snippets. See http://www.jetbrains.com/webstorm/webhelp/live-templates.html, http://davidtucker.net/articles/live-templates-phpstorm-webstorm/
WebStorm doesn't come with predefined live templates for Sencha, but you can easily create them yourself or search the web for existing templates. See ST2 Power Tools, for example

WebStorm project template

Is there a way to have our own project template. For example I would like to use it with sencha touch2 and create automatically the mvc folders structure for each new project created.
Any experience or help will be welcomed.
I have never personally used, but may be you found it useful Efficient usage of WebStorm IDE
Cheers, Oleg