-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
36 lines (29 loc) · 1.08 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Texter is a utility to help you modify ruby source programs in order to use gettext.
It searches for string literals, displays each and asks you whether it should be
marked as translatable, with _( ). In case the string contains embedded code, it
is able to rewrite it with string modulo operator with your input.
USAGE
texter.rb <input-file> [<output-file>]
output-file is by default named <input-file>.texter.rb
AUTHOR
Yaohan Chen <[email protected]>
LICENSE
Ruby's
CREDITS
- Daniel Brumbaugh Keeney provided much help with the treetop grammar and rest of
the program
BUGS
- Quotes in string-like literals are treated incorrectly as string delimiters,
except in these common cases:
- regexp /.../
- %[qQwr], followed by (), [], {} pairs
- Quotes in $' and $" are treated incorrectly as string delimiters
- Only strings enclosed in ' and " are prompted
- Default answers for yes/no prompts are not working in highline 1.4.0, but patch is
pending for next release
TODO
- Preview
(following probably too difficult)
- Save and restore progress
- Recover from incorrect parsing
- Undo