Changeset fa041118ca87df7b42253608d02ff8a77f3743d0
- Timestamp:
- 12/18/10 00:02:53 (3 years ago)
- Author:
- Nikita Zlobin <cook60020tmp@…>
- Children:
- dcef7c7f31ef3ea0b6003c59436b637216c3d494
- Parents:
- 9314c44fb4da598c7b090c13582c906b8b7a26a4
- git-committer:
- Nikita Zlobin <cook60020tmp@mail.ru> / 2010-12-18T03:02:53Z+0500
- Message:
-
translation: Plural forms support
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r71c1784
|
rfa04111
|
|
| 119 | 119 | if (jack_proxy_get_xruns(&xruns)) |
| 120 | 120 | { |
| 121 | | snprintf(tmp_buf, sizeof(tmp_buf), _("%" PRIu32 " dropouts"), xruns); |
| | 121 | snprintf(tmp_buf, sizeof(tmp_buf), |
| | 122 | ngettext("%"PRIu32" dropout", |
| | 123 | "%"PRIu32" dropouts", |
| | 124 | xruns), xruns); |
| | 125 | |
| 122 | 126 | set_xruns_text(tmp_buf); |
| 123 | 127 | gtk_progress_bar_set_text(GTK_PROGRESS_BAR(g_xrun_progress_bar), tmp_buf); |