-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from simonpoole/fix_resources
Use unique ids for strings and colors
- Loading branch information
Showing
8 changed files
with
74 additions
and
73 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
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="color_table_addition">#BFFABD</color> | ||
<color name="color_table_deletion">#F38F8F</color> | ||
<color name="color_table_change">#FBDEDE</color> | ||
<color name="gray">#656262</color> | ||
<color name="white">#FBFBFB</color> | ||
<color name="zed_ehd_color_table_addition">#BFFABD</color> | ||
<color name="zed_ehd_color_table_deletion">#F38F8F</color> | ||
<color name="zed_ehd_color_table_change">#FBDEDE</color> | ||
<color name="zed_ehd_gray">#656262</color> | ||
<color name="zed_ehd_white">#FBFBFB</color> | ||
</resources> |
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 |
---|---|---|
@@ -1,27 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="version">Version #</string> | ||
<string name="created_on">Created on: </string> | ||
<string name="user">User: </string> | ||
<string name="changeset">Changeset: </string> | ||
<string name="source">Source: </string> | ||
<string name="imagery">Imagery: </string> | ||
<string name="version_text">Ver</string> | ||
<string name="version_a">A</string> | ||
<string name="version_b">B</string> | ||
<string name="user_text">User</string> | ||
<string name="date_text">Date</string> | ||
<string name="compare_text">Compare</string> | ||
<string name="exit_text">Exit</string> | ||
<string name="none">(none)</string> | ||
<string name="relation_object_notation">%s %s</string> | ||
<string name="empty_field">-</string> | ||
<string name="key_text">KEY</string> | ||
<string name="no_text">NO.</string> | ||
<string name="role_text">ROLE</string> | ||
<string name="object_text">OBJECT</string> | ||
<string name="nodes_text">NODES</string> | ||
<string name="go_back">Go Back</string> | ||
<string name="selected_element_deleted">The Selected element has been deleted</string> | ||
<string name="select_a_b_toast">Select version A & B for comparison</string> | ||
<string name="zed_ehd_version">Version #</string> | ||
<string name="zed_ehd_created_on">Created on: </string> | ||
<string name="zed_ehd_user">User: </string> | ||
<string name="zed_ehd_changeset">Changeset: </string> | ||
<string name="zed_ehd_source">Source: </string> | ||
<string name="zed_ehd_imagery">Imagery: </string> | ||
<string name="zed_ehd_version_text">Ver</string> | ||
<string name="zed_ehd_version_a">A</string> | ||
<string name="zed_ehd_version_b">B</string> | ||
<string name="zed_ehd_user_text">User</string> | ||
<string name="zed_ehd_date_text">Date</string> | ||
<string name="zed_ehd_compare_text">Compare</string> | ||
<string name="zed_ehd_exit_text">Exit</string> | ||
<string name="zed_ehd_none">(none)</string> | ||
<string name="zed_ehd_relation_object_notation">%s %s</string> | ||
<string name="zed_ehd_empty_field">-</string> | ||
<string name="zed_ehd_key_text">KEY</string> | ||
<string name="zed_ehd_no_text">NO.</string> | ||
<string name="zed_ehd_role_text">ROLE</string> | ||
<string name="zed_ehd_object_text">OBJECT</string> | ||
<string name="zed_ehd_nodes_text">NODES</string> | ||
<string name="zed_ehd_go_back">Go Back</string> | ||
<string name="zed_ehd_selected_element_deleted">The Selected element has been deleted</string> | ||
<string name="zed_ehd_select_a_b_toast">Select version A & B for comparison</string> | ||
<string name="zed_ehd_element_comparison_title">Element Comparison</string> | ||
</resources> |