Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
54217ea5
Commit
54217ea5
authored
9 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
i18n: advise the translators about the maximum length of some strings
parent
ba38d61f
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/files.c
+4
-5
src/files.c
with
4 additions
and
5 deletions
+4
-5
src/files.c
View file @
54217ea5
...
...
@@ -149,7 +149,7 @@ void set_modified(void)
return
;
if
(
openfile
->
lock_filename
==
NULL
)
{
/* TRANSLATORS:
Try to keep thi
s at most 76 characters. */
/* TRANSLATORS:
Keep the next two message
s at most 76 characters. */
statusbar
(
_
(
"Warning: Modifying a file which is not locked,"
" check directory permission?"
));
}
else
{
...
...
@@ -934,13 +934,12 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw
if
(
format
==
3
)
{
if
(
writable
)
statusbar
(
P_
(
"Read %lu line (Converted from DOS and Mac format)"
,
statusbar
(
P_
(
"Read %lu line (Converted from DOS and Mac format)"
,
"Read %lu lines (Converted from DOS and Mac format)"
,
(
unsigned
long
)
num_lines
),
(
unsigned
long
)
num_lines
);
else
statusbar
(
P_
(
"Read %lu line (Converted from DOS and Mac format - NO write permission)"
,
/* TRANSLATORS: Keep the next handful of messages at most 76 characters long. */
statusbar
(
P_
(
"Read %lu line (Converted from DOS and Mac format - NO write permission)"
,
"Read %lu lines (Converted from DOS and Mac format - NO write permission)"
,
(
unsigned
long
)
num_lines
),
(
unsigned
long
)
num_lines
);
}
else
if
(
format
==
2
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help