~ubuntu-branches/ubuntu/maverick/kdegraphics/maverick-proposed

« back to all changes in this revision

Viewing changes to strigi-analyzer/rgb/kfile_rgb.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-12-02 14:03:43 UTC
  • mfrom: (1.1.35 upstream)
  • Revision ID: james.westby@ubuntu.com-20091202140343-2732gbkj69g89arq
Tags: 4:4.3.80-0ubuntu1
* New upstream beta release:
  - Add build-depend on shared-desktop-ontologies for nepomuk integration
  - Bump .so versions for libkexiv, libkdcraw and libkipi
  - Update various .install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
                appendItem(group, "ColorMode", i18n("RGB/Alpha"));
130
130
 
131
131
        if (!storage)
132
 
                appendItem(group, "Compression", i18n("Uncompressed"));
 
132
                appendItem(group, "Compression", i18nc("Compression", "Uncompressed"));
133
133
        else if (storage == 1) {
134
134
                long compressed = file.size() - 512;
135
135
                long verbatim = xsize * ysize * zsize;
136
 
                appendItem(group, "Compression", i18n("Runlength Encoded")
 
136
                appendItem(group, "Compression", i18nc("Compression", "Runlength Encoded")
137
137
                                + QString(", %1%").arg(compressed * 100.0 / verbatim, 0, 'f', 1));
138
138
 
139
139
                long k;
155
155
                        appendItem(group, "SharedRows", QString("%1%").arg(k * 100.0
156
156
                                        / (ysize * zsize), 0, 'f', 1));
157
157
                else
158
 
                        appendItem(group, "SharedRows", i18n("None"));
 
158
                        appendItem(group, "SharedRows", i18nc("SharedRows", "None"));
159
159
        } else
160
 
                appendItem(group, "Compression", i18n("Unknown"));
 
160
                appendItem(group, "Compression", i18nc("Compression", "Unknown"));
161
161
 
162
162
 
163
163
        group = appendGroup(info, "Comment");