-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
055cdf0
commit 694a0f1
Showing
49 changed files
with
3,514 additions
and
2,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: 'airbnb-base', | ||
overrides: [ | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
rules: { | ||
'prefer-arrow-callback': 'off', | ||
'func-names': 'off', | ||
camelcase: 'off', | ||
'max-len': 'off', | ||
}, | ||
ignorePatterns: ['tests/**', 'node_modules/**'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Translating BMLT Workflow | ||
|
||
## Instructions for translators | ||
Translation is a great way to help the BMLT Workflow project in a less technical way, and help us get the plugin to as many people as possible. | ||
|
||
Main instructions for translation will be kept here: https://github.com/bmlt-enabled/bmlt-workflow/wiki/Translating-BMLT-Workflow | ||
|
||
Short summary: | ||
|
||
- fork or clone https://github.com/bmlt-enabled/bmlt-workflow.git | ||
- lang/bmlt-workflow.pot contains the base pot file, with file inclusions, exclusions and paths | ||
- create or edit the .po files for your language with PoEdit or similar tool | ||
- save your .po file to the lang folder | ||
- create a pull request against the main branch with your updated po file containing translations | ||
- we'll do the rest! |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ done | |
|
||
wp db create | ||
wp core install --url=$URL --title="hi" --admin_user=admin --admin_password=admin [email protected] --path=/var/www/html | ||
wp language core install fr_FR | ||
|
||
mkdir /var/www/html/wp-content/plugins/bmlt-workflow | ||
sync-plugin.sh | ||
|
Oops, something went wrong.