View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0017105 | Scribus | Usability | public | 2024-01-03 17:09 | 2024-01-07 16:24 |
| Reporter | pmjdebruijn | Assigned To | cbradney | ||
| Priority | low | Severity | trivial | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | 1.6.0 | ||||
| Fixed in Version | 1.6.1.svn | ||||
| Summary | 0017105: PDF/X accurate versions | ||||
| Description | PDF/X-1a and PDF/X-3 have seperate subversions, Scribus supports the 2001/2002 variants (respectively) based on PDF-1.3, while there are later versions that are based on PDF-1.4. The export GUI is rather ambiguous about this, so please consider the attached patch. | ||||
| Additional Information | The following seems to indicate that changing these strings won't break translations in a practical way: grep --color -A1 '<source>PDF/X-1a</source>' resources/translations/*.ts grep --color -A1 '<source>PDF/X-3</source>' resources/translations/*.ts | ||||
| Tags | No tags attached. | ||||
| Attached Files | pdf-version-strings.patch (594 bytes)
diff --git a/scribus/ui/pdfversionmodel.cpp b/scribus/ui/pdfversionmodel.cpp
index d96623de4..2526c00aa 100644
--- a/scribus/ui/pdfversionmodel.cpp
+++ b/scribus/ui/pdfversionmodel.cpp
@@ -43,9 +43,9 @@ QVariant PdfVersionModel::data(const QModelIndex &index, int role) const
if (row == ItemPDF_16)
return tr("PDF 1.6 (Acrobat 7)");
if (row == ItemPDFX_1a)
- return tr("PDF/X-1a");
+ return tr("PDF/X-1a:2001");
if (row == ItemPDFX_3)
- return tr("PDF/X-3");
+ return tr("PDF/X-3:2002");
if (row == ItemPDFX_4)
return tr("PDF/X-4");
return QVariant();
| ||||
| Patch | Yes | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2024-01-03 17:09 | pmjdebruijn | New Issue | |
| 2024-01-03 17:09 | pmjdebruijn | File Added: pdf-version-strings.patch | |
| 2024-01-05 21:42 | cbradney | Assigned To | => cbradney |
| 2024-01-05 21:42 | cbradney | Status | new => resolved |
| 2024-01-05 21:42 | cbradney | Resolution | open => fixed |
| 2024-01-05 21:42 | cbradney | Fixed in Version | => 1.6.1.svn |
| 2024-01-05 21:42 | cbradney | Note Added: 0050836 | |
| 2024-01-07 16:24 | cbradney | Status | resolved => closed |