From: Jerome St-Louis Date: Tue, 11 Mar 2014 05:04:43 +0000 (-0400) Subject: ide, licensing: Not prefixing 'unknown' version with a v; More strings to internation... X-Git-Tag: 0.44.10PR1~556 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed8e0bd3dba29b45a67835e61067c390b41fc828;p=sdk ide, licensing: Not prefixing 'unknown' version with a v; More strings to internationalize --- diff --git a/ide/src/about.ec b/ide/src/about.ec index 44e383f..5d8f196 100644 --- a/ide/src/about.ec +++ b/ide/src/about.ec @@ -34,7 +34,7 @@ class AboutIDE : Window occ = strpbrk(shortVersion, "-+( "); if(occ) *occ = '\0'; message = PrintString( - "Ecere Software Development Kit v", shortVersion, " \"Ryōan-ji\"" X64STRING "\n" + "Ecere Software Development Kit ", strcmp(shortVersion, "unknown") ? "v" : "", shortVersion, " \"Ryōan-ji\"" X64STRING "\n" "Build " REPOSITORY_VERSION "\n" "Copyright © 2005-2014 Ecere Corporation\n" "Copyright © 1996-2014 Jérôme Jacovella-St-Louis"); diff --git a/ide/src/licensing.ec b/ide/src/licensing.ec index c4b9396..ff880e9 100644 --- a/ide/src/licensing.ec +++ b/ide/src/licensing.ec @@ -35,7 +35,7 @@ class LicenseTab : Tab class LicensesForm : Window { - caption = "License Agreements"; + caption = $"License Agreements"; background = formColor; borderStyle = sizable; hasClose = true; @@ -50,12 +50,12 @@ class LicensesForm : Window Label label1 { this, anchor = { top = 16 }, font = { "Tahoma", 10, true }; - caption = "This program is based on these free open source software components."; + caption = $"This program is based on these free open source software components."; }; Label label2 { this, anchor = { top = 32 }, font = { "Tahoma", 10, true }; - caption = "By using it you agree to the terms and conditions of their individual licenses."; + caption = $"By using it you agree to the terms and conditions of their individual licenses."; }; LicenseTab ecereTab {