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

628: Support XLIFF tags in android imports. #636

Merged
merged 17 commits into from Mar 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion assets/css/style.css
Expand Up @@ -396,7 +396,12 @@ span.morethan90 {

.editor .strings {
float: left;
width: 60%;
min-width: 60%;
}

.editor .strings .textareas textarea {
width: 95%;
resize: vertical;
}

.editor .strings p.plural-numbers {
Expand All @@ -420,6 +425,7 @@ span.morethan90 {

.editor .meta {
float: left;
width: 35%;
margin-left: 2em;
}

Expand Down
2 changes: 1 addition & 1 deletion assets/css/style.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gp-includes/assets-loader.php
Expand Up @@ -15,7 +15,7 @@ function gp_register_default_styles() {
$suffix = SCRIPT_DEBUG ? '.css' : '.min.css';

// Register our base style.
wp_register_style( 'gp-base', $url . '/style' . $suffix, array(), '20170110' );
wp_register_style( 'gp-base', $url . '/style' . $suffix, array(), '20170221' );

// Register the table sorter theme style.
wp_register_style( 'tablesorter-theme', $url . '/tablesorter.theme.glotpress' . $suffix, array(), '20161011' );
Expand Down