-
Notifications
You must be signed in to change notification settings - Fork 48
Build improvement and update french translation #395
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
Open
ilhooq
wants to merge
7
commits into
Philip-Scott:master
Choose a base branch
from
ilhooq:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
36dd435
Share build variables with the src code
ilhooq e84e421
Update french translation
ilhooq b50a587
Merge remote-tracking branch 'upstream/master'
ilhooq 764f4e5
Fix command name
ilhooq 864f9b4
Revert : set app id as app name
ilhooq 44b4652
Revert : set the environment application name
ilhooq c082a17
Revert to app id
ilhooq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
4 changes: 2 additions & 2 deletions
4
...m.github.philip_scott.notes-up.desktop.in → data/notes-up.desktop.in
This file contains hidden or 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,10 +1,10 @@ | ||
| [Desktop Entry] | ||
| Name=Notes-Up | ||
| Comment=Your markdown notebook | ||
| Exec=com.github.philip_scott.notes-up %u | ||
| Exec=notes-up %u | ||
| Icon=com.github.philip_scott.notes-up | ||
| Terminal=false | ||
| Type=Application | ||
| StartupNotify=true | ||
| Categories=Office;WordProcessor; | ||
| MimeType=application/x-notesup; | ||
| MimeType=application/x-notesup; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,10 @@ | ||
|
|
||
| namespace Constants { | ||
| public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; | ||
| public const string PROJECT_NAME = @PROJECT_NAME@; | ||
| public const string APP_ID = @APP_ID@; | ||
| public const string VERSION = @VERSION@; | ||
| public const string INSTALL_PREFIX = @PREFIX@; | ||
| public const string DATADIR = @DATADIR@; | ||
| public const string LOCALEDIR = @LOCALEDIR@; | ||
| } |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -19,19 +19,19 @@ | |
| * Authored by: Felipe Escoto <[email protected]> | ||
| */ | ||
|
|
||
| public const string APP_NAME = "Notes-Up"; | ||
| public const string TERMINAL_NAME = "notes-up"; | ||
|
|
||
| public static int main (string[] args) { | ||
| /* Initiliaze gettext support */ | ||
| Intl.setlocale (LocaleCategory.ALL, Intl.get_language_names ()[0]); | ||
| /* Initialize gettext support */ | ||
| GLib.Intl.setlocale (LocaleCategory.ALL, ""); | ||
| GLib.Intl.bindtextdomain (Constants.GETTEXT_PACKAGE, Constants.LOCALEDIR); | ||
| GLib.Intl.bind_textdomain_codeset (Constants.GETTEXT_PACKAGE, "UTF-8"); | ||
| GLib.Intl.textdomain (Constants.GETTEXT_PACKAGE); | ||
|
|
||
| Environment.set_application_name (APP_NAME); | ||
| Environment.set_prgname (APP_NAME); | ||
| // Environment.set_application_name (Constants.PROJECT_NAME); | ||
| // Environment.set_prgname (Constants.PROJECT_NAME); | ||
ilhooq marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| var application = new ENotes.Application (); | ||
|
|
||
| return application.run (args); | ||
| } | ||
|
|
||
|
|
||
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.