Commit graph

1949 commits

Author SHA1 Message Date
Kevin Scannell
fce3d93399 Irish translation back to 100% 2017-12-30 07:20:24 -06:00
joe
dbc3204ae2 Aragones 296 translated 0 untranslated 2017-12-29 13:11:44 +01:00
joe
75b31d12c0 Chinese 268 translated 28 untranslated 2017-12-27 23:55:47 +01:00
joe
7a32179098 Aragnoes 296 translated 1 untranslated 2017-12-27 23:47:51 +01:00
joe
36aed0d7a8 Croatian 296 translated 0 untranslated 2017-12-27 23:29:32 +01:00
joe
28898331f0 Slovenian 296 translated 0 untranslated 2017-12-27 23:21:24 +01:00
joe
6736bfc7ce Italian 296 translated strings 2017-12-26 00:18:56 +01:00
joe
eeec017ebf Japanese 296 translated strings 2017-12-25 23:09:32 +01:00
joe
1b346bfd83 Russian 296 translated strings 2017-12-25 22:58:35 +01:00
joe
4999e0855e German 296 translated strings 2017-12-25 22:50:20 +01:00
joe
471b8036c0 Kabyle 296 translated strings 2017-12-25 15:00:27 +01:00
Mark K. Kim
75f0580e95 Merge branch 'master' of ssh://git.code.sf.net:/p/tuxpaint/tuxpaint 2017-12-21 23:49:20 -05:00
Mark K. Kim
912cd2e625 Fix text not displaying on systems without Fontconfig installed. 2017-12-20 23:19:19 -05:00
joe
a803e1d411 Georgian update 296 translated strings 2017-12-20 23:22:16 +01:00
joe
8d86c090d5 Portuguese update 296 translated strings 2017-12-19 23:24:47 +01:00
joe
c38896be5d Spanish updates after poabc 2017-12-19 21:59:31 +01:00
joe
21d55943b9 Greece 296 translated strings 2017-12-19 21:55:12 +01:00
joe
7018ff08d4 Songhay 296 translated strings 2017-12-19 21:41:46 +01:00
joe
bed13e6a05 Icelandic 296 translated strings 2017-12-19 21:33:40 +01:00
joe
5e8d625d94 Swedish 296 translated strings 2017-12-18 20:25:43 +01:00
joe
328158b33a Spanish 296 translated strings 2017-12-18 19:37:04 +01:00
joe
9b0c9616d7 Scottish Gaelic 296 translated strings 2017-12-18 19:25:33 +01:00
joe
bc583d706f French update 296 translated strings 2017-12-17 20:24:30 +01:00
joe
bce0b6fa06 Galician update 296 translated strings 2017-12-07 22:47:40 +01:00
joe
3e49c99217 Portuguese (Brazilian) update 296 translated strings 2017-12-07 22:08:25 +01:00
joe
c07650cda7 Danish update 296 translated strings 2017-12-05 23:05:44 +01:00
Bill Kendrick
cb10eb0c52 Fulah update 2017-12-03 12:04:31 -08:00
rbuj
c8a65bc158 Updated Catalan translation 2017-12-03 09:19:42 +01:00
Bill Kendrick
974f203c8a Indonesian translation update 2017-12-02 12:46:16 -08:00
Mark K. Kim
558b74b7fc In the macOS build, load stamps from within the app path where the 2009.06.28
stamps collection installer installs the stamps.
2017-11-27 01:16:57 -05:00
Mark K. Kim
472bf79bb9 Trying again... 2017-11-27 01:02:41 -05:00
Mark K. Kim
ea7f013d0d Rework Mac port to be more Linux-like without needing to launch XCode. See
macos/README.txt for information.
2017-11-27 00:56:41 -05:00
Bill Kendrick
af477d714e Ukrainian translation update 2017-10-27 21:09:14 -07:00
Bill Kendrick
1576935455 More compiler warnings
* Adding a missing local function definition.
 * Ensured a var only used during certain #ifdef was only declared under
   that situation.
2017-10-15 15:05:20 -07:00
Bill Kendrick
41e9fbd0c4 More compiler warning cleanup
Mostly removing some unused variables, but also "using" some
of the new temp vars (e.g., "tmp = fgets(...); (void)tmp;")
2017-10-15 15:00:48 -07:00
Bill Kendrick
717b13a866 Correct im.c compiler warnings
* Don't ignore a fscanf()'s output.
 * Rewrite some increment/roll-overs to avoid, e.g.
   src/im.c:1193:18: warning: operation on ‘cm.section’ may be undefined [-Wsequence-point]
        cm.section = (++cm.section % SEC_TOTAL);  /* Change section */
2017-10-15 14:48:31 -07:00
Bill Kendrick
5907713cdd Remove unused reset_brush_counter_and_frame()
reset_brush_counter() gets called, but reset_brush_counter_and_frame()
never does; removing it.
2017-10-15 14:45:22 -07:00
Bill Kendrick
da81a5f32a Compiler warning cleanup in fonts.c
* Use and show error on nice() return value, when appropriate.
 * Remove (comment out, for now) a function that could never be called.
2017-10-15 14:43:20 -07:00
Bill Kendrick
b693003b14 Remove some unused funcs & declarations
Removing more unused functions, and moving a declaration in fonts.h
to fonts.c, since it's not used externally (reliable_read()).
2017-10-15 14:38:52 -07:00
Bill Kendrick
502edda2b1 Remove unused in_circle() func
in_circle() isn't used; in_circle_rad() is.
2017-10-15 14:33:11 -07:00
Bill Kendrick
dc167b4c52 Remove unused funcs remove_slash, replace_tilde
Remove unused funcs remove_slash() (an identical one exists
in win32_print.c) and replace_tilde().
2017-10-15 14:29:12 -07:00
Bill Kendrick
1ae588baf8 More compiler warning cleanup (WIP)
Picking at more compiler warnings.
2017-10-15 13:09:05 -07:00
Bill Kendrick
284a64a08f tuxpaint.c code & warning clean-up (WIP)
- Replace any C++ style comments (// ...) with C style (/* ... */).
 - Improve calls to fgets() to avoid "ignoring return value
   of ‘fscanf’, declared with attribute warn_unused_result
   [-Wunused-result]" errors (WIP).
 - Removed some unused, commented-out code.
2017-10-15 12:57:43 -07:00
Bill Kendrick
f03785e532 indent tuxpaint.c -- the whopper!
The big one we've all been waiting for -- ran indent on tuxpaint.c
(which itself is ~25K lines long, and really needs to be split up).

Hopefully the code will look less atrocious now :-)
2017-10-15 12:16:05 -07:00
Bill Kendrick
5e0d51c771 Sanitized some grid_dims assignments
A number of assignments of grid_dims structs were of the form of
(ignoring some carriage returns, which undoubtedly added to the
confusion):

  gd_controls = (grid_dims) { 3, 2 };

which confused `indent`, causing it to think certain if/else blocks
were being ended early.

Turning these into assignments, like so, to avoid this:

  gd_controls.rows = 3;
  gd_controls.cols = 2;
2017-10-15 12:06:27 -07:00
Bill Kendrick
3e96684bde Pointer assignment syntax tweak
Correcting for a warning given by indent:

  Warning:old style assignment ambiguity in "=*".  Assuming "= *"
2017-10-15 11:55:50 -07:00
Bill Kendrick
527de8bee2 indent win32_print.c win32_print.h 2017-10-15 11:10:29 -07:00
Bill Kendrick
f8c4dc626c indent, and tr -d "\r", win32_dirent.c & .h
Ran indent on win32_dirent.* and also removed MSDOS CR ("^M" aka "\r")
2017-10-15 11:09:17 -07:00
Bill Kendrick
4aabc2da43 indent some .h files
`indent shapes.h sounds.h tip_tux.h titles.h tools.h`, resulted
in some changes to shapes.h, sounds.h, and tools.h
2017-10-15 11:07:09 -07:00
Bill Kendrick
c7c5a53324 indent rgblinear.c rgblinear.h 2017-10-15 11:06:27 -07:00