1/*
2 * IP Address Conflict Dialogue Strings
3 *
4 * This file contains strings used in the IP address conflict CFUserNotification
5 * dialogue.
6 *
7 */
8
9/*
10 * CONFLICT_HEADER_BEFORE_IP, CONFLICT_HEADER_AFTER_IP
11 *
12 * The CFUserNotification (CFUN) presents the alert using the appropriate
13 * localization for the logged-in user.
14 *
15 * The alert header includes the IP address that is in conflict.  Since the IP
16 * address is variable, the natural solution would be to use a format
17 * string.  We can't use that in this case because a CFUN does not allow a
18 * format string with args.
19 *
20 * Instead, we break up the header into three pieces:
21 * 1) the string portion before the IP address (CONFLICT_HEADER_BEFORE_IP)
22 * 2) the IP addresss (dynamic information)
23 * 3) the string portion after the IP address (CONFLICT_HEADER_AFTER_IP).
24 * and pass an array of these three pieces to the CFUN.
25 *
26 * For example, if the conflicting IP address is 17.202.42.109, the values
27 * passed to the CFUN as an array are:
28 * {
29 *   "CONFLICT_HEADER_BEFORE_IP",
30 *   "17.202.42.109",
31 *   "CONFLICT_HEADER_AFTER_IP"
32 * }
33 */
34"CONFLICT_HEADER_BEFORE_IP" = "Another device on the network is using your computer’s IP address (";
35"CONFLICT_HEADER_AFTER_IP" = ").";
36
37/*
38 * CONFLICT_MESSAGE
39 *   The body of the CFUN alert
40 */
41"CONFLICT_MESSAGE" = "Try connecting again later. If you continue to have problems, change the IP address of this computer or the IP address of the other device. Contact the network administrator if you need more information.";
42
43/*
44 * Buttons:
45 *	OK
46 */
47"OK" = "OK";
48