forked from MidnightCommander/mc
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Makevars: Rewrote the MSGMERGE flags selection so that the
--no-location can be overridden more easily.
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2005-07-03 Roland Illig <[email protected]> | ||
|
||
* Makevars: Rewrote the MSGMERGE flags selection so that the | ||
--no-location can be overridden more easily. | ||
|
||
2005-07-03 Roland Illig <[email protected]> | ||
|
||
* hu.po: Updated hungarian translation, provided by Arpad Biro | ||
|
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 |
---|---|---|
|
@@ -40,6 +40,7 @@ MSGID_BUGS_ADDRESS = [email protected] | |
# message catalogs shall be used. It is usually empty. | ||
EXTRA_LOCALE_CATEGORIES = | ||
|
||
# Suppress location information | ||
MSGMERGE = msgmerge --no-location | ||
MSGMERGE_UPDATE = msgmerge --update --no-location | ||
# Suppress location information by default | ||
MSGMERGE_FLAGS ?= --no-location | ||
MSGMERGE = msgmerge ${MSGMERGE_FLAGS} | ||
MSGMERGE_UPDATE = msgmerge --update ${MSGMERGE_FLAGS} |