2008-09-28 10:50:10 +00:00
LANGUAGE LANG_INDONESIAN, SUBLANG_DEFAULT
[NETSHELL] IDD_NETPROPERTIES must fit 640x480 CORE-19284 (#5899)
- adds 3 missing accelerators for zh-CN.rc, zh-HK.rc, zh-TW.rc for IDC_SHOWTASKBAR
- shrinks the dialog in y to fit on a 640x480 screen, like the XPSP3 and 2k3sp2 dlgs do
- for that some controls positions have to be slightly moved up (which cannot lead to text truncation here, guaranteed)
- only 3 controls change in size:
- IDC_COMPONENTSLIST gets 3 units smaller in height, but is still larger than in XPSP3/2k3sp2. So it is still large enough
- IDC_NETCARDNAME shrinks a bit in width, but is still larger than in XPSP3/2k3sp2, so what fits there will also fit for us
- pushbutton IDC_CONFIGURE is slightly increased in width for all languages because that looks better
except ru-RU.rc (which had the largest width) it is slightly smaller now, but still large enough.
We can use the same width here now for all rcs!
- strip the lorem ipsum text from IDC_DESCRIPTION, which is never supposed to be displayed. That syncs all rcs in that line and slightly shrinks the binary size and fixes CORE-19284.
- add a FIXME comment for a missing accelerator in sv-SE.rc
*as a consequence all rcs do now use the exact same positions and sizes for all controls again, YIPPIE!*
The only exception that the dlg had before from that rule, was the ru-RU.rc IDC_CONFIGURE was larger in x.
But now that is not needed anymore.
2023-11-06 23:31:37 +00:00
IDD_NETPROPERTIES DIALOGEX 0, 0, 246, 216
2013-11-28 22:18:05 +00:00
STYLE DS_SHELLFONT | WS_CHILD | WS_CAPTION
2008-09-28 10:50:10 +00:00
CAPTION "Umum"
FONT 8, "MS Shell Dlg"
BEGIN
[NETSHELL] IDD_NETPROPERTIES must fit 640x480 CORE-19284 (#5899)
- adds 3 missing accelerators for zh-CN.rc, zh-HK.rc, zh-TW.rc for IDC_SHOWTASKBAR
- shrinks the dialog in y to fit on a 640x480 screen, like the XPSP3 and 2k3sp2 dlgs do
- for that some controls positions have to be slightly moved up (which cannot lead to text truncation here, guaranteed)
- only 3 controls change in size:
- IDC_COMPONENTSLIST gets 3 units smaller in height, but is still larger than in XPSP3/2k3sp2. So it is still large enough
- IDC_NETCARDNAME shrinks a bit in width, but is still larger than in XPSP3/2k3sp2, so what fits there will also fit for us
- pushbutton IDC_CONFIGURE is slightly increased in width for all languages because that looks better
except ru-RU.rc (which had the largest width) it is slightly smaller now, but still large enough.
We can use the same width here now for all rcs!
- strip the lorem ipsum text from IDC_DESCRIPTION, which is never supposed to be displayed. That syncs all rcs in that line and slightly shrinks the binary size and fixes CORE-19284.
- add a FIXME comment for a missing accelerator in sv-SE.rc
*as a consequence all rcs do now use the exact same positions and sizes for all controls again, YIPPIE!*
The only exception that the dlg had before from that rule, was the ru-RU.rc IDC_CONFIGURE was larger in x.
But now that is not needed anymore.
2023-11-06 23:31:37 +00:00
CONTROL "", IDC_COMPONENTSLIST, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP, 9, 51, 230, 52
2013-11-28 22:18:05 +00:00
LTEXT "Sambung Menggunakan:", -1, 9, 9, 217, 8
[NETSHELL] IDD_NETPROPERTIES must fit 640x480 CORE-19284 (#5899)
- adds 3 missing accelerators for zh-CN.rc, zh-HK.rc, zh-TW.rc for IDC_SHOWTASKBAR
- shrinks the dialog in y to fit on a 640x480 screen, like the XPSP3 and 2k3sp2 dlgs do
- for that some controls positions have to be slightly moved up (which cannot lead to text truncation here, guaranteed)
- only 3 controls change in size:
- IDC_COMPONENTSLIST gets 3 units smaller in height, but is still larger than in XPSP3/2k3sp2. So it is still large enough
- IDC_NETCARDNAME shrinks a bit in width, but is still larger than in XPSP3/2k3sp2, so what fits there will also fit for us
- pushbutton IDC_CONFIGURE is slightly increased in width for all languages because that looks better
except ru-RU.rc (which had the largest width) it is slightly smaller now, but still large enough.
We can use the same width here now for all rcs!
- strip the lorem ipsum text from IDC_DESCRIPTION, which is never supposed to be displayed. That syncs all rcs in that line and slightly shrinks the binary size and fixes CORE-19284.
- add a FIXME comment for a missing accelerator in sv-SE.rc
*as a consequence all rcs do now use the exact same positions and sizes for all controls again, YIPPIE!*
The only exception that the dlg had before from that rule, was the ru-RU.rc IDC_CONFIGURE was larger in x.
But now that is not needed anymore.
2023-11-06 23:31:37 +00:00
EDITTEXT IDC_NETCARDNAME, 9, 21, 165, 12, WS_BORDER | WS_TABSTOP | ES_READONLY
PUSHBUTTON "&Konfigurasi", IDC_CONFIGURE, 179, 20, 60, 14
LTEXT "Komponen yang dicentang digunakan oleh sambungan ini:", -1, 9, 39, 217, 8
PUSHBUTTON "&Instalasi", IDC_INSTALL, 9, 105, 65, 14, WS_DISABLED | WS_TABSTOP
PUSHBUTTON "&Deinstalasi", IDC_UNINSTALL, 90, 105, 65, 14, WS_DISABLED | WS_TABSTOP
PUSHBUTTON "&Properti", IDC_PROPERTIES, 174, 105, 65, 14
GROUPBOX "Deskripsi", -1, 9, 128, 230, 46, BS_GROUPBOX
LTEXT "", IDC_DESCRIPTION, 15, 140, 217, 28, WS_GROUP
AUTOCHECKBOX "Tampilkan Ikon di taskbar saat tersambung", IDC_SHOWTASKBAR, 9, 181, 230, 12, WS_TABSTOP
AUTOCHECKBOX "&Notify me when this connection has limited or no connectivity", IDC_NOTIFYNOCONNECTION, 9, 195, 230, 20, BS_MULTILINE | BS_TOP | WS_TABSTOP
2008-09-28 10:50:10 +00:00
END
[NETSHELL] 640x480-ify complete that module (#6109)
Addendum to (#5899)
The change in sk-SK.rc
IDD_NETPROPERTIES DIALOGEX 0, 0, 246, 246
to
IDD_NETPROPERTIES DIALOGEX 0, 0, 246, 216
is an addendum to (#5899). In sk-SK.rc that line was accidentally forgotten to be changed.
The change to "all" rc's:
IDD_STATUS DIALOGEX 0, 0, 200, 280
to
IDD_STATUS DIALOGEX 0, 0, 200, 180
changes the last dialog, that had a greater value here than 220 (which is the max we can use for 640x480-ability).
I decided to use 180 for 2 reasons:
1.) bg-BG.rc already used IDD_STATUS DIALOGEX 0, 0, 200, 180 here, so we can sync all langs to that.
2.) We have some dialogs nearby which do use that same dimension for all langs, e.g.:
IDD_LAN_NETSTATUS DIALOGEX 0, 0, 200, 180
IDD_LAN_NETSTATUSADVANCED DIALOGEX 0, 0, 200, 180
2023-12-03 21:35:57 +00:00
IDD_STATUS DIALOGEX 0, 0, 200, 180
2015-06-17 17:32:48 +00:00
STYLE DS_SHELLFONT | WS_POPUP | WS_CAPTION | DS_MODALFRAME | WS_SYSMENU
2008-09-28 10:50:10 +00:00
CAPTION "Allgemein"
FONT 8, "MS Shell Dlg"
BEGIN
END
2013-11-28 22:18:05 +00:00
IDD_LAN_NETSTATUS DIALOGEX 0, 0, 200, 180
STYLE DS_SHELLFONT | WS_CHILD | WS_CAPTION
2008-09-28 10:50:10 +00:00
CAPTION "Umum"
FONT 8, "MS Shell Dlg"
BEGIN
2020-04-19 00:58:59 +00:00
GROUPBOX "Sambungan", -1, 9, 8, 190, 58, BS_GROUPBOX
LTEXT "Status:", -1, 22, 20, 65, 8
LTEXT "Durasi:", -1, 22, 34, 65, 8
LTEXT "Kecepatan:", -1, 22, 48, 65, 8
GROUPBOX "Aktivitas", -1, 9, 74, 190, 70, BS_GROUPBOX
LTEXT "Dikirim", -1, 60, 90, 60, 8
2012-03-03 19:29:06 +00:00
ICON "", IDC_NETSTAT, 110, 85, 32, 32
2020-04-19 00:58:59 +00:00
RTEXT "Diterima", -1, 146, 90, 44, 8
LTEXT "Bytes:", -1, 22, 115, 32, 8
LTEXT "000.000.000", IDC_SEND, 60, 115, 44, 8
RTEXT "000.000.000", IDC_RECEIVED, 146, 115, 44, 8
PUSHBUTTON "&Properti", IDC_STATUS_PROPERTIES, 10, 150, 60, 14
PUSHBUTTON "&Dimatikan", IDC_ENDISABLE, 76, 150, 60, 14
RTEXT "", IDC_STATUS, 90, 20, 100, 8
RTEXT "", IDC_DURATION, 90, 34, 100, 8
RTEXT "", IDC_SPEED, 90, 48, 100, 8
2008-09-28 10:50:10 +00:00
END
2013-11-28 22:18:05 +00:00
IDD_LAN_NETSTATUSADVANCED DIALOGEX 0, 0, 200, 180
2008-09-28 10:50:10 +00:00
STYLE DS_SHELLFONT | WS_CHILD | WS_DISABLED | WS_CAPTION
CAPTION "Dukungan"
FONT 8, "MS Shell Dlg"
BEGIN
2014-02-02 19:49:28 +00:00
GROUPBOX "Status Sambungan", -1, 9, 8, 190, 88, BS_GROUPBOX
2012-03-03 19:29:06 +00:00
LTEXT "Tipe Alamat:", -1, 22, 20, 80, 8
LTEXT "Alamat IP:", -1, 22, 34, 80, 8
LTEXT "SubNet mask:", -1, 22, 48, 80, 8
LTEXT "Gateway standar:", -1, 22, 62, 80, 8
2020-04-19 00:58:59 +00:00
RTEXT "N/A", IDC_DETAILSTYPE, 110, 20, 80, 8
RTEXT "000.000.000.000", IDC_DETAILSIP, 110, 34, 80, 8
RTEXT "000.000.000.000", IDC_DETAILSSUBNET, 110, 48, 80, 8
RTEXT "", IDC_DETAILSGATEWAY, 110, 62, 80, 8
2012-03-03 19:29:06 +00:00
PUSHBUTTON "&Detil...", IDC_DETAILS, 22, 76, 62, 14
2008-09-28 10:50:10 +00:00
END
2014-02-02 19:49:28 +00:00
IDD_LAN_NETSTATUSDETAILS DIALOGEX 0, 0, 190, 175
2015-06-17 17:32:48 +00:00
STYLE DS_SHELLFONT | WS_POPUP | WS_CAPTION | DS_MODALFRAME
2008-10-22 17:46:55 +00:00
CAPTION "Network Connection Details"
FONT 8, "MS Shell Dlg"
BEGIN
2014-02-02 19:49:28 +00:00
LTEXT "Network Connection &Details:", -1, 10, 4, 170, 12
CONTROL "", IDC_DETAILS, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP, 10, 15, 170, 130
PUSHBUTTON "&Close", IDC_CLOSE, 120, 155, 60, 14
2008-10-22 17:46:55 +00:00
END
2017-03-09 22:39:26 +00:00
IDD_NETWORKSETTINGSPAGE DIALOGEX 0, 0, 317, 143
2016-05-17 22:38:58 +00:00
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "ReactOS Setup"
FONT 8, "MS Shell Dlg"
BEGIN
ICON IDI_NET_SETUP, IDC_STATIC, 21, 10, 20, 20
LTEXT "Choose whether to use typical or custom settings:", IDC_STATIC, 53, 7, 240, 20
2023-03-13 22:03:54 +00:00
AUTORADIOBUTTON "Typical Settings", IDC_NETWORK_TYPICAL, 53, 27, 253, 18, WS_TABSTOP | WS_GROUP
AUTORADIOBUTTON "Custom Settings", IDC_NETWORK_CUSTOM, 53, 72, 253, 18, WS_TABSTOP
2016-10-01 09:43:24 +00:00
LTEXT "Creates network connections using the Client for ReactOS Networks, File and Print Sharing for ReactOS Networks, and the TCP/IP transport protocol with automatic addressing.", IDC_STATIC, 65, 45, 240, 30
2016-05-17 22:38:58 +00:00
LTEXT "Allows you to manually configure network components.", IDC_STATIC, 65, 90, 243, 20
END
2017-03-09 22:39:26 +00:00
IDD_NETWORKCOMPONENTPAGE DIALOGEX 0, 0, 317, 143
2016-05-17 22:38:58 +00:00
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "ReactOS Setup"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "For Device:", IDC_STATIC, 33, 2, 100, 20
LTEXT "n/a", IDC_NETWORK_DEVICE, 75, 2, 253, 20
LTEXT "Components checked are used by this connection:", IDC_STATIC, 33, 12, 253, 20
CONTROL "", IDC_COMPONENT_LIST, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOCOLUMNHEADER | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP, 33, 22, 250, 50
PUSHBUTTON "&Install...", IDC_NETWORK_INSTALL, 122, 75, 50, 14, WS_DISABLED | WS_TABSTOP
PUSHBUTTON "&Uninstall", IDC_NETWORK_UNINSTALL, 177, 75, 50, 14, WS_DISABLED | WS_TABSTOP
PUSHBUTTON "&Properties", IDC_NETWORK_PROPERTIES, 232, 75, 50, 14, WS_DISABLED | WS_TABSTOP
GROUPBOX "Description", IDC_STATIC, 33, 90, 250, 50, BS_GROUPBOX
END
2017-03-09 22:39:26 +00:00
IDD_NETWORKDOMAINPAGE DIALOGEX 0, 0, 317, 143
2016-05-17 22:38:58 +00:00
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "ReactOS Setup"
FONT 8, "MS Shell Dlg"
BEGIN
LTEXT "Do you want this computer to be a member of a domain?\n\
2016-10-01 09:43:24 +00:00
(You can obtain this information from your network administrator.)", IDC_STATIC, 33, 2, 263, 50
2021-12-21 12:40:54 +00:00
AUTORADIOBUTTON "No, this computer will be part of a workgroup instead.", IDC_SELECT_WORKGROUP, 33, 32, 253, 20, WS_TABSTOP | WS_GROUP
2016-05-17 22:38:58 +00:00
AUTORADIOBUTTON "Yes, this computer will be part of a domain.", IDC_SELECT_DOMAIN, 33, 47, 253, 20, WS_TABSTOP
LTEXT "Workgroup or Domain Name:", IDC_STATIC, 33, 72, 126, 14
EDITTEXT IDC_DOMAIN_NAME, 33, 82, 126, 14, WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL
LTEXT "NOTE: If this computer isn't going to be part of a network, you don't have sufficient rights to join a domain, or you don't know what to enter, then just choose workgroup for now. These options can be changed at a later time.", IDC_STATIC, 33, 107, 263, 50
END
2013-10-13 22:31:17 +00:00
STRINGTABLE
2008-09-28 10:50:10 +00:00
BEGIN
2013-11-28 22:18:05 +00:00
IDS_PHYSICAL_ADDRESS "Physical Address"
IDS_IP_ADDRESS "IP Address"
IDS_SUBNET_MASK "Subnet Mask"
IDS_DEF_GATEWAY "Default Gateway"
IDS_DHCP_SERVER "DHCP Server"
IDS_LEASE_OBTAINED "Lease Obtained"
IDS_LEASE_EXPIRES "Lease Expires"
IDS_DNS_SERVERS "DNS Servers"
IDS_WINS_SERVERS "WINS Servers"
IDS_PROPERTY "Property"
IDS_VALUE "Value"
2015-01-11 15:12:34 +00:00
IDS_NETWORKCONNECTION "Network Connections"
2013-11-28 22:18:05 +00:00
IDS_SHV_COLUMN_NAME "Name"
IDS_SHV_COLUMN_TYPE "Type"
IDS_SHV_COLUMN_STATE "Status"
IDS_SHV_COLUMN_DEVNAME "Device Name"
IDS_SHV_COLUMN_PHONE "Phone # or Host Address"
IDS_SHV_COLUMN_OWNER "Owner"
IDS_TYPE_ETHERNET "LAN or High-Speed Internet"
IDS_STATUS_NON_OPERATIONAL "Disabled"
IDS_STATUS_UNREACHABLE "Not Connected"
IDS_STATUS_DISCONNECTED "Network cable unplugged"
IDS_STATUS_CONNECTING "Acquiring network address"
IDS_STATUS_CONNECTED "Connected"
IDS_STATUS_OPERATIONAL "Connected"
IDS_NET_ACTIVATE "Enable"
IDS_NET_DEACTIVATE "Disable"
IDS_NET_STATUS "Status"
IDS_NET_REPAIR "Repair"
IDS_NET_CREATELINK "Create Shortcut"
IDS_NET_DELETE "Delete"
IDS_NET_RENAME "Rename"
IDS_NET_PROPERTIES "Properties"
IDS_FORMAT_BIT "%u Bit/s"
IDS_FORMAT_KBIT "%u KBit/s"
IDS_FORMAT_MBIT "%u MBit/s"
IDS_FORMAT_GBIT "%u GBit/s"
IDS_DURATION_DAY "%d Day %s"
IDS_DURATION_DAYS "%d Days %s"
IDS_ASSIGNED_DHCP "Assigned by DHCP"
IDS_ASSIGNED_MANUAL "Manually configured"
2008-09-28 10:50:10 +00:00
END
2016-05-17 22:38:58 +00:00
STRINGTABLE
BEGIN
IDS_NETWORKSETTINGSTITLE "Network Settings"
IDS_NETWORKSETTINGSSUBTITLE "Installs network software used to connect to other networks, computers, and the Internet."
IDS_NETWORKCOMPONENTTITLE "Network Components"
IDS_NETWORKCOMPONENTSUBTITLE "Determine which networking components are used on your computer. To add new components, click on Install."
IDS_NETWORKDOMAINTITLE "Workgroup or Computer Domain"
2016-10-01 09:43:24 +00:00
IDS_NETWORKDOMAINSUBTITLE "A domain is a group of computers defined by a network administrator. A workgroup is a group of computers sharing the same workgroup name."
2016-05-17 22:38:58 +00:00
IDS_REACTOS_SETUP "ReactOS Setup"
IDS_WZD_DOMAIN_NAME "Setup cannot continue until you\nenter the name of your domain\nor workgroup."
END