aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/util/IdentityHashMap.java
blob: 8dead96c1930e6790e415a96dd097c448a795fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
/* IdentityHashMap.java -- a class providing a hashtable data structure,
   mapping Object --> Object, which uses object identity for hashing.
   Copyright (C) 2001, 2002, 2004, 2005  Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package java.util;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;

/**
 * This class provides a hashtable-backed implementation of the
 * Map interface, but uses object identity to do its hashing.  In fact,
 * it uses object identity for comparing values, as well. It uses a
 * linear-probe hash table, which may have faster performance
 * than the chaining employed by HashMap.
 * <p>
 *
 * <em>WARNING: This is not a general purpose map. Because it uses
 * System.identityHashCode and ==, instead of hashCode and equals, for
 * comparison, it violated Map's general contract, and may cause
 * undefined behavior when compared to other maps which are not
 * IdentityHashMaps.  This is designed only for the rare cases when
 * identity semantics are needed.</em> An example use is
 * topology-preserving graph transformations, such as deep cloning,
 * or as proxy object mapping such as in debugging.
 * <p>
 *
 * This map permits <code>null</code> keys and values, and does not
 * guarantee that elements will stay in the same order over time. The
 * basic operations (<code>get</code> and <code>put</code>) take
 * constant time, provided System.identityHashCode is decent. You can
 * tune the behavior by specifying the expected maximum size. As more
 * elements are added, the map may need to allocate a larger table,
 * which can be expensive.
 * <p>
 *
 * This implementation is unsynchronized.  If you want multi-thread
 * access to be consistent, you must synchronize it, perhaps by using
 * <code>Collections.synchronizedMap(new IdentityHashMap(...));</code>.
 * The iterators are <i>fail-fast</i>, meaning that a structural modification
 * made to the map outside of an iterator's remove method cause the
 * iterator, and in the case of the entrySet, the Map.Entry, to
 * fail with a {@link ConcurrentModificationException}.
 *
 * @author Tom Tromey (tromey@redhat.com)
 * @author Eric Blake (ebb9@email.byu.edu)
 * @see System#identityHashCode(Object)
 * @see Collection
 * @see Map
 * @see HashMap
 * @see TreeMap
 * @see LinkedHashMap
 * @see WeakHashMap
 * @since 1.4
 * @status updated to 1.4
 */
public class IdentityHashMap<K,V> extends AbstractMap<K,V>
  implements Map<K,V>, Serializable, Cloneable
{
  /** The default capacity. */
  private static final int DEFAULT_CAPACITY = 21;

  /**
   * This object is used to mark a slot whose key or value is 'null'.
   * This is more efficient than using a special value to mark an empty
   * slot, because null entries are rare, empty slots are common, and
   * the JVM will clear new arrays for us.
   * Package visible for use by nested classes.
   */
  static final Object nullslot = new Object();

  /**
   * Compatible with JDK 1.4.
   */
  private static final long serialVersionUID = 8188218128353913216L;

  /**
   * The number of mappings in the table. Package visible for use by nested
   * classes.
   * @serial
   */
  int size;

  /**
   * The table itself. Package visible for use by nested classes.
   */
  transient Object[] table;

  /**
   * The number of structural modifications made so far. Package visible for
   * use by nested classes.
   */
  transient int modCount;

  /**
   * The cache for {@link #entrySet()}.
   */
  private transient Set<Map.Entry<K,V>> entries;

  /**
   * The threshold for rehashing, which is 75% of (table.length / 2).
   */
  private transient int threshold;

  /**
   * Create a new IdentityHashMap with the default capacity (21 entries).
   */
  public IdentityHashMap()
  {
    this(DEFAULT_CAPACITY);
  }

  /**
   * Create a new IdentityHashMap with the indicated number of
   * entries.  If the number of elements added to this hash map
   * exceeds this maximum, the map will grow itself; however, that
   * incurs a performance penalty.
   *
   * @param max initial size
   * @throws IllegalArgumentException if max is negative
   */
  public IdentityHashMap(int max)
  {
    if (max < 0)
      throw new IllegalArgumentException();
    // Need at least two slots, or hash() will break.
    if (max < 2)
      max = 2;
    table = new Object[max << 1];
    threshold = (max >> 2) * 3;
  }

  /**
   * Create a new IdentityHashMap whose contents are taken from the
   * given Map.
   *
   * @param m The map whose elements are to be put in this map
   * @throws NullPointerException if m is null
   */
  public IdentityHashMap(Map<? extends K, ? extends V> m)
  {
    this(Math.max(m.size() << 1, DEFAULT_CAPACITY));
    putAll(m);
  }

  /**
   * Remove all mappings from this map.
   */
  public void clear()
  {
    if (size != 0)
      {
        modCount++;
        Arrays.fill(table, null);
        size = 0;
      }
  }

  /**
   * Creates a shallow copy where keys and values are not cloned.
   */
  public Object clone()
  {
    try
      {
        IdentityHashMap copy = (IdentityHashMap) super.clone();
        copy.table = (Object[]) table.clone();
        copy.entries = null; // invalidate the cache
        return copy;
      }
    catch (CloneNotSupportedException e)
      {
        // Can't happen.
        return null;
      }
  }

  /**
   * Tests whether the specified key is in this map.  Unlike normal Maps,
   * this test uses <code>entry == key</code> instead of
   * <code>entry == null ? key == null : entry.equals(key)</code>.
   *
   * @param key the key to look for
   * @return true if the key is contained in the map
   * @see #containsValue(Object)
   * @see #get(Object)
   */
  public boolean containsKey(Object key)
  {
    key = xform(key);
    return key == table[hash(key)];
  }

  /**
   * Returns true if this HashMap contains the value.  Unlike normal maps,
   * this test uses <code>entry == value</code> instead of
   * <code>entry == null ? value == null : entry.equals(value)</code>.
   *
   * @param value the value to search for in this HashMap
   * @return true if at least one key maps to the value
   * @see #containsKey(Object)
   */
  public boolean containsValue(Object value)
  {
    value = xform(value);
    for (int i = table.length - 1; i > 0; i -= 2)
      if (table[i] == value)
        return true;
    return false;
  }

  /**
   * Returns a "set view" of this Map's entries. The set is backed by
   * the Map, so changes in one show up in the other.  The set supports
   * element removal, but not element addition.
   * <p>
   *
   * <em>The semantics of this set, and of its contained entries, are
   * different from the contract of Set and Map.Entry in order to make
   * IdentityHashMap work.  This means that while you can compare these
   * objects between IdentityHashMaps, comparing them with regular sets
   * or entries is likely to have undefined behavior.</em>  The entries
   * in this set are reference-based, rather than the normal object
   * equality.  Therefore, <code>e1.equals(e2)</code> returns
   * <code>e1.getKey() == e2.getKey() && e1.getValue() == e2.getValue()</code>,
   * and <code>e.hashCode()</code> returns
   * <code>System.identityHashCode(e.getKey()) ^
   *       System.identityHashCode(e.getValue())</code>.
   * <p>
   *
   * Note that the iterators for all three views, from keySet(), entrySet(),
   * and values(), traverse the Map in the same sequence.
   *
   * @return a set view of the entries
   * @see #keySet()
   * @see #values()
   * @see Map.Entry
   */
  public Set<Map.Entry<K,V>> entrySet()
  {
    if (entries == null)
      entries = new AbstractSet<Map.Entry<K,V>>()
      {
        public int size()
        {
          return size;
        }

        public Iterator<Map.Entry<K,V>> iterator()
        {
          return new IdentityIterator<Map.Entry<K,V>>(ENTRIES);
        }

        public void clear()
        {
          IdentityHashMap.this.clear();
        }

        public boolean contains(Object o)
        {
          if (! (o instanceof Map.Entry))
            return false;
          Map.Entry m = (Map.Entry) o;
          Object value = xform(m.getValue());
          Object key = xform(m.getKey());
          return value == table[hash(key) + 1];
        }

        public int hashCode()
        {
          return IdentityHashMap.this.hashCode();
        }

        public boolean remove(Object o)
        {
          if (! (o instanceof Map.Entry))
            return false;
          Object key = xform(((Map.Entry) o).getKey());
          int h = hash(key);
          if (table[h] == key)
            {
              size--;
              modCount++;
              IdentityHashMap.this.removeAtIndex(h);
              return true;
            }
          return false;
        }
      };
    return entries;
  }

  /**
   * Compares two maps for equality. This returns true only if both maps
   * have the same reference-identity comparisons. While this returns
   * <code>this.entrySet().equals(m.entrySet())</code> as specified by Map,
   * this will not work with normal maps, since the entry set compares
   * with == instead of .equals.
   *
   * @param o the object to compare to
   * @return true if it is equal
   */
  public boolean equals(Object o)
  {
    // Why did Sun specify this one? The superclass does the right thing.
    return super.equals(o);
  }

  /**
   * Return the value in this Map associated with the supplied key, or
   * <code>null</code> if the key maps to nothing.
   *
   * <p>NOTE: Since the value could also be null, you must use
   * containsKey to see if this key actually maps to something.
   * Unlike normal maps, this tests for the key with <code>entry ==
   * key</code> instead of <code>entry == null ? key == null :
   * entry.equals(key)</code>.
   *
   * @param key the key for which to fetch an associated value
   * @return what the key maps to, if present
   * @see #put(Object, Object)
   * @see #containsKey(Object)
   */
  public V get(Object key)
  {
    key = xform(key);
    int h = hash(key);
    return (V) (table[h] == key ? unxform(table[h + 1]) : null);
  }

  /**
   * Returns the hashcode of this map. This guarantees that two
   * IdentityHashMaps that compare with equals() will have the same hash code,
   * but may break with comparison to normal maps since it uses
   * System.identityHashCode() instead of hashCode().
   *
   * @return the hash code
   */
  public int hashCode()
  {
    int hash = 0;
    for (int i = table.length - 2; i >= 0; i -= 2)
      {
        Object key = table[i];
        if (key == null)
          continue;
        // FIXME: this is a lame computation.
        hash += (System.identityHashCode(unxform(key))
                 ^ System.identityHashCode(unxform(table[i + 1])));
      }
    return hash;
  }

  /**
   * Returns true if there are no key-value mappings currently in this Map
   * @return <code>size() == 0</code>
   */
  public boolean isEmpty()
  {
    return size == 0;
  }

  /**
   * Returns a "set view" of this Map's keys. The set is backed by the
   * Map, so changes in one show up in the other.  The set supports
   * element removal, but not element addition.
   * <p>
   *
   * <em>The semantics of this set are different from the contract of Set
   * in order to make IdentityHashMap work.  This means that while you can
   * compare these objects between IdentityHashMaps, comparing them with
   * regular sets is likely to have undefined behavior.</em>  The hashCode
   * of the set is the sum of the identity hash codes, instead of the
   * regular hashCodes, and equality is determined by reference instead
   * of by the equals method.
   * <p>
   *
   * @return a set view of the keys
   * @see #values()
   * @see #entrySet()
   */
  public Set<K> keySet()
  {
    if (keys == null)
      keys = new AbstractSet<K>()
      {
        public int size()
        {
          return size;
        }

        public Iterator<K> iterator()
        {
          return new IdentityIterator<K>(KEYS);
        }

        public void clear()
        {
          IdentityHashMap.this.clear();
        }

        public boolean contains(Object o)
        {
          return containsKey(o);
        }

        public int hashCode()
        {
          int hash = 0;
          for (int i = table.length - 2; i >= 0; i -= 2)
            {
              Object key = table[i];
              if (key == null)
                continue;
              hash += System.identityHashCode(unxform(key));
            }
          return hash;
        }

        public boolean remove(Object o)
        {
          o = xform(o);
          int h = hash(o);
          if (table[h] == o)
            {
              size--;
              modCount++;
              removeAtIndex(h);
              return true;
            }
          return false;
        }
      };
    return keys;
  }

  /**
   * Puts the supplied value into the Map, mapped by the supplied key.
   * The value may be retrieved by any object which <code>equals()</code>
   * this key. NOTE: Since the prior value could also be null, you must
   * first use containsKey if you want to see if you are replacing the
   * key's mapping.  Unlike normal maps, this tests for the key
   * with <code>entry == key</code> instead of
   * <code>entry == null ? key == null : entry.equals(key)</code>.
   *
   * @param key the key used to locate the value
   * @param value the value to be stored in the HashMap
   * @return the prior mapping of the key, or null if there was none
   * @see #get(Object)
   */
  public V put(K key, V value)
  {
    key = (K) xform(key);
    value = (V) xform(value);

    // We don't want to rehash if we're overwriting an existing slot.
    int h = hash(key);
    if (table[h] == key)
      {
        V r = (V) unxform(table[h + 1]);
        table[h + 1] = value;
        return r;
      }

    // Rehash if the load factor is too high.
    if (size > threshold)
      {
        Object[] old = table;
        // This isn't necessarily prime, but it is an odd number of key/value
        // slots, which has a higher probability of fewer collisions.
        table = new Object[(old.length * 2) + 2];
        size = 0;
        threshold = (table.length >>> 3) * 3;

        for (int i = old.length - 2; i >= 0; i -= 2)
          {
            K oldkey = (K) old[i];
            if (oldkey != null)
              {
                h = hash(oldkey);
                table[h] = oldkey;
                table[h + 1] = old[i + 1];
                ++size;
                // No need to update modCount here, we'll do it
                // just after the loop.
              }
          }

        // Now that we've resize, recompute the hash value.
        h = hash(key);
      }

    // At this point, we add a new mapping.
    modCount++;
    size++;
    table[h] = key;
    table[h + 1] = value;
    return null;
  }

  /**
   * Copies all of the mappings from the specified map to this. If a key
   * is already in this map, its value is replaced.
   *
   * @param m the map to copy
   * @throws NullPointerException if m is null
   */
  public void putAll(Map<? extends K, ? extends V> m)
  {
    // Why did Sun specify this one? The superclass does the right thing.
    super.putAll(m);
  }

  /**
   * Remove the element at index and update the table to compensate.
   * This is package-private for use by inner classes.
   * @param i index of the removed element
   */
  final void removeAtIndex(int i)
  {
    // This is Algorithm R from Knuth, section 6.4.
    // Variable names are taken directly from the text.
    while (true)
      {
        table[i] = null;
        table[i + 1] = null;
        int j = i;
        int r;
        do
          {
            i -= 2;
            if (i < 0)
              i = table.length - 2;
            Object key = table[i];
            if (key == null)
              return;
            r = Math.abs(System.identityHashCode(key)
                         % (table.length >> 1)) << 1;
          }
        while ((i <= r && r < j)
            || (r < j && j < i)
            || (j < i && i <= r));
        table[j] = table[i];
        table[j + 1] = table[i + 1];
      }
  }

  /**
   * Removes from the HashMap and returns the value which is mapped by
   * the supplied key. If the key maps to nothing, then the HashMap
   * remains unchanged, and <code>null</code> is returned.
   *
   * NOTE: Since the value could also be null, you must use
   * containsKey to see if you are actually removing a mapping.
   * Unlike normal maps, this tests for the key with <code>entry ==
   * key</code> instead of <code>entry == null ? key == null :
   * entry.equals(key)</code>.
   *
   * @param key the key used to locate the value to remove
   * @return whatever the key mapped to, if present
   */
  public V remove(Object key)
  {
    key = xform(key);
    int h = hash(key);
    if (table[h] == key)
      {
        modCount++;
        size--;
        Object r = unxform(table[h + 1]);
        removeAtIndex(h);
        return (V) r;
      }
    return null;
  }

  /**
   * Returns the number of kay-value mappings currently in this Map
   * @return the size
   */
  public int size()
  {
    return size;
  }

  /**
   * Returns a "collection view" (or "bag view") of this Map's values.
   * The collection is backed by the Map, so changes in one show up
   * in the other.  The collection supports element removal, but not element
   * addition.
   * <p>
   *
   * <em>The semantics of this set are different from the contract of
   * Collection in order to make IdentityHashMap work.  This means that
   * while you can compare these objects between IdentityHashMaps, comparing
   * them with regular sets is likely to have undefined behavior.</em>
   * Likewise, contains and remove go by == instead of equals().
   * <p>
   *
   * @return a bag view of the values
   * @see #keySet()
   * @see #entrySet()
   */
  public Collection<V> values()
  {
    if (values == null)
      values = new AbstractCollection<V>()
      {
        public int size()
        {
          return size;
        }

        public Iterator<V> iterator()
        {
          return new IdentityIterator<V>(VALUES);
        }

        public void clear()
        {
          IdentityHashMap.this.clear();
        }

        public boolean remove(Object o)
        {
          o = xform(o);
          // This approach may look strange, but it is ok.
          for (int i = table.length - 1; i > 0; i -= 2)
            if (table[i] == o)
              {
                modCount++;
                size--;
                IdentityHashMap.this.removeAtIndex(i - 1);
                return true;
              }
          return false;
        }
      };
    return values;
  }

  /**
   * Transform a reference from its external form to its internal form.
   * This is package-private for use by inner classes.
   */
  final Object xform(Object o)
  {
    if (o == null)
      o = nullslot;
    return o;
  }

  /**
   * Transform a reference from its internal form to its external form.
   * This is package-private for use by inner classes.
   */
  final Object unxform(Object o)
  {
    if (o == nullslot)
      o = null;
    return o;
  }

  /**
   * Helper method which computes the hash code, then traverses the table
   * until it finds the key, or the spot where the key would go.  the key
   * must already be in its internal form.
   *
   * @param key the key to check
   * @return the index where the key belongs
   * @see #IdentityHashMap(int)
   * @see #put(Object, Object)
   */
  // Package visible for use by nested classes.
  final int hash(Object key)
  {
    int h = Math.abs(System.identityHashCode(key) % (table.length >> 1)) << 1;

    while (true)
      {
        // By requiring at least 2 key/value slots, and rehashing at 75%
        // capacity, we guarantee that there will always be either an empty
        // slot somewhere in the table.
        if (table[h] == key || table[h] == null)
          return h;
        // We use linear probing as it is friendlier to the cache and
        // it lets us efficiently remove entries.
        h -= 2;
        if (h < 0)
          h = table.length - 2;
      }
  }

  /**
   * This class allows parameterized iteration over IdentityHashMaps.  Based
   * on its construction, it returns the key or value of a mapping, or
   * creates the appropriate Map.Entry object with the correct fail-fast
   * semantics and identity comparisons.
   *
   * @author Tom Tromey (tromey@redhat.com)
   * @author Eric Blake (ebb9@email.byu.edu)
   */
  private class IdentityIterator<I> implements Iterator<I>
  {
    /**
     * The type of this Iterator: {@link #KEYS}, {@link #VALUES},
     * or {@link #ENTRIES}.
     */
    final int type;
    /** The number of modifications to the backing Map that we know about. */
    int knownMod = modCount;
    /** The number of elements remaining to be returned by next(). */
    int count = size;
    /** Location in the table. */
    int loc = table.length;

    /**
     * Construct a new Iterator with the supplied type.
     * @param type {@link #KEYS}, {@link #VALUES}, or {@link #ENTRIES}
     */
    IdentityIterator(int type)
    {
      this.type = type;
    }

    /**
     * Returns true if the Iterator has more elements.
     * @return true if there are more elements
     */
    public boolean hasNext()
    {
      return count > 0;
    }

    /**
     * Returns the next element in the Iterator's sequential view.
     * @return the next element
     * @throws ConcurrentModificationException if the Map was modified
     * @throws NoSuchElementException if there is none
     */
    public I next()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      if (count == 0)
        throw new NoSuchElementException();
      count--;

      Object key;
      do
        {
          loc -= 2;
          key = table[loc];
        }
      while (key == null);
  
      return (I) (type == KEYS ? unxform(key) 
		  : (type == VALUES ? unxform(table[loc + 1])
		     : new IdentityEntry(loc)));
    }

    /**
     * Removes from the backing Map the last element which was fetched
     * with the <code>next()</code> method.
     *
     * @throws ConcurrentModificationException if the Map was modified
     * @throws IllegalStateException if called when there is no last element
     */
    public void remove()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      if (loc == table.length)
        throw new IllegalStateException();
      modCount++;
      size--;
      removeAtIndex(loc);
      knownMod++;
    }
  } // class IdentityIterator

  /**
   * This class provides Map.Entry objects for IdentityHashMaps.  The entry
   * is fail-fast, and will throw a ConcurrentModificationException if
   * the underlying map is modified, or if remove is called on the iterator
   * that generated this object.  It is identity based, so it violates
   * the general contract of Map.Entry, and is probably unsuitable for
   * comparison to normal maps; but it works among other IdentityHashMaps.
   *
   * @author Eric Blake (ebb9@email.byu.edu)
   */
  private final class IdentityEntry<EK,EV> implements Map.Entry<EK,EV>
  {
    /** The location of this entry. */
    final int loc;
    /** The number of modifications to the backing Map that we know about. */
    final int knownMod = modCount;

    /**
     * Constructs the Entry.
     *
     * @param loc the location of this entry in table
     */
    IdentityEntry(int loc)
    {
      this.loc = loc;
    }

    /**
     * Compares the specified object with this entry, using identity
     * semantics. Note that this can lead to undefined results with
     * Entry objects created by normal maps.
     *
     * @param o the object to compare
     * @return true if it is equal
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public boolean equals(Object o)
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      if (! (o instanceof Map.Entry))
        return false;
      Map.Entry e = (Map.Entry) o;
      return table[loc] == xform(e.getKey())
             && table[loc + 1] == xform(e.getValue());
    }

    /**
     * Returns the key of this entry.
     *
     * @return the key
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public EK getKey()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      return (EK) unxform(table[loc]);
    }

    /**
     * Returns the value of this entry.
     *
     * @return the value
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public EV getValue()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      return (EV) unxform(table[loc + 1]);
    }

    /**
     * Returns the hashcode of the entry, using identity semantics.
     * Note that this can lead to undefined results with Entry objects
     * created by normal maps.
     *
     * @return the hash code
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public int hashCode()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      return (System.identityHashCode(unxform(table[loc]))
              ^ System.identityHashCode(unxform(table[loc + 1])));
    }

    /**
     * Replaces the value of this mapping, and returns the old value.
     *
     * @param value the new value
     * @return the old value
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public EV setValue(EV value)
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      EV r = (EV) unxform(table[loc + 1]);
      table[loc + 1] = xform(value);
      return r;
    }

    /**
     * This provides a string representation of the entry. It is of the form
     * "key=value", where string concatenation is used on key and value.
     *
     * @return the string representation
     * @throws ConcurrentModificationException if the entry was invalidated
     *         by modifying the Map or calling Iterator.remove()
     */
    public String toString()
    {
      if (knownMod != modCount)
        throw new ConcurrentModificationException();
      return unxform(table[loc]) + "=" + unxform(table[loc + 1]);
    }
  } // class IdentityEntry

  /**
   * Reads the object from a serial stream.
   *
   * @param s the stream to read from
   * @throws ClassNotFoundException if the underlying stream fails
   * @throws IOException if the underlying stream fails
   * @serialData expects the size (int), followed by that many key (Object)
   *             and value (Object) pairs, with the pairs in no particular
   *             order
   */
  private void readObject(ObjectInputStream s)
    throws IOException, ClassNotFoundException
  {
    s.defaultReadObject();

    int num = s.readInt();
    table = new Object[Math.max(num << 1, DEFAULT_CAPACITY) << 1];
    // Read key/value pairs.
    while (--num >= 0)
      put((K) s.readObject(), (V) s.readObject());
  }

  /**
   * Writes the object to a serial stream.
   *
   * @param s the stream to write to
   * @throws IOException if the underlying stream fails
   * @serialData outputs the size (int), followed by that many key (Object)
   *             and value (Object) pairs, with the pairs in no particular
   *             order
   */
  private void writeObject(ObjectOutputStream s)
    throws IOException
  {
    s.defaultWriteObject();
    s.writeInt(size);
    for (int i = table.length - 2; i >= 0; i -= 2)
      {
        Object key = table[i];
        if (key != null)
          {
            s.writeObject(unxform(key));
            s.writeObject(unxform(table[i + 1]));
          }
      }
  }
}
='#n2929'>2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166
# GNU libc의 ν•œκ΅­μ–΄ λ©”μ‹œμ§€
# This file is distributed under the same license as the glibc package.
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2004, 2007, 2008, 2009, 2011 Free Software Foundation, Inc.
# Bang Jun-Young <bangjy@nownuri.net>, 1996-97.
# Changwoo Ryu <cwryu@debian.org>, 2000-2004, 2007-2009, 2011, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: GNU libc 2.17.90.20130724\n"
"POT-Creation-Date: 2013-07-24 23:29-0700\n"
"PO-Revision-Date: 2013-08-03 19:33+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <translation-team-ko@lists.sourceforge.net>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"

#: argp/argp-help.c:227
#, c-format
msgid "%.*s: ARGP_HELP_FMT parameter requires a value"
msgstr "%.*s: ARGP_HELP_FMT μΈμˆ˜λŠ” 값이 ν•„μš”ν•©λ‹ˆλ‹€"

#: argp/argp-help.c:237
#, c-format
msgid "%.*s: Unknown ARGP_HELP_FMT parameter"
msgstr "%.*s: μ•Œ 수 μ—†λŠ” ARGP_HELP_FMT 인자"

#: argp/argp-help.c:250
#, c-format
msgid "Garbage in ARGP_HELP_FMT: %s"
msgstr "ARGP_HELP_FMT에 μ“Έλͺ¨μ—†λŠ” 것: %s"

#: argp/argp-help.c:1214
msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options."
msgstr "κΈ΄ μ˜΅μ…˜μ—μ„œ λŒ€ν•΄ κΌ­ ν•„μš”ν•˜κ±°λ‚˜ 선택적인 μΈμžλŠ” κ·Έ κΈ΄ μ˜΅μ…˜μ— ν•΄λ‹Ήν•˜λŠ” 짧은 μ˜΅μ…˜μ—μ„œλ„ κΌ­ ν•„μš”ν•˜κ±°λ‚˜ μ„ νƒμ μž…λ‹ˆλ‹€."

#: argp/argp-help.c:1600
msgid "Usage:"
msgstr "μ‚¬μš©λ²•:"

#: argp/argp-help.c:1604
msgid "  or: "
msgstr "  ν˜Ήμ€: "

#: argp/argp-help.c:1616
msgid " [OPTION...]"
msgstr "[μ˜΅μ…˜...]"

#: argp/argp-help.c:1643
#, c-format
msgid "Try `%s --help' or `%s --usage' for more information.\n"
msgstr "더 λ§Žμ€ 정보λ₯Ό 보렀면 `%s --help' ν˜Ήμ€ `%s --usage' ν•˜μ‹­μ‹œμ˜€.\n"

#: argp/argp-help.c:1671
#, c-format
msgid "Report bugs to %s.\n"
msgstr "버그λ₯Ό %s μ£Όμ†Œλ‘œ μ•Œλ €μ£Όμ‹­μ‹œμ˜€.\n"

#: argp/argp-parse.c:101
msgid "Give this help list"
msgstr "이 도움말 리슀트λ₯Ό ν‘œμ‹œν•¨"

#: argp/argp-parse.c:102
msgid "Give a short usage message"
msgstr "κ°„λž΅ν•œ μ‚¬μš©λ²• λ©”μ‹œμ§€λ₯Ό ν‘œμ‹œν•¨"

#: argp/argp-parse.c:103 catgets/gencat.c:109 catgets/gencat.c:113
#: iconv/iconv_prog.c:60 iconv/iconv_prog.c:61 nscd/nscd.c:115
#: nss/makedb.c:120
msgid "NAME"
msgstr "<이름>"

#: argp/argp-parse.c:104
msgid "Set the program name"
msgstr "ν”„λ‘œκ·Έλž¨ 이름 κ²°μ •"

#: argp/argp-parse.c:105
msgid "SECS"
msgstr "<초>"

#: argp/argp-parse.c:106
msgid "Hang for SECS seconds (default 3600)"
msgstr "<초>초 λ™μ•ˆ 멈좀(κΈ°λ³Έκ°’ 3600)"

#: argp/argp-parse.c:167
msgid "Print program version"
msgstr "ν”„λ‘œκ·Έλž¨ 버전 ν‘œμ‹œ"

#: argp/argp-parse.c:183
msgid "(PROGRAM ERROR) No version known!?"
msgstr "(ν”„λ‘œκ·Έλž¨ 였λ₯˜) 버전을 μ•Œ 수 μ—†μŠ΅λ‹ˆλ‹€!?"

#: argp/argp-parse.c:623
#, c-format
msgid "%s: Too many arguments\n"
msgstr "%s: μΈμžκ°€ λ„ˆλ¬΄ 많음\n"

#: argp/argp-parse.c:766
msgid "(PROGRAM ERROR) Option should have been recognized!?"
msgstr "(ν”„λ‘œκ·Έλž¨ 였λ₯˜) μ˜΅μ…˜μ„ μ•Œ 수 μžˆμ–΄μ•Ό ν•©λ‹ˆλ‹€!?"

#: assert/assert-perr.c:35
#, c-format
msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n"
msgstr "%s%s%s:%u: %s%s예기치 λͺ»ν•œ 였λ₯˜: %s.\n"

#: assert/assert.c:101
#, c-format
msgid ""
"%s%s%s:%u: %s%sAssertion `%s' failed.\n"
"%n"
msgstr ""
"%s%s%s:%u: %s%sassertion `%s' μ‹€νŒ¨.\n"
"%n"

#: catgets/gencat.c:110
msgid "Create C header file NAME containing symbol definitions"
msgstr "기호 μ •μ˜λ₯Ό λ‹΄κ³  μžˆλŠ” C 헀더 파일 NAME을 λ§Œλ“­λ‹ˆλ‹€"

#: catgets/gencat.c:112
msgid "Do not use existing catalog, force new output file"
msgstr "이미 μžˆλŠ” λͺ©λ‘μ„ μ‚¬μš©ν•˜μ§€ μ•Šκ³ , μƒˆλ‘œμš΄ νŒŒμΌμ— 좜λ ₯ν•©λ‹ˆλ‹€"

#: catgets/gencat.c:113 nss/makedb.c:120
msgid "Write output to file NAME"
msgstr "<이름> 파일둜 좜λ ₯ν•©λ‹ˆλ‹€"

#: catgets/gencat.c:118
msgid ""
"Generate message catalog.\vIf INPUT-FILE is -, input is read from standard input.  If OUTPUT-FILE\n"
"is -, output is written to standard output.\n"
msgstr ""
"λ©”μ‹œμ§€ λͺ©λ‘μ„ λ§Œλ“­λ‹ˆλ‹€.^K<μž…λ ₯-파일>이 - 이면 ν‘œμ€€ μž…λ ₯을 읽게 λ©λ‹ˆλ‹€.  <좜λ ₯-파일>이 - 이면\n"
"ν‘œμ€€ 좜λ ₯에 좜λ ₯ν•©λ‹ˆλ‹€.\n"

#: catgets/gencat.c:123
msgid ""
"-o OUTPUT-FILE [INPUT-FILE]...\n"
"[OUTPUT-FILE [INPUT-FILE]...]"
msgstr ""
"-o <좜λ ₯-파일> [<μž…λ ₯-파일>]...\n"
"[<좜λ ₯-파일> [<μž…λ ₯-파일>]...]"

#: catgets/gencat.c:229 debug/pcprofiledump.c:209 elf/ldconfig.c:307
#: elf/pldd.c:219 elf/sln.c:85 elf/sprof.c:372 iconv/iconv_prog.c:408
#: iconv/iconvconfig.c:379 locale/programs/locale.c:277
#: locale/programs/localedef.c:364 login/programs/pt_chown.c:88
#: malloc/memusagestat.c:563 nscd/nscd.c:450 nss/getent.c:965 nss/makedb.c:369
#: posix/getconf.c:1121 sunrpc/rpcinfo.c:691
#: sysdeps/unix/sysv/linux/lddlibc4.c:61
#, c-format
msgid ""
"For bug reporting instructions, please see:\n"
"%s.\n"
msgstr ""
"버그λ₯Ό λ³΄κ³ ν•˜λŠ” 방법은 λ‹€μŒμ„ μ°Έκ³ ν•˜μ‹­μ‹œμ˜€:\n"
"%s.\n"

#: catgets/gencat.c:245 debug/pcprofiledump.c:225 debug/xtrace.sh:64
#: elf/ldconfig.c:323 elf/ldd.bash.in:38 elf/pldd.c:235 elf/sotruss.ksh:75
#: elf/sprof.c:389 iconv/iconv_prog.c:425 iconv/iconvconfig.c:396
#: locale/programs/locale.c:294 locale/programs/localedef.c:390
#: login/programs/pt_chown.c:62 malloc/memusage.sh:71
#: malloc/memusagestat.c:579 nscd/nscd.c:466 nss/getent.c:86 nss/makedb.c:385
#: posix/getconf.c:1103 sysdeps/unix/sysv/linux/lddlibc4.c:68
#, c-format
msgid ""
"Copyright (C) %s Free Software Foundation, Inc.\n"
"This is free software; see the source for copying conditions.  There is NO\n"
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
msgstr ""
"Copyright (C) %s Free Software Foundation, Inc.\n"
"이 ν”„λ‘œκ·Έλž¨μ€ 곡개 μ†Œν”„νŠΈμ›¨μ–΄μž…λ‹ˆλ‹€; 볡사쑰건은 μ†ŒμŠ€λ₯Ό μ°Έμ‘°ν•˜μ‹­μ‹œμ˜€.  μƒν’ˆμ„±\n"
"μ΄λ‚˜ νŠΉμ • λͺ©μ μ— λŒ€ν•œ 적합성을 λΉ„λ‘―ν•˜μ—¬ μ–΄λ– ν•œ 보증도 ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.\n"

#: catgets/gencat.c:250 debug/pcprofiledump.c:230 debug/xtrace.sh:68
#: elf/ldconfig.c:328 elf/pldd.c:240 elf/sprof.c:395 iconv/iconv_prog.c:430
#: iconv/iconvconfig.c:401 locale/programs/locale.c:299
#: locale/programs/localedef.c:395 malloc/memusage.sh:75
#: malloc/memusagestat.c:584 nscd/nscd.c:471 nss/getent.c:91 nss/makedb.c:390
#: posix/getconf.c:1108
#, c-format
msgid "Written by %s.\n"
msgstr "λ§Œλ“  μ‚¬λžŒ: %s.\n"

#: catgets/gencat.c:281
msgid "*standard input*"
msgstr "*ν‘œμ€€ μž…λ ₯*"

#: catgets/gencat.c:287 iconv/iconv_charmap.c:167 iconv/iconv_prog.c:293
#: nss/makedb.c:246
#, c-format
msgid "cannot open input file `%s'"
msgstr "`%s' μž…λ ₯ νŒŒμΌμ„ μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: catgets/gencat.c:416 catgets/gencat.c:491
msgid "illegal set number"
msgstr "μ§‘ν•© λ²ˆν˜Έκ°€ 잘λͺ»λ˜μ—ˆμŒ"

#: catgets/gencat.c:443
msgid "duplicate set definition"
msgstr "μ§‘ν•© μ •μ˜κ°€ μ€‘λ³΅λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€"

#: catgets/gencat.c:445 catgets/gencat.c:617 catgets/gencat.c:669
msgid "this is the first definition"
msgstr "이것은 첫번째 μ •μ˜μž…λ‹ˆλ‹€"

#: catgets/gencat.c:516
#, c-format
msgid "unknown set `%s'"
msgstr "μ•Œ 수 μ—†λŠ” μ„€μ • `%s'"

#: catgets/gencat.c:557
msgid "invalid quote character"
msgstr "잘λͺ»λœ 인용 문자"

#: catgets/gencat.c:570
#, c-format
msgid "unknown directive `%s': line ignored"
msgstr "μ•Œ 수 μ—†λŠ” μ§€μ‹œμž `%s': ν–‰ λ¬΄μ‹œλ¨"

#: catgets/gencat.c:615
msgid "duplicated message number"
msgstr "μ€‘λ³΅λœ λ©”μ‹œμ§€ 번호"

#: catgets/gencat.c:666
msgid "duplicated message identifier"
msgstr "μ€‘λ³΅λœ λ©”μ‹œμ§€ μ‹λ³„μž"

#: catgets/gencat.c:723
msgid "invalid character: message ignored"
msgstr "잘λͺ»λœ 문자: λ©”μ‹œμ§€λŠ” λ¬΄μ‹œν•©λ‹ˆλ‹€"

#: catgets/gencat.c:766
msgid "invalid line"
msgstr "λΆ€μ μ ˆν•œ 쀄"

#: catgets/gencat.c:820
msgid "malformed line ignored"
msgstr "잘λͺ»λœ ν˜•νƒœμ˜ 행을 λ¬΄μ‹œ"

#: catgets/gencat.c:984 catgets/gencat.c:1025
#, c-format
msgid "cannot open output file `%s'"
msgstr "좜λ ₯ 파일 `%s' νŒŒμΌμ„ μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: catgets/gencat.c:1187 locale/programs/linereader.c:560
msgid "invalid escape sequence"
msgstr "잘λͺ»λœ μ΄μŠ€μΌ€μ΄ν”„ μˆœμ„œμ—΄"

#: catgets/gencat.c:1209
msgid "unterminated message"
msgstr "μ’…λ£Œν•˜μ§€ μ•Šμ€ λ©”μ‹œμ§€"

#: catgets/gencat.c:1233
#, c-format
msgid "while opening old catalog file"
msgstr "였래된 λͺ©λ‘ νŒŒμΌμ„ μ—¬λŠ” λ™μ•ˆ"

#: catgets/gencat.c:1324
#, c-format
msgid "conversion modules not available"
msgstr "λ³€ν™˜ λͺ¨λ“ˆμ΄ μ‚¬μš© λΆˆκ°€λŠ₯ν•©λ‹ˆλ‹€"

#: catgets/gencat.c:1350
#, c-format
msgid "cannot determine escape character"
msgstr "μ΄μŠ€μΌ€μ΄ν”„ 문자λ₯Ό κ²°μ •ν•  μˆ˜κ°€ μ—†μŠ΅λ‹ˆλ‹€"

#: debug/pcprofiledump.c:53
msgid "Don't buffer output"
msgstr "버퍼 좜λ ₯을 ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: debug/pcprofiledump.c:58
msgid "Dump information generated by PC profiling."
msgstr "PC ν”„λ‘œνŒŒμΌλ§μœΌλ‘œ λ§Œλ“€μ–΄μ§„ 정보λ₯Ό λ€ν”„ν•©λ‹ˆλ‹€."

#: debug/pcprofiledump.c:61
msgid "[FILE]"
msgstr "[파일]"

#: debug/pcprofiledump.c:108
#, c-format
msgid "cannot open input file"
msgstr "μž…λ ₯ νŒŒμΌμ„ μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: debug/pcprofiledump.c:115
#, c-format
msgid "cannot read header"
msgstr "헀더λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: debug/pcprofiledump.c:179
#, c-format
msgid "invalid pointer size"
msgstr "잘λͺ»λœ 포인터 크기"

#: debug/xtrace.sh:26 debug/xtrace.sh:44
msgid "Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...\\n"
msgstr "μ‚¬μš©λ²•: xtrace [μ˜΅μ…˜]... <ν”„λ‘œκ·Έλž¨> [ν”„λ‘œκ·Έλž¨μ˜΅μ…˜]...\\n"

#: debug/xtrace.sh:32 elf/sotruss.ksh:56 elf/sotruss.ksh:67
#: elf/sotruss.ksh:135 malloc/memusage.sh:26
msgid "Try \\`%s --help' or \\`%s --usage' for more information.\\n"
msgstr "더 λ§Žμ€ 정보λ₯Ό 보렀면 \\`%s --help' ν˜Ήμ€ \\`%s --usage' ν•˜μ‹­μ‹œμ˜€.\\n"

#: debug/xtrace.sh:38
msgid "%s: option '%s' requires an argument.\\n"
msgstr "%s: '%s' μ˜΅μ…˜μ€ μΈμˆ˜κ°€ ν•„μš”ν•©λ‹ˆλ‹€\\n"

#: debug/xtrace.sh:45
msgid ""
"Trace execution of program by printing currently executed function.\n"
"\n"
"     --data=FILE          Don't run the program, just print the data from FILE.\n"
"\n"
"   -?,--help              Print this help and exit\n"
"      --usage             Give a short usage message\n"
"   -V,--version           Print version information and exit\n"
"\n"
"Mandatory arguments to long options are also mandatory for any corresponding\n"
"short options.\n"
"\n"
msgstr ""
"ν”„λ‘œκ·Έλž¨ 싀행을 μΆ”μ ν•΄μ„œ ν˜„μž¬ μ‹€ν–‰ν•˜κ³  μžˆλŠ” ν•¨μˆ˜λ₯Ό ν‘œμ‹œν•©λ‹ˆλ‹€.\n"
"\n"
"     --data=<파일>        ν”„λ‘œκ·Έλž¨μ„ μ‹€ν–‰ν•˜μ§€ μ•Šκ³ , <파일>μ—μ„œ λ°μ΄ν„°λ§Œ ν‘œμ‹œν•©λ‹ˆλ‹€\n"
"\n"
"   -?,--help              도움말을 ν‘œμ‹œν•˜κ³  λλƒ…λ‹ˆλ‹€\n"
"      --usage             κ°„λ‹¨ν•œ μ‚¬μš©λ²• λ©”μ‹œμ§€λ₯Ό ν‘œμ‹œν•©λ‹ˆλ‹€\n"
"   -V,--version           버전 정보λ₯Ό ν‘œμ‹œν•˜κ³  λλƒ…λ‹ˆλ‹€\n"
"\n"
"κΈ΄ μ˜΅μ…˜μ— ν•„μˆ˜μ μΈ μΈμˆ˜λŠ”, 같은 짧은 μ˜΅μ…˜μ—μ„œλ„ ν•„μˆ˜μ μΈ μΈμˆ˜μž…λ‹ˆλ‹€.\n"
"\n"

#: debug/xtrace.sh:57 elf/ldd.bash.in:55 elf/sotruss.ksh:49
#: malloc/memusage.sh:64
msgid "For bug reporting instructions, please see:\\\\n%s.\\\\n"
msgstr "버그λ₯Ό λ³΄κ³ ν•˜λŠ” 방법은 λ‹€μŒμ„ μ°Έκ³ ν•˜μ‹­μ‹œμ˜€:\\\\n%s.\\\\n"

#: debug/xtrace.sh:125
msgid "xtrace: unrecognized option \\`$1'\\n"
msgstr "xtrace: 인식할 수 μ—†λŠ” μ˜΅μ…˜ \\`$1'\\n"

#: debug/xtrace.sh:138
msgid "No program name given\\n"
msgstr "ν”„λ‘œκ·Έλž¨ 이름이 μ—†μŠ΅λ‹ˆλ‹€\\n"

#: debug/xtrace.sh:146
#, sh-format
msgid "executable \\`$program' not found\\n"
msgstr "\\`$program' μ‹€ν–‰ 파일이 μ—†μŠ΅λ‹ˆλ‹€\\n"

#: debug/xtrace.sh:150
#, sh-format
msgid "\\`$program' is no executable\\n"
msgstr "\\`$program' 파일이 μ‹€ν–‰ 파일이 μ•„λ‹™λ‹ˆλ‹€\\n"

#: dlfcn/dlinfo.c:63
msgid "RTLD_SELF used in code not dynamically loaded"
msgstr "λ™μ μœΌλ‘œ μ μž¬ν•˜μ§€ μ•Šμ€ μ½”λ“œμ— RTLD_SELFλ₯Ό μ‚¬μš©ν•¨"

#: dlfcn/dlinfo.c:72
msgid "unsupported dlinfo request"
msgstr "μ§€μ›ν•˜μ§€ μ•ŠλŠ” dlinfo μš”μ²­"

#: dlfcn/dlmopen.c:63
msgid "invalid namespace"
msgstr "잘λͺ»λœ λ„€μž„μŠ€νŽ˜μ΄μŠ€"

#: dlfcn/dlmopen.c:68
msgid "invalid mode"
msgstr "잘λͺ»λœ λͺ¨λ“œ"

#: dlfcn/dlopen.c:64
msgid "invalid mode parameter"
msgstr "잘λͺ»λœ λͺ¨λ“œ λ§€κ°œλ³€μˆ˜"

#: elf/cache.c:69
msgid "unknown"
msgstr "μ•Œ 수 μ—†μŒ"

#: elf/cache.c:126
msgid "Unknown OS"
msgstr "μ•Œ 수 μ—†λŠ” 운영체제"

#: elf/cache.c:131
#, c-format
msgid ", OS ABI: %s %d.%d.%d"
msgstr ", OS ABI: %s %d.%d.%d"

#: elf/cache.c:148 elf/ldconfig.c:1318
#, c-format
msgid "Can't open cache file %s\n"
msgstr "μΊμ‹œ 파일 `%s'을(λ₯Ό) μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/cache.c:162
#, c-format
msgid "mmap of cache file failed.\n"
msgstr "μΊμ‹œ νŒŒμΌμ„ mmapν•˜λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€.\n"

#: elf/cache.c:166 elf/cache.c:180
#, c-format
msgid "File is not a cache file.\n"
msgstr "파일이 μΊμ‹œ 파일이 μ•„λ‹™λ‹ˆλ‹€.\n"

#: elf/cache.c:213 elf/cache.c:223
#, c-format
msgid "%d libs found in cache `%s'\n"
msgstr "%2$s μΊμ‹œμ— λΌμ΄λΈŒλŸ¬λ¦¬κ°€ %1$d개 μžˆμŠ΅λ‹ˆλ‹€\n"

#: elf/cache.c:417
#, c-format
msgid "Can't create temporary cache file %s"
msgstr "μž„μ‹œ μΊμ‹œ 파일 %s을(λ₯Ό) μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/cache.c:425 elf/cache.c:435 elf/cache.c:439 elf/cache.c:444
#, c-format
msgid "Writing of cache data failed"
msgstr "μΊμ‹œ 데이터 μ“°κΈ°κ°€ μ‹€νŒ¨"

#: elf/cache.c:449
#, c-format
msgid "Changing access rights of %s to %#o failed"
msgstr "%s의 μ ‘κ·ΌκΆŒν•œμ„ to %#o둜(으둜) λ°”κΎΈλŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/cache.c:454
#, c-format
msgid "Renaming of %s to %s failed"
msgstr "%sμ—μ„œ %s으둜(둜) 이름을 λ°”κΎΈλŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-close.c:384 elf/dl-open.c:470
msgid "cannot create scope list"
msgstr "μŠ€μ½”ν”„ λͺ©λ‘μ„ λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-close.c:777
msgid "shared object not open"
msgstr "곡유 μ˜€λΈŒμ νŠΈκ°€ 열리지 μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: elf/dl-deps.c:112
msgid "DST not allowed in SUID/SGID programs"
msgstr "SUID/SGID ν”„λ‘œκ·Έλž¨μ— DSTλŠ” μ‚¬μš©ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

# λ²ˆμ—­: λ­” μ†Œλ¦¬μ•Ό?
#: elf/dl-deps.c:125
msgid "empty dynamic string token substitution"
msgstr "λΉ„μ–΄ μžˆλŠ” 동적 λ¬Έμžμ—΄ 토큰 μΉ˜ν™˜"

# λ²ˆμ—­: λ­” μ†Œλ¦¬μ•Ό?
#: elf/dl-deps.c:131
#, c-format
msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n"
msgstr "동적 λ¬Έμžμ—΄ 토큰 μΉ˜ν™˜μ΄ λΉ„μ–΄ 있기 λ•Œλ¬Έμ— `%s' λΆ€κ°€ 데이터λ₯Ό 읽어듀일 수 μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/dl-deps.c:479
msgid "cannot allocate dependency list"
msgstr "μ˜μ‘΄μ„± 리슀트λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-deps.c:516 elf/dl-deps.c:576
msgid "cannot allocate symbol search list"
msgstr "기호 검색 리슀트λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-deps.c:556
msgid "Filters not supported with LD_TRACE_PRELINKING"
msgstr "LD_TRACE_PRELINKING을 μ‚¬μš©ν•  경우 ν•„ν„°λŠ” μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-error.c:76
msgid "DYNAMIC LINKER BUG!!!"
msgstr "동적 링컀 버그!!!"

#: elf/dl-error.c:123
msgid "error while loading shared libraries"
msgstr "동적 라이브러리λ₯Ό μ½μ–΄λ“€μ΄λŠ” 데 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-fptr.c:87 ports/sysdeps/hppa/dl-fptr.c:93
msgid "cannot map pages for fdesc table"
msgstr "fdesc ν…Œμ΄λΈ”μ˜ νŽ˜μ΄μ§€λ₯Ό λ§€ν•‘ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-fptr.c:191 ports/sysdeps/hppa/dl-fptr.c:206
msgid "cannot map pages for fptr table"
msgstr "fptr ν…Œμ΄λΈ”μ˜ νŽ˜μ΄μ§€λ₯Ό λ§€ν•‘ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-fptr.c:220 ports/sysdeps/hppa/dl-fptr.c:235
msgid "internal error: symidx out of range of fptr table"
msgstr "λ‚΄λΆ€ 였λ₯˜: symidxκ°€ fptr ν…Œμ΄λΈ”μ˜ λ²”μœ„λ₯Ό λ²—μ–΄λ‚¬μŠ΅λ‹ˆλ‹€"

# λ²ˆμ—­: capabilityλŠ” DBμ—μ„œ authentication을 쀄이기 μœ„ν•΄ μ“°λŠ” 것..
# κ°€κΉŒμš΄ DBμ±… μ°Έμ‘°.
#: elf/dl-hwcaps.c:184 elf/dl-hwcaps.c:196
msgid "cannot create capability list"
msgstr "μΌ€μ΄νΌλΉŒλ¦¬ν‹° 리슀트λ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:465
msgid "cannot allocate name record"
msgstr "λ„€μž„ λ ˆμ½”λ“œλ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:542 elf/dl-load.c:658 elf/dl-load.c:743 elf/dl-load.c:862
msgid "cannot create cache for search path"
msgstr "검색 κ²½λ‘œμ— λŒ€ν•œ μΊμ‹œλ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:633
msgid "cannot create RUNPATH/RPATH copy"
msgstr "RUNPATH/RPATH μΉ΄ν”Όλ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:729
msgid "cannot create search path array"
msgstr "검색 경둜 배열을 λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:934
msgid "cannot stat shared object"
msgstr "동적 μ˜€λΈŒμ νŠΈμ— λŒ€ν•΄ stat()이 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1012
msgid "cannot open zero fill device"
msgstr "0으둜 μ±„μš΄ μž₯치λ₯Ό μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1059 elf/dl-load.c:2342
msgid "cannot create shared object descriptor"
msgstr "곡유 였브젝트 λ””μŠ€ν¬λ¦½ν„°λ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1078 elf/dl-load.c:1755 elf/dl-load.c:1858
msgid "cannot read file data"
msgstr "파일 데이터λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1124
msgid "ELF load command alignment not page-aligned"
msgstr "ELF λ‘œλ“œ λͺ…λ Ήμ˜μ˜ align이 νŽ˜μ΄μ§€μ— alignλ˜μ–΄ μžˆμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1131
msgid "ELF load command address/offset not properly aligned"
msgstr "ELF λ‘œλ“œ λͺ…λ Ήμ˜ μ£Όμ†Œ/μ˜€ν”„μ…‹μ΄ μ˜¬λ°”λ₯΄κ²Œ alignλ˜μ–΄ μžˆμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1216
msgid "cannot allocate TLS data structures for initial thread"
msgstr "졜초 μŠ€λ ˆλ“œμ— TLS 데이터 ꡬ쑰λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1239
msgid "cannot handle TLS data"
msgstr "TLS 데이터λ₯Ό μ²˜λ¦¬ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1258
msgid "object file has no loadable segments"
msgstr "였브젝트 νŒŒμΌμ— 읽어듀일 수 μžˆλŠ” μ„Ήμ…˜μ΄ μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1294
msgid "failed to map segment from shared object"
msgstr "동적 였브젝트의 μ„Έκ·Έλ¨ΌνŠΈλ₯Ό λ§€ν•‘ν•˜λŠ” μ‹€νŒ¨"

#: elf/dl-load.c:1320
msgid "cannot dynamically load executable"
msgstr "λ™μ μœΌλ‘œ μ‹€ν–‰νŒŒμΌμ„ λ‘œλ“œν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1383 elf/dl-load.c:1492
msgid "cannot change memory protections"
msgstr "λ©”λͺ¨λ¦¬ 보호λ₯Ό λ°”κΏ€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1402
msgid "cannot map zero-fill pages"
msgstr "0으둜 μ±„μš΄ νŽ˜μ΄μ§€λ₯Ό λ§€ν•‘ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1416
msgid "object file has no dynamic section"
msgstr "였브젝트 νŒŒμΌμ— 동적 μ„Ήμ…˜μ΄ μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1439
msgid "shared object cannot be dlopen()ed"
msgstr "동적 μ˜€λΈŒμ νŠΈλŠ” dlopen()될 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1452
msgid "cannot allocate memory for program header"
msgstr "ν”„λ‘œκ·Έλž¨ 헀더에 λŒ€ν•œ λ©”λͺ¨λ¦¬λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1469 elf/dl-open.c:195
msgid "invalid caller"
msgstr "ν˜ΈμΆœν•œ 츑이 μ˜¬λ°”λ₯΄μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1512
msgid "cannot enable executable stack as shared object requires"
msgstr "μ‹€ν–‰ν•  수 μžˆλŠ” μŠ€νƒμ„ 곡유 였브젝트 ν•„μˆ˜μš”μ†Œλ‘œ λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1525
msgid "cannot close file descriptor"
msgstr "파일 λ””μŠ€ν¬λ¦½ν„°λ₯Ό 닫을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1755
msgid "file too short"
msgstr "파일이 λ„ˆλ¬΄ μ§§μŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1791
msgid "invalid ELF header"
msgstr "잘λͺ»λœ ELF 헀더"

#: elf/dl-load.c:1803
msgid "ELF file data encoding not big-endian"
msgstr "ELF 파일 데이터 인코딩이 λΉ…μΈλ””μ•ˆμ΄ μ•„λ‹™λ‹ˆλ‹€"

#: elf/dl-load.c:1805
msgid "ELF file data encoding not little-endian"
msgstr "ELF 파일 데이터 인코딩이 λ¦¬ν‹€μΈλ””μ•ˆμ΄ μ•„λ‹™λ‹ˆλ‹€"

#: elf/dl-load.c:1809
msgid "ELF file version ident does not match current one"
msgstr "ELF 파일 버전 identκ°€ ν˜„μž¬ ident와 λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1813
msgid "ELF file OS ABI invalid"
msgstr "ELF 파일 OS ABIκ°€ 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1816
msgid "ELF file ABI version invalid"
msgstr "ELF 파일 ABI 버전이 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1819
msgid "nonzero padding in e_ident"
msgstr "e_ident μ•ˆμ— 0이 μ•„λ‹Œ 채움"

#: elf/dl-load.c:1822
msgid "internal error"
msgstr "λ‚΄λΆ€ 였λ₯˜"

#: elf/dl-load.c:1829
msgid "ELF file version does not match current one"
msgstr "ELF 파일 버전이 ν˜„μž¬ 버전과 λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1837
msgid "only ET_DYN and ET_EXEC can be loaded"
msgstr "ET_DYNκ³Ό ET_EXECλ§Œμ„ 읽어듀일 수 μžˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:1843
msgid "ELF file's phentsize not the expected size"
msgstr "ELF 파일의 phentsizeκ°€ μ˜ˆμƒκ³Ό λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/dl-load.c:2361
msgid "wrong ELF class: ELFCLASS64"
msgstr "ELF ν΄λž˜μŠ€κ°€ ν‹€λ ΈμŠ΅λ‹ˆλ‹€: ELFCLASS64"

#: elf/dl-load.c:2362
msgid "wrong ELF class: ELFCLASS32"
msgstr "ELF ν΄λž˜μŠ€κ°€ ν‹€λ ΈμŠ΅λ‹ˆλ‹€: ELFCLASS32"

#: elf/dl-load.c:2365
msgid "cannot open shared object file"
msgstr "동적 였브젝트 νŒŒμΌμ„ μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-lookup.c:753 ports/sysdeps/mips/dl-lookup.c:771
msgid "relocation error"
msgstr "λ¦¬λ‘œμΌ€μ΄μ…˜ 였λ₯˜"

#: elf/dl-lookup.c:780 ports/sysdeps/mips/dl-lookup.c:798
msgid "symbol lookup error"
msgstr "심볼 μ°ΎκΈ° 였λ₯˜"

#: elf/dl-open.c:102
msgid "cannot extend global scope"
msgstr "μ „μ—­ μŠ€μ½”ν”„λ₯Ό ν™•μž₯ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-open.c:520
msgid "TLS generation counter wrapped!  Please report this."
msgstr "TLS λ§Œλ“€κΈ° μΉ΄μš΄ν„°κ°€ κ²Ήμ³€μŠ΅λ‹ˆλ‹€!  이 문제λ₯Ό μ•Œλ € μ£Όμ‹­μ‹œμ˜€."

#: elf/dl-open.c:542
msgid "cannot load any more object with static TLS"
msgstr "정적 TLS에 였브젝트λ₯Ό 더 읽어듀일 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-open.c:599
msgid "invalid mode for dlopen()"
msgstr "dlopen()에 잘λͺ»λœ λͺ¨λ“œ"

#: elf/dl-open.c:616
msgid "no more namespaces available for dlmopen()"
msgstr "dlmopen()에 μ‚¬μš©ν•  수 μžˆλŠ” λ„€μž„μŠ€νŽ˜μ΄μŠ€κ°€ 더 이상 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-open.c:634
msgid "invalid target namespace in dlmopen()"
msgstr "dlmopen()에 λŒ€μƒ λ„€μž„μŠ€νŽ˜μ΄μŠ€κ°€ 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: elf/dl-reloc.c:120
msgid "cannot allocate memory in static TLS block"
msgstr "정적 TLS λΈ”λŸ­μ—λŠ” λ©”λͺ¨λ¦¬λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-reloc.c:212
msgid "cannot make segment writable for relocation"
msgstr "λ¦¬λ‘œμΌ€μ΄μ…˜μ„ μœ„ν•΄ μ„Έκ·Έλ¨ΌνŠΈλ₯Ό μ“°κΈ° κ°€λŠ₯ν•˜λ„λ‘ λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-reloc.c:275
#, c-format
msgid "%s: no PLTREL found in object %s\n"
msgstr "%s: %s μ˜€λΈŒμ νŠΈμ— PLTREL이 μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/dl-reloc.c:286
#, c-format
msgid "%s: out of memory to store relocation results for %s\n"
msgstr "%s: %s에 λŒ€ν•œ λ¦¬λ‘œμΌ€μ΄μ…˜ κ²°κ³Όλ₯Ό μ €μž₯ν•  λ©”λͺ¨λ¦¬κ°€ λΆ€μ‘±ν•©λ‹ˆλ‹€\n"

#: elf/dl-reloc.c:302
msgid "cannot restore segment prot after reloc"
msgstr "λ¦¬λ‘œμΌ€μ΄μ…˜ 뒀에 prot μ„Έκ·Έλ¨ΌνŠΈλ₯Ό 볡ꡬ할 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-reloc.c:331
msgid "cannot apply additional memory protection after relocation"
msgstr "λ¦¬λ‘œμΌ€μ΄μ…˜ 뒀에 μΆ”κ°€λ‘œ λ©”λͺ¨λ¦¬ 보호λ₯Ό μ μš©ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-sym.c:153
msgid "RTLD_NEXT used in code not dynamically loaded"
msgstr "λ™μ μœΌλ‘œ μ μž¬ν•˜μ§€ μ•Šμ€ μ½”λ“œμ— RTLD_NEXTλ₯Ό μ‚¬μš©ν•¨"

#: elf/dl-tls.c:875
msgid "cannot create TLS data structures"
msgstr "TLS 데이터 ꡬ쑰λ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/dl-version.c:166
msgid "version lookup error"
msgstr "버전 μ°ΎκΈ° 였λ₯˜"

#: elf/dl-version.c:296
msgid "cannot allocate version reference table"
msgstr "버전 μ°Έμ‘° ν…Œμ΄λΈ”μ„ ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:141
msgid "Print cache"
msgstr "μΊμ‹œ ν‘œμ‹œ"

#: elf/ldconfig.c:142
msgid "Generate verbose messages"
msgstr "더 λ§Žμ€ λ©”μ‹œμ§€ ν‘œμ‹œ"

#: elf/ldconfig.c:143
msgid "Don't build cache"
msgstr "μΊμ‹œλ₯Ό λ§Œλ“€μ§€ μ•ŠμŒ"

#: elf/ldconfig.c:144
msgid "Don't generate links"
msgstr "링크λ₯Ό λ§Œλ“€μ§€ μ•ŠμŒ"

#: elf/ldconfig.c:145
msgid "Change to and use ROOT as root directory"
msgstr "<루트>둜 μ΄λ™ν•œ λ‹€μŒ <루트>λ₯Ό 루트 λ””λ ‰ν„°λ¦¬λ‘œ μ‚¬μš©ν•©λ‹ˆλ‹€"

#: elf/ldconfig.c:145
msgid "ROOT"
msgstr "<루트>"

#: elf/ldconfig.c:146
msgid "CACHE"
msgstr "<μΊμ‹œ>"

#: elf/ldconfig.c:146
msgid "Use CACHE as cache file"
msgstr "μΊμ‹œ 파일둜 <μΊμ‹œ>λ₯Ό μ‚¬μš©ν•©λ‹ˆλ‹€"

#: elf/ldconfig.c:147
msgid "CONF"
msgstr "<μ„€μ •>"

#: elf/ldconfig.c:147
msgid "Use CONF as configuration file"
msgstr "μ„€μ • 파일둜 <μ„€μ •>을 μ‚¬μš©ν•©λ‹ˆλ‹€"

#: elf/ldconfig.c:148
msgid "Only process directories specified on the command line.  Don't build cache."
msgstr "λͺ…령행에 μ§€μ •ν•œ λ””λ ‰ν„°λ¦¬λ§Œ μ²˜λ¦¬ν•©λ‹ˆλ‹€.  μΊμ‹œλ₯Ό λ§Œλ“€μ§€ μ•ŠμŠ΅λ‹ˆλ‹€."

#: elf/ldconfig.c:149
msgid "Manually link individual libraries."
msgstr "μˆ˜λ™μœΌλ‘œ 각각의 라이브러리λ₯Ό λ§ν¬ν•˜μ‹­μ‹œμ˜€."

#: elf/ldconfig.c:150
msgid "FORMAT"
msgstr "<ν˜•μ‹>"

#: elf/ldconfig.c:150
msgid "Format to use: new, old or compat (default)"
msgstr "μ‚¬μš©ν•  수 μžˆλŠ” ν˜•μ‹: new, old, compat (κΈ°λ³Έκ°’)"

#: elf/ldconfig.c:151
msgid "Ignore auxiliary cache file"
msgstr "보쑰 μΊμ‹œ 파일 λ¬΄μ‹œ"

#: elf/ldconfig.c:159
msgid "Configure Dynamic Linker Run Time Bindings."
msgstr "동적 링컀의 λŸ°νƒ€μž„ 바인딩을 μ„€μ •ν•©λ‹ˆλ‹€."

#: elf/ldconfig.c:346
#, c-format
msgid "Path `%s' given more than once"
msgstr "`%s' κ²½λ‘œκ°€ μ—¬λŸ¬λ²ˆ μ£Όμ–΄μ‘ŒμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:386
#, c-format
msgid "%s is not a known library type"
msgstr "%s은(λŠ”) μ•Œλ €μ§„ 라이브러리 νƒ€μž…μ΄ μ•„λ‹™λ‹ˆλ‹€"

#: elf/ldconfig.c:414
#, c-format
msgid "Can't stat %s"
msgstr "%s에 stat()ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:488
#, c-format
msgid "Can't stat %s\n"
msgstr "%s에 stat()ν•  수 μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/ldconfig.c:498
#, c-format
msgid "%s is not a symbolic link\n"
msgstr "%s은(λŠ”) 심볼릭 링크가 μ•„λ‹™λ‹ˆλ‹€\n"

#: elf/ldconfig.c:517
#, c-format
msgid "Can't unlink %s"
msgstr "%s을(λ₯Ό) μ§€μšΈ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:523
#, c-format
msgid "Can't link %s to %s"
msgstr "%s을(λ₯Ό) %s(으)둜 링크할 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:529
msgid " (changed)\n"
msgstr " (λ°”λ€œ)\n"

#: elf/ldconfig.c:531
msgid " (SKIPPED)\n"
msgstr " (μ§€λ‚˜μΉ¨)\n"

#: elf/ldconfig.c:586
#, c-format
msgid "Can't find %s"
msgstr "%s을(λ₯Ό) 찾을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:602 elf/ldconfig.c:775 elf/ldconfig.c:834 elf/ldconfig.c:868
#, c-format
msgid "Cannot lstat %s"
msgstr "%s에 lstat()ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:609
#, c-format
msgid "Ignored file %s since it is not a regular file."
msgstr "일반 파일이 μ•„λ‹ˆλ―€λ‘œ %s νŒŒμΌμ„ λ¬΄μ‹œν•©λ‹ˆλ‹€."

#: elf/ldconfig.c:618
#, c-format
msgid "No link created since soname could not be found for %s"
msgstr "%s에 λŒ€ν•œ soname을 찾을 수 μ—†μœΌλ―€λ‘œ 링크λ₯Ό λ§Œλ“€μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:701
#, c-format
msgid "Can't open directory %s"
msgstr "디렉터리 %s을(λ₯Ό) μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:793 elf/ldconfig.c:855 elf/readlib.c:90
#, c-format
msgid "Input file %s not found.\n"
msgstr "μž…λ ₯ 파일 %s을(λ₯Ό) μ°Ύμ§€ λͺ»ν–ˆμŠ΅λ‹ˆλ‹€.\n"

#: elf/ldconfig.c:800
#, c-format
msgid "Cannot stat %s"
msgstr "%s에 stat()ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:929
#, c-format
msgid "libc5 library %s in wrong directory"
msgstr "libc5 library %s이(κ°€) 잘λͺ»λœ 디렉터리에 μžˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:932
#, c-format
msgid "libc6 library %s in wrong directory"
msgstr "libc6 library %s이(κ°€) 잘λͺ»λœ 디렉터리에 μžˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:935
#, c-format
msgid "libc4 library %s in wrong directory"
msgstr "libc4 library %s이(κ°€) 잘λͺ»λœ 디렉터리에 μžˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:963
#, c-format
msgid "libraries %s and %s in directory %s have same soname but different type."
msgstr "디렉터리 %s의 라이브러리 %sκ³Ό(와) %s이(κ°€) 같은 soname을 κ°€μ§€κ³  μžˆμ§€λ§Œ νƒ€μž…μ΄ λ‹€λ¦…λ‹ˆλ‹€."

#: elf/ldconfig.c:1072
#, c-format
msgid "Warning: ignoring configuration file that cannot be opened: %s"
msgstr "κ²½κ³ : μ—΄ 수 μ—†λŠ” μ„€μ • νŒŒμΌμ„ λ¬΄μ‹œν•©λ‹ˆλ‹€: %s"

#: elf/ldconfig.c:1138
#, c-format
msgid "%s:%u: bad syntax in hwcap line"
msgstr "%s:%u: hwcap μ€„μ˜ 문법이 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1144
#, c-format
msgid "%s:%u: hwcap index %lu above maximum %u"
msgstr "%s:%u: hwcap 인덱슀 %lu은(λŠ”) μ΅œλŒ€κ°’ %u을(λ₯Ό) λ„˜μ–΄κ°”μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1151 elf/ldconfig.c:1159
#, c-format
msgid "%s:%u: hwcap index %lu already defined as %s"
msgstr "%s:%u: hwcap 인덱슀 %lu은(λŠ”) 이미 %s(으)둜 μ •μ˜λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1162
#, c-format
msgid "%s:%u: duplicate hwcap %lu %s"
msgstr "%s:%u: μ€‘λ³΅λœ hwcap %lu %s"

#: elf/ldconfig.c:1184
#, c-format
msgid "need absolute file name for configuration file when using -r"
msgstr "-r μ˜΅μ…˜μ„ μ‚¬μš©ν•  경우 μ„€μ • 파일의 μ ˆλŒ€ 파일 이름이 ν•„μš”ν•©λ‹ˆλ‹€"

#: elf/ldconfig.c:1191 locale/programs/xmalloc.c:64 malloc/obstack.c:432
#: malloc/obstack.c:434 posix/getconf.c:1076 posix/getconf.c:1296
#, c-format
msgid "memory exhausted"
msgstr "λ©”λͺ¨λ¦¬κ°€ λ°”λ‹₯남"

#: elf/ldconfig.c:1223
#, c-format
msgid "%s:%u: cannot read directory %s"
msgstr "%s:%u: %s 디렉터리λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1267
#, c-format
msgid "relative path `%s' used to build cache"
msgstr "μΊμ‹œλ₯Ό λ§Œλ“œλŠ” 데 μƒλŒ€ 경둜인 `%s' 경둜λ₯Ό μ‚¬μš©ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1297
#, c-format
msgid "Can't chdir to /"
msgstr "/둜 디렉터리λ₯Ό 이동할 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldconfig.c:1338
#, c-format
msgid "Can't open cache file directory %s\n"
msgstr "μΊμ‹œ 파일 디렉터리 `%s'을(λ₯Ό) μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/ldd.bash.in:42
msgid "Written by %s and %s.\n"
msgstr "λ§Œλ“  μ‚¬λžŒ: %s 및 %s.\n"

#: elf/ldd.bash.in:47
msgid ""
"Usage: ldd [OPTION]... FILE...\n"
"      --help              print this help and exit\n"
"      --version           print version information and exit\n"
"  -d, --data-relocs       process data relocations\n"
"  -r, --function-relocs   process data and function relocations\n"
"  -u, --unused            print unused direct dependencies\n"
"  -v, --verbose           print all information\n"
msgstr ""
"μ‚¬μš©λ²•: ldd [μ˜΅μ…˜]... <파일>...\n"
"      --help              이 도움말을 좜λ ₯ν•˜κ³  λλ‚©λ‹ˆλ‹€\n"
"      --version           버전 정보λ₯Ό ν‘œμ‹œν•˜κ³  λλ‚©λ‹ˆλ‹€\n"
"  -d, --data-relocs       데이터 λ¦¬λ‘œμΌ€μ΄μ…˜μ„ μ²˜λ¦¬ν•©λ‹ˆλ‹€\n"
"  -r, --function-relocs   데이터 및 ν•¨μˆ˜ λ¦¬λ‘œμΌ€μ΄μ…˜μ„ μ²˜λ¦¬ν•©λ‹ˆλ‹€\n"
"  -u, --unused            μ‚¬μš©ν•˜μ§€ μ•ŠλŠ” 직접 μ˜μ‘΄μ„±μ„ ν‘œμ‹œν•©λ‹ˆλ‹€\n"
"  -v, --verbose           전체 정보λ₯Ό ν‘œμ‹œν•©λ‹ˆλ‹€\n"

#: elf/ldd.bash.in:80
msgid "ldd: option \\`$1' is ambiguous"
msgstr "ldd: \\`$1' μ˜΅μ…˜μ€ λͺ¨ν˜Έν•œ μ˜΅μ…˜μž…λ‹ˆλ‹€"

#: elf/ldd.bash.in:87
msgid "unrecognized option"
msgstr "인식할 수 μ—†λŠ” μ˜΅μ…˜"

#: elf/ldd.bash.in:88 elf/ldd.bash.in:126
msgid "Try \\`ldd --help' for more information."
msgstr "더 λ§Žμ€ 정보λ₯Ό 보렀면 \\`ldd --help' ν•˜μ‹­μ‹œμ˜€."

#: elf/ldd.bash.in:125
msgid "missing file arguments"
msgstr "파일 μΈμžκ°€ μ—†μŠ΅λ‹ˆλ‹€"

#. TRANS No such file or directory.  This is a ``file doesn't exist'' error
#. TRANS for ordinary files that are referenced in contexts where they are
#. TRANS expected to already exist.
#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36
msgid "No such file or directory"
msgstr "그런 νŒŒμΌμ΄λ‚˜ 디렉터리가 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldd.bash.in:151 inet/rcmd.c:488
msgid "not regular file"
msgstr "일반 파일이 μ•„λ‹˜"

#: elf/ldd.bash.in:154
msgid "warning: you do not have execution permission for"
msgstr "κ²½κ³ : λ‹€μŒμ— λŒ€ν•΄ μ‹€ν–‰ κΆŒν•œμ΄ μ—†μŠ΅λ‹ˆλ‹€"

#: elf/ldd.bash.in:183
msgid "\tnot a dynamic executable"
msgstr "\t동적 μ‹€ν–‰ 파일이 μ•„λ‹™λ‹ˆλ‹€"

#: elf/ldd.bash.in:191
msgid "exited with unknown exit code"
msgstr "μ•Œ 수 μ—†λŠ” 였λ₯˜ μ½”λ“œλ‘œ λλ‚¬μŠ΅λ‹ˆλ‹€"

#: elf/ldd.bash.in:196
msgid "error: you do not have read permission for"
msgstr "였λ₯˜: λ‹€μŒμ— λŒ€ν•΄ 읽기 κΆŒν•œμ΄ μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:105
#, c-format
msgid "cannot find program header of process"
msgstr "ν”„λ‘œμ„ΈμŠ€μ˜ ν”„λ‘œκ·Έλž¨ 헀더λ₯Ό 찾을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:110
#, c-format
msgid "cannot read program header"
msgstr "ν”„λ‘œκ·Έλž¨ 헀더λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:135
#, c-format
msgid "cannot read dynamic section"
msgstr "동적 μ„Ήμ…˜μ„ 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:147
#, c-format
msgid "cannot read r_debug"
msgstr "r_debugλ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:167
#, c-format
msgid "cannot read program interpreter"
msgstr "ν”„λ‘œκ·Έλž¨ 인터프리터λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:196
#, c-format
msgid "cannot read link map"
msgstr "링크 맡을 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd-xx.c:207
#, c-format
msgid "cannot read object name"
msgstr "였브젝트 이름을 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:62
msgid "List dynamic shared objects loaded into process."
msgstr "ν”„λ‘œμ„ΈμŠ€κ°€ 읽어듀인 동적 곡유 였브젝트의 λͺ©λ‘μ„ ν‘œμ‹œν•©λ‹ˆλ‹€."

#: elf/pldd.c:66
msgid "PID"
msgstr "<PID>"

#: elf/pldd.c:97
#, c-format
msgid "Exactly one parameter with process ID required.\n"
msgstr "μ •ν™•νžˆ 1개의 ν”„λ‘œμ„ΈμŠ€ ID νŒŒλΌλ―Έν„°κ°€ ν•„μš”ν•©λ‹ˆλ‹€.\n"

#: elf/pldd.c:109
#, c-format
msgid "invalid process ID '%s'"
msgstr "잘λͺ»λœ ν”„λ‘œμ„ΈμŠ€ ID '%s'"

#: elf/pldd.c:117
#, c-format
msgid "cannot open %s"
msgstr "%s을(λ₯Ό) μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:142
#, c-format
msgid "cannot open %s/task"
msgstr "%s/taskλ₯Ό μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:145
#, c-format
msgid "cannot prepare reading %s/task"
msgstr "%s/task 읽기λ₯Ό μ€€λΉ„ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:158
#, c-format
msgid "invalid thread ID '%s'"
msgstr "잘λͺ»λœ μŠ€λ ˆλ“œ ID '%s'"

#: elf/pldd.c:169
#, c-format
msgid "cannot attach to process %lu"
msgstr "ν”„λ‘œμ„ΈμŠ€ %luλ²ˆμ— 뢙일 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:261
#, c-format
msgid "cannot get information about process %lu"
msgstr "ν”„λ‘œμ„ΈμŠ€ %lu번의 정보λ₯Ό 얻을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/pldd.c:274
#, c-format
msgid "process %lu is no ELF program"
msgstr "ν”„λ‘œμ„ΈμŠ€ %luλ²ˆμ€ ELF ν”„λ‘œκ·Έλž¨μ΄ μ•„λ‹™λ‹ˆλ‹€"

#: elf/readelflib.c:34
#, c-format
msgid "file %s is truncated\n"
msgstr "%s 파일이 μž˜λΌμ‘ŒμŠ΅λ‹ˆλ‹€\n"

#: elf/readelflib.c:66
#, c-format
msgid "%s is a 32 bit ELF file.\n"
msgstr "%s은(λŠ”) 32λΉ„νŠΈ ELF νŒŒμΌμž…λ‹ˆλ‹€.\n"

#: elf/readelflib.c:68
#, c-format
msgid "%s is a 64 bit ELF file.\n"
msgstr "%s은(λŠ”) 64λΉ„νŠΈ ELF νŒŒμΌμž…λ‹ˆλ‹€.\n"

#: elf/readelflib.c:70
#, c-format
msgid "Unknown ELFCLASS in file %s.\n"
msgstr "%s 파일이 μ•Œλ €μ§€μ§€ μ•Šμ€ ELFCLASS.\n"

#: elf/readelflib.c:77
#, c-format
msgid "%s is not a shared object file (Type: %d).\n"
msgstr "%s은(λŠ”) 동적 였브젝트 파일이 μ•„λ‹™λ‹ˆλ‹€(νƒ€μž…: %d).\n"

#: elf/readelflib.c:108
#, c-format
msgid "more than one dynamic segment\n"
msgstr "μ—¬λŸ¬ 개의 동적 μ„Έκ·Έλ¨ΌνŠΈ\n"

#: elf/readlib.c:96
#, c-format
msgid "Cannot fstat file %s.\n"
msgstr "`%s'νŒŒμΌμ— fstat()을 ν•  수 μ—†μŠ΅λ‹ˆλ‹€.\n"

#: elf/readlib.c:107
#, c-format
msgid "File %s is empty, not checked."
msgstr "%s 파일이 빈 νŒŒμΌμ΄λ―€λ‘œ κ²€μ‚¬ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€."

#: elf/readlib.c:113
#, c-format
msgid "File %s is too small, not checked."
msgstr "%s 파일이 λ„ˆλ¬΄ μž‘μ•„μ„œ κ²€μ‚¬ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€."

#: elf/readlib.c:123
#, c-format
msgid "Cannot mmap file %s.\n"
msgstr "파일 `%s'에 mmap()ν•  수 μ—†μŠ΅λ‹ˆλ‹€.\n"

#: elf/readlib.c:161
#, c-format
msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n"
msgstr "%s은(λŠ”) ELF 파일이 μ•„λ‹™λ‹ˆλ‹€ - μ‹œμž‘λΆ€λΆ„μ˜ 맀직 λ°”μ΄νŠΈκ°€ ν‹€λ ΈμŠ΅λ‹ˆλ‹€.\n"

#: elf/sln.c:84
#, c-format
msgid ""
"Usage: sln src dest|file\n"
"\n"
msgstr ""
"μ‚¬μš©λ²•: sln 원본 λŒ€μƒ|파일\n"
"\n"

#: elf/sln.c:109
#, c-format
msgid "%s: file open error: %m\n"
msgstr "%s: 파일 μ—΄κΈ° 였λ₯˜: %m\n"

#: elf/sln.c:146
#, c-format
msgid "No target in line %d\n"
msgstr "%d번 쀄에 λͺ©ν‘œκ°€ μ—†μŠ΅λ‹ˆλ‹€\n"

#: elf/sln.c:178
#, c-format
msgid "%s: destination must not be a directory\n"
msgstr "%s: λŒ€μƒμ΄ 디렉터리면 μ•ˆ λ©λ‹ˆλ‹€\n"

#: elf/sln.c:184
#, c-format
msgid "%s: failed to remove the old destination\n"
msgstr "%s: μ˜ˆμ „ λŒ€μƒμ„ μ œκ±°ν•˜λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€\n"

#: elf/sln.c:192
#, c-format
msgid "%s: invalid destination: %s\n"
msgstr "%s: λŒ€μƒμ΄ 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€: %s\n"

#: elf/sln.c:207 elf/sln.c:216
#, c-format
msgid "Invalid link from \"%s\" to \"%s\": %s\n"
msgstr "\"%s\"μ—μ„œ \"%s\"(으)둜 링크가 잘λͺ»λ˜μ—ˆμŠ΅λ‹ˆλ‹€: %s\n"

#: elf/sotruss.ksh:32
#, sh-format
msgid ""
"Usage: sotruss [OPTION...] [--] EXECUTABLE [EXECUTABLE-OPTION...]\n"
"  -F, --from FROMLIST     Trace calls from objects on FROMLIST\n"
"  -T, --to TOLIST         Trace calls to objects on TOLIST\n"
"\n"
"  -e, --exit              Also show exits from the function calls\n"
"  -f, --follow            Trace child processes\n"
"  -o, --output FILENAME   Write output to FILENAME (or FILENAME.$PID in case\n"
"\t\t\t  -f is also used) instead of standard error\n"
"\n"
"  -?, --help              Give this help list\n"
"      --usage             Give a short usage message\n"
"      --version           Print program version"
msgstr ""
"μ‚¬μš©λ²•: sotruss [μ˜΅μ…˜...] [--] <λͺ…λ Ήμ–΄> [<λͺ…λ Ήμ–΄ μ˜΅μ…˜>...]\n"
"  -F, --from <원본λͺ©λ‘>    <원본λͺ©λ‘>의 μ˜€λΈŒμ νŠΈμ—μ„œ μ˜€λŠ” 호좜 좔적\n"
"  -T, --to <λŒ€μƒλͺ©λ‘>      <λŒ€μƒλͺ©λ‘>의 였브젝트둜 κ°€λŠ” 호좜 좔적\n"
"\n"
"  -e, --exit               ν•¨μˆ˜ ν˜ΈμΆœμ—μ„œ λ‚˜κ°€κΈ° ν‘œμ‹œ\n"
"  -f, --follow             ν•˜μœ„ ν”„λ‘œμ„ΈμŠ€ 좔적\n"
"  -o, --output <νŒŒμΌμ΄λ¦„>  ν‘œμ€€ 였λ₯˜ λŒ€μ‹  <νŒŒμΌμ΄λ¦„> νŒŒμΌμ— 좜λ ₯\n"
"                           (λ˜λŠ” -f μ˜΅μ…˜λ„ μ‚¬μš©ν•œ 경우 FILENAME.$PID 파일)\n"
"\n"
"  -?, --help               이 도움말을 좜λ ₯ν•©λ‹ˆλ‹€\n"
"  -?, --usage              짧은 μ‚¬μš©λ²•μ„ 좜λ ₯ν•©λ‹ˆλ‹€\n"
"      --version            버전 정보λ₯Ό 좜λ ₯ν•©λ‹ˆλ‹€"

#: elf/sotruss.ksh:46
msgid "Mandatory arguments to long options are also mandatory for any corresponding\\nshort options.\\n"
msgstr "κΈ΄ μ˜΅μ…˜μ—μ„œ λŒ€ν•΄ κΌ­ ν•„μš”ν•œ μΈμžλŠ” κ·Έ κΈ΄ μ˜΅μ…˜μ— ν•΄λ‹Ήν•˜λŠ” 짧은 μ˜΅μ…˜μ—μ„œλ„\\nκΌ­ ν•„μš”ν•œ μ˜΅μ…˜μž…λ‹ˆλ‹€.\\n"

#: elf/sotruss.ksh:55
msgid "%s: option requires an argument -- '%s'\\n"
msgstr "%s: 이 μ˜΅μ…˜μ€ μΈμˆ˜κ°€ ν•„μš”ν•©λ‹ˆλ‹€ -- '%s'\\n"

#: elf/sotruss.ksh:61
msgid "%s: option is ambiguous; possibilities:"
msgstr "%s: λͺ¨ν˜Έν•œ μ˜΅μ…˜μž…λ‹ˆλ‹€. κ°€λŠ₯ν•œ μ˜΅μ…˜μ€:"

#: elf/sotruss.ksh:79
msgid "Written by %s.\\n"
msgstr "λ§Œλ“  μ‚¬λžŒ: %s.\\n"

#: elf/sotruss.ksh:86
msgid ""
"Usage: %s [-ef] [-F FROMLIST] [-o FILENAME] [-T TOLIST] [--exit]\n"
"\t    [--follow] [--from FROMLIST] [--output FILENAME] [--to TOLIST]\n"
"\t    [--help] [--usage] [--version] [--]\n"
"\t    EXECUTABLE [EXECUTABLE-OPTION...]\\n"
msgstr ""
"μ‚¬μš©λ²•: %s [-ef] [-F <원본λͺ©λ‘>] [-o <νŒŒμΌμ΄λ¦„>] [-T <λŒ€μƒλͺ©λ‘>] [--exit]\n"
"\t    [--follow] [--from <원본λͺ©λ‘>] [--output <νŒŒμΌμ΄λ¦„>]\n"
"\t    [--to <λŒ€μƒλͺ©λ‘>] [--help] [--usage] [--version] [--]\n"
"\t    <λͺ…λ Ήμ–΄> [λͺ…λ Ήμ–΄-μ˜΅μ…˜...]\\n"

#: elf/sotruss.ksh:134
msgid "%s: unrecognized option '%c%s'\\n"
msgstr "%s: 인식할 수 μ—†λŠ” μ˜΅μ…˜ '%c%s'\\n"

#: elf/sprof.c:77
msgid "Output selection:"
msgstr "좜λ ₯ 선택:"

#: elf/sprof.c:79
msgid "print list of count paths and their number of use"
msgstr "λ‹¨κ³„μ˜ λͺ©λ‘κ³Ό κ·Έ 각 λ‹¨κ³„μ˜ μ‚¬μš© 횟수λ₯Ό ν‘œμ‹œ"

#: elf/sprof.c:81
msgid "generate flat profile with counts and ticks"
msgstr "νšŸμˆ˜μ™€ ν‹±μˆ˜λ₯Ό κΈ°λ‘ν•œ ν”Œλž« ν”„λ‘œνŒŒμΌμ„ λ§Œλ“ λ‹€"

#: elf/sprof.c:82
msgid "generate call graph"
msgstr "호좜 κ·Έλž˜ν”„λ₯Ό λ§Œλ“¦"

#: elf/sprof.c:89
msgid "Read and display shared object profiling data."
msgstr "곡유 였브젝트 ν”„λ‘œνŒŒμΌ 데이터λ₯Ό 읽고 ν‘œμ‹œν•  수 μ—†μŠ΅λ‹ˆλ‹€."

#: elf/sprof.c:94
msgid "SHOBJ [PROFDATA]"
msgstr "SHOBJ [PROFDATA]"

#: elf/sprof.c:433
#, c-format
msgid "failed to load shared object `%s'"
msgstr "동적 였브젝트 `%s'을(λ₯Ό) μ½λŠ”λ° μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:442
#, c-format
msgid "cannot create internal descriptors"
msgstr "λ‚΄λΆ€ λ””μŠ€ν¬λ¦½ν„°λ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:554
#, c-format
msgid "Reopening shared object `%s' failed"
msgstr "동적 였브젝트 `%s'을(λ₯Ό) λ‹€μ‹œ μ—¬λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:561 elf/sprof.c:656
#, c-format
msgid "reading of section headers failed"
msgstr "μ„Ήμ…˜ 헀더λ₯Ό μ½λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:569 elf/sprof.c:664
#, c-format
msgid "reading of section header string table failed"
msgstr "μ„Ήμ…˜ 헀더 λ¬Έμžμ—΄ ν…Œμ΄λΈ”μ„ μ½λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:595
#, c-format
msgid "*** Cannot read debuginfo file name: %m\n"
msgstr "*** 디버깅정보 파일 이름을 읽을 수 μ—†μŠ΅λ‹ˆλ‹€: %m\n"

#: elf/sprof.c:616
#, c-format
msgid "cannot determine file name"
msgstr "파일 이름을 νŒŒμ•…ν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:649
#, c-format
msgid "reading of ELF header failed"
msgstr "ELF 헀더λ₯Ό μ½λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:685
#, c-format
msgid "*** The file `%s' is stripped: no detailed analysis possible\n"
msgstr "*** `%s' νŒŒμΌμ€ 디버깅 정보λ₯Ό μ œκ±°ν•œ νŒŒμΌμž…λ‹ˆλ‹€: 더 μžμ„Έν•œ 뢄석은 λΆˆκ°€λŠ₯ν•©λ‹ˆλ‹€\n"

#: elf/sprof.c:715
#, c-format
msgid "failed to load symbol data"
msgstr "기호 데이터λ₯Ό μ½λŠ” 데 μ‹€νŒ¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:780
#, c-format
msgid "cannot load profiling data"
msgstr "ν”„λ‘œνŒŒμΌλ§ 데이터λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:789
#, c-format
msgid "while stat'ing profiling data file"
msgstr "ν”„λ‘œνŒŒμΌλ§ 데이터 νŒŒμΌμ„ μ“°λŠ” λ™μ•ˆ"

#: elf/sprof.c:797
#, c-format
msgid "profiling data file `%s' does not match shared object `%s'"
msgstr "ν”„λ‘œνŒŒμΌλ§ 데이터 파일 `%s'은(λŠ”) 동적 였브젝트 `%s'κ³Ό(와) λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:808
#, c-format
msgid "failed to mmap the profiling data file"
msgstr "ν”„λ‘œνŒŒμΌλ§ 데이터 νŒŒμΌμ„ mmapν•˜λŠ” 데 μ‹€νŒ¨"

#: elf/sprof.c:816
#, c-format
msgid "error while closing the profiling data file"
msgstr "ν”„λ‘œνŒŒμΌλ§ 데이터 νŒŒμΌμ„ λ‹«λŠ” 도쀑 였λ₯˜ λ°œμƒ"

#: elf/sprof.c:825 elf/sprof.c:923
#, c-format
msgid "cannot create internal descriptor"
msgstr "λ‚΄λΆ€ λ””μŠ€ν¬λ¦½ν„°λ₯Ό λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: elf/sprof.c:899
#, c-format
msgid "`%s' is no correct profile data file for `%s'"
msgstr "`%s'은(λŠ”) `%s'에 λ§žλŠ” ν”„λ‘œνŒŒμΌ 데이터 파일이 μ•„λ‹™λ‹ˆλ‹€"

#: elf/sprof.c:1080 elf/sprof.c:1138
#, c-format
msgid "cannot allocate symbol data"
msgstr "기호 데이터λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: iconv/iconv_charmap.c:141 iconv/iconv_prog.c:448
#, c-format
msgid "cannot open output file"
msgstr "좜λ ₯ νŒŒμΌμ„ μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: iconv/iconv_charmap.c:187 iconv/iconv_prog.c:311
#, c-format
msgid "error while closing input `%s'"
msgstr "`%s' μž…λ ₯을 λ‹«λŠ” 도쀑 였λ₯˜ λ°œμƒ"

#: iconv/iconv_charmap.c:461
#, c-format
msgid "illegal input sequence at position %Zd"
msgstr "%Zd μœ„μΉ˜μ— 잘λͺ»λœ μž…λ ₯ μˆœμ„œμ—΄μ΄ 있음"

#: iconv/iconv_charmap.c:480 iconv/iconv_prog.c:539
#, c-format
msgid "incomplete character or shift sequence at end of buffer"
msgstr "λ²„νΌμ˜ 끝에 λΆˆμ™„μ „ν•œ 문자 ν˜Ήμ€ μ‰¬ν”„νŠΈ 연속"

#: iconv/iconv_charmap.c:525 iconv/iconv_charmap.c:561 iconv/iconv_prog.c:582
#: iconv/iconv_prog.c:618
#, c-format
msgid "error while reading the input"
msgstr "μž…λ ₯을 μ½λŠ” 도쀑에 였λ₯˜ λ°œμƒ"

#: iconv/iconv_charmap.c:543 iconv/iconv_prog.c:600
#, c-format
msgid "unable to allocate buffer for input"
msgstr "μž…λ ₯을 μœ„ν•œ 버퍼λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:59
msgid "Input/Output format specification:"
msgstr "μž…/좜λ ₯ ν˜•μ‹ μ§€μ •:"

#: iconv/iconv_prog.c:60
msgid "encoding of original text"
msgstr "원 λ¬Έμ„œ 인코딩"

#: iconv/iconv_prog.c:61
msgid "encoding for output"
msgstr "좜λ ₯ 인코딩"

#: iconv/iconv_prog.c:62
msgid "Information:"
msgstr "정보:"

#: iconv/iconv_prog.c:63
msgid "list all known coded character sets"
msgstr "μ•Œλ €μ§„ λͺ¨λ“  λ¬Έμžμ…‹ μ½”λ“œλ₯Ό 열거함"

#: iconv/iconv_prog.c:64 locale/programs/localedef.c:127
msgid "Output control:"
msgstr "좜λ ₯ μ‘°μ •:"

#: iconv/iconv_prog.c:65
msgid "omit invalid characters from output"
msgstr "좜λ ₯μ—μ„œ 잘λͺ»λœ 문자λ₯Ό μ œμ™Έν•©λ‹ˆλ‹€"

#: iconv/iconv_prog.c:66 iconv/iconvconfig.c:128
#: locale/programs/localedef.c:120 locale/programs/localedef.c:122
#: locale/programs/localedef.c:124 locale/programs/localedef.c:145
#: malloc/memusagestat.c:56
msgid "FILE"
msgstr "<파일>"

#: iconv/iconv_prog.c:66
msgid "output file"
msgstr "좜λ ₯ 파일"

#: iconv/iconv_prog.c:67
msgid "suppress warnings"
msgstr "κ²½κ³ λ₯Ό ν‘œμ‹œν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:68
msgid "print progress information"
msgstr "μ§„ν–‰ 정보λ₯Ό ν‘œμ‹œ"

#: iconv/iconv_prog.c:73
msgid "Convert encoding of given files from one encoding to another."
msgstr "μ£Όμ–΄μ§„ 파일의 인코딩을 ν•œ μΈμ½”λ”©μ—μ„œ λ˜λ‹€λ₯Έ μΈμ½”λ”©μœΌλ‘œ λ³€ν™˜ν•¨."

#: iconv/iconv_prog.c:77
msgid "[FILE...]"
msgstr "[파일...]"

#: iconv/iconv_prog.c:233
#, c-format
msgid "conversions from `%s' and to `%s' are not supported"
msgstr "`%s'μ—μ„œ λ³€ν™˜ 및 `%s'(으)둜의 λ³€ν™˜μ€ μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:238
#, c-format
msgid "conversion from `%s' is not supported"
msgstr "`%s'μ—μ„œ λ³€ν™˜μ€ μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:245
#, c-format
msgid "conversion to `%s' is not supported"
msgstr "`%s'둜의 λ³€ν™˜μ€ μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:249
#, c-format
msgid "conversion from `%s' to `%s' is not supported"
msgstr "`%s'μ—μ„œ `%s'둜의 λ³€ν™˜μ€ μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:259
#, c-format
msgid "failed to start conversion processing"
msgstr "λ³€ν™˜μž‘μ—…μ„ μ‹œμž‘ν•˜λŠ”λ° μ‹€νŒ¨"

#: iconv/iconv_prog.c:357
#, c-format
msgid "error while closing output file"
msgstr "좜λ ₯ νŒŒμΌμ„ λ‹«λŠ” 도쀑 였λ₯˜ λ°œμƒ"

#: iconv/iconv_prog.c:458
#, c-format
msgid "conversion stopped due to problem in writing the output"
msgstr "좜λ ₯νŒŒμΌμ— μ“Έ λ•Œ λ°œμƒν•œ 문제둜 λ³€ν™˜μž‘μ—…μ„ μ€‘λ‹¨ν–ˆμŠ΅λ‹ˆλ‹€"

#: iconv/iconv_prog.c:535
#, c-format
msgid "illegal input sequence at position %ld"
msgstr "%ld μœ„μΉ˜μ— 잘λͺ»λœ μž…λ ₯ μˆœμ„œμ—΄μ΄ 있음"

#: iconv/iconv_prog.c:543
#, c-format
msgid "internal error (illegal descriptor)"
msgstr "λ‚΄λΆ€ 였λ₯˜(잘λͺ»λœ λ””μŠ€ν¬λ¦½ν„°)"

#: iconv/iconv_prog.c:546
#, c-format
msgid "unknown iconv() error %d"
msgstr "μ•Œ 수 μ—†λŠ” iconv() 였λ₯˜ %d"

#: iconv/iconv_prog.c:791
msgid ""
"The following list contain all the coded character sets known.  This does\n"
"not necessarily mean that all combinations of these names can be used for\n"
"the FROM and TO command line parameters.  One coded character set can be\n"
"listed with several different names (aliases).\n"
"\n"
"  "
msgstr ""
"λ‹€μŒ λ¦¬μŠ€νŠΈμ— μ•Œλ €μ§„ λͺ¨λ“  λ¬Έμžμ…‹ μ½”λ“œκ°€ λ“€μ–΄ μžˆμŠ΅λ‹ˆλ‹€.  κ·Έλ ‡λ‹€κ³  ν•΄μ„œ\n"
"λͺ…λ Ήν–‰ 인자의 FROMκ³Ό TO μΈμˆ˜μ— μ—¬κΈ°μ˜ λͺ¨λ“  λ¬Έμžμ…‹ μ΄λ¦„μ˜ 쑰합을 μ‚¬μš©ν•  수 \n"
"μžˆλŠ” 것은 μ•„λ‹™λ‹ˆλ‹€.  ν•œκ°œμ˜ λ¬Έμžμ…‹ μ½”λ“œλŠ” λͺ‡κ°€μ§€ λ‹€λ₯Έ 이름(별λͺ…)κ³Ό ν•¨κ»˜ \n"
"μ—΄κ±°ν–ˆμ„ μˆ˜λ„ μžˆμŠ΅λ‹ˆλ‹€.\n"
"\n"
"  "

#: iconv/iconvconfig.c:109
msgid "Create fastloading iconv module configuration file."
msgstr "κ³ μ†λ‘œλ”© iconv λͺ¨λ“ˆ μ„€μ • νŒŒμΌμ„ λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€."

#: iconv/iconvconfig.c:113
msgid "[DIR...]"
msgstr "[디렉터리...]"

#: iconv/iconvconfig.c:126 locale/programs/localedef.c:131
msgid "PATH"
msgstr "<경둜>"

#: iconv/iconvconfig.c:127
msgid "Prefix used for all file accesses"
msgstr "λͺ¨λ“  파일 접근에 μ‚¬μš©ν•˜λŠ” 접두어"

#: iconv/iconvconfig.c:128
msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)"
msgstr "좜λ ₯을 μ„€μΉ˜ν•œ μœ„μΉ˜κ°€ μ•„λ‹ˆλΌ <파일>에 좜λ ₯ν•©λ‹ˆλ‹€ (--prefixλŠ” <파일>에 μ μš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€)"

#: iconv/iconvconfig.c:132
msgid "Do not search standard directories, only those on the command line"
msgstr "ν‘œμ€€ 디렉터리λ₯Ό μ°Ύμ§€ μ•Šκ³ , λͺ…λ Ήν–‰μ˜ λ””λ ‰ν„°λ¦¬λ§Œ μ°ΎμŠ΅λ‹ˆλ‹€"

#: iconv/iconvconfig.c:299
#, c-format
msgid "Directory arguments required when using --nostdlib"
msgstr "--nostdlib μ˜΅μ…˜μ„ μ‚¬μš©ν•˜λ©΄ 디렉터리 μΈμˆ˜κ°€ ν•„μš”ν•©λ‹ˆλ‹€"

#: iconv/iconvconfig.c:341 locale/programs/localedef.c:288
#, c-format
msgid "no output file produced because warnings were issued"
msgstr "κ²½κ³ κ°€ λ‚˜μ™”μœΌλ―€λ‘œ 좜λ ₯ νŒŒμΌμ„ λ§Œλ“€μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: iconv/iconvconfig.c:430
#, c-format
msgid "while inserting in search tree"
msgstr "검색 νŠΈλ¦¬μ— μΆ”κ°€ν•˜λŠ” λ™μ•ˆ"

#: iconv/iconvconfig.c:1239
#, c-format
msgid "cannot generate output file"
msgstr "좜λ ₯ νŒŒμΌμ„ λ§Œλ“€ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: inet/rcmd.c:163
msgid "rcmd: Cannot allocate memory\n"
msgstr "rcmd: λ©”λͺ¨λ¦¬λ₯Ό ν• λ‹Ήν•  수 μ—†μŠ΅λ‹ˆλ‹€\n"

#: inet/rcmd.c:178
msgid "rcmd: socket: All ports in use\n"
msgstr "rcmd: socket: λͺ¨λ“  ν¬νŠΈκ°€ μ‚¬μš© 쀑\n"

#: inet/rcmd.c:206
#, c-format
msgid "connect to address %s: "
msgstr "μ£Όμ†Œ %s에 μ—°κ²°: "

#: inet/rcmd.c:219
#, c-format
msgid "Trying %s...\n"
msgstr "%s μ‹œλ„μ€‘...\n"

#: inet/rcmd.c:255
#, c-format
msgid "rcmd: write (setting up stderr): %m\n"
msgstr "rcmd: write (ν‘œμ€€μ˜€λ₯˜ μ„€μ •): %m\n"

#: inet/rcmd.c:271
#, c-format
msgid "rcmd: poll (setting up stderr): %m\n"
msgstr "rcmd: poll (ν‘œμ€€μ˜€λ₯˜ μ„€μ •): %m\n"

#: inet/rcmd.c:274
msgid "poll: protocol failure in circuit setup\n"
msgstr "poll: 회둜 섀정쀑 κ·œμ•½μ΄ λΆˆμ΄ν–‰λ¨\n"

#: inet/rcmd.c:306
msgid "socket: protocol failure in circuit setup\n"
msgstr "socket: 회둜 섀정쀑 κ·œμ•½μ΄ λΆˆμ΄ν–‰λ¨\n"

#: inet/rcmd.c:330
#, c-format
msgid "rcmd: %s: short read"
msgstr "rcmd: %s: 읽기가 끊겼음"

#: inet/rcmd.c:486
msgid "lstat failed"
msgstr "lstat μ‹€νŒ¨"

#: inet/rcmd.c:493
msgid "cannot open"
msgstr "μ—΄ 수 μ—†μŠ΅λ‹ˆλ‹€"

#: inet/rcmd.c:495
msgid "fstat failed"
msgstr "fstat μ‹€νŒ¨"

#: inet/rcmd.c:497
msgid "bad owner"
msgstr "잘λͺ»λœ μ†Œμœ μž"

#: inet/rcmd.c:499
msgid "writeable by other than owner"
msgstr "μ†Œμœ μžκ°€ μ•„λ‹Œ μ‚¬λžŒμ΄ λ³€κ²½ν•  수 있음"

#: inet/rcmd.c:501
msgid "hard linked somewhere"
msgstr "μ–΄λ”˜κ°€μ— ν•˜λ“œ 링크됨"

#: inet/ruserpass.c:170 inet/ruserpass.c:193
msgid "out of memory"
msgstr "λ©”λͺ¨λ¦¬ λΆ€μ‘±"

#: inet/ruserpass.c:184
msgid "Error: .netrc file is readable by others."
msgstr "였λ₯˜: .netrc νŒŒμΌμ„ λ‹€λ₯Έ μ‚¬λžŒμ΄ 읽을 수 μžˆμŠ΅λ‹ˆλ‹€."

#: inet/ruserpass.c:185
msgid "Remove password or make file unreadable by others."
msgstr "μ•”ν˜Έλ₯Ό μ§€μš°κ±°λ‚˜ νŒŒμΌμ„ λ‹€λ₯Έ μ‚¬λžŒμ΄ 읽을 수 μ—†κ²Œ λ§Œλ“­λ‹ˆλ‹€."

#: inet/ruserpass.c:277
#, c-format
msgid "Unknown .netrc keyword %s"
msgstr "μ•Œ 수 μ—†λŠ” .netrc ν‚€μ›Œλ“œ %s"

#: libidn/nfkc.c:463
msgid "Character out of range for UTF-8"
msgstr "UTF-8 λ²”μœ„λ₯Ό λ²—μ–΄λ‚œ 문자"

#: locale/programs/charmap-dir.c:57
#, c-format
msgid "cannot read character map directory `%s'"
msgstr "`%s' 문자 지도 디렉터리λ₯Ό 읽을 수 μ—†μŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:138
#, c-format
msgid "character map file `%s' not found"
msgstr "`%s' 문자 지도 νŒŒμΌμ„ μ°Ύμ§€ λͺ»ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:195
#, c-format
msgid "default character map file `%s' not found"
msgstr "`%s' κΈ°λ³Έ 문자 지도 νŒŒμΌμ„ μ°Ύμ§€ λͺ»ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:258
#, c-format
msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n"
msgstr "`%s' 문자 μ§€λ„λŠ” ASCII에 ν˜Έν™˜ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. 둜캘이 ISO C에 λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€\n"

#: locale/programs/charmap.c:337
#, c-format
msgid "%s: <mb_cur_max> must be greater than <mb_cur_min>\n"
msgstr "%s: <mb_cur_max>λŠ” <mb_cur_min>보닀 컀야 ν•©λ‹ˆλ‹€\n"

#: locale/programs/charmap.c:357 locale/programs/charmap.c:374
#: locale/programs/repertoire.c:174
#, c-format
msgid "syntax error in prolog: %s"
msgstr "머릿말에 문법 μ• λŸ¬: %s"

#: locale/programs/charmap.c:358
msgid "invalid definition"
msgstr "μ •μ˜κ°€ 잘λͺ»λ˜μ—ˆμŒ"

#: locale/programs/charmap.c:375 locale/programs/locfile.c:125
#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175
msgid "bad argument"
msgstr "잘λͺ»λœ 인수"

#: locale/programs/charmap.c:403
#, c-format
msgid "duplicate definition of <%s>"
msgstr "<%s>을(λ₯Ό) 쀑볡 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:410
#, c-format
msgid "value for <%s> must be 1 or greater"
msgstr "%s에 λŒ€ν•œ 값은 1 이상이어야 ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:422
#, c-format
msgid "value of <%s> must be greater or equal than the value of <%s>"
msgstr "<%s>에 λŒ€ν•œ 값은 <%s>의 값보닀 κ°™κ±°λ‚˜ 컀야 ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:445 locale/programs/repertoire.c:183
#, c-format
msgid "argument to <%s> must be a single character"
msgstr "<%s>에 λŒ€ν•œ μΈμˆ˜λŠ” 단일 λ¬Έμžμ—¬μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:471
msgid "character sets with locking states are not supported"
msgstr "μž κΈˆμƒνƒœμ˜ λ¬Έμžμ…‹μ€ μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:498 locale/programs/charmap.c:552
#: locale/programs/charmap.c:584 locale/programs/charmap.c:678
#: locale/programs/charmap.c:733 locale/programs/charmap.c:774
#: locale/programs/charmap.c:815
#, c-format
msgid "syntax error in %s definition: %s"
msgstr "%s μ •μ˜ 뢀뢄에 문법 였λ₯˜: %s"

#: locale/programs/charmap.c:499 locale/programs/charmap.c:679
#: locale/programs/charmap.c:775 locale/programs/repertoire.c:230
msgid "no symbolic name given"
msgstr "기호λͺ…이 μ£Όμ–΄μ§€μ§€ μ•ŠμŒ"

#: locale/programs/charmap.c:553
msgid "invalid encoding given"
msgstr "잘λͺ»λœ 인코딩이 μ£Όμ–΄μ‘ŒμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:562
msgid "too few bytes in character encoding"
msgstr "문자 인코딩에 λ°”μ΄νŠΈκ°€ λ„ˆλ¬΄ μ μŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:564
msgid "too many bytes in character encoding"
msgstr "문자 인코딩에 λ°”μ΄νŠΈκ°€ λ„ˆλ¬΄ λ§ŽμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:586 locale/programs/charmap.c:734
#: locale/programs/charmap.c:817 locale/programs/repertoire.c:296
msgid "no symbolic name given for end of range"
msgstr "λ²”μœ„μ˜ λκΉŒμ§€ 기호 이름이 μ—†μŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:610 locale/programs/ld-address.c:602
#: locale/programs/ld-collate.c:2767 locale/programs/ld-collate.c:3925
#: locale/programs/ld-ctype.c:2256 locale/programs/ld-ctype.c:3007
#: locale/programs/ld-identification.c:452
#: locale/programs/ld-measurement.c:238 locale/programs/ld-messages.c:332
#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:307
#: locale/programs/ld-numeric.c:368 locale/programs/ld-paper.c:241
#: locale/programs/ld-telephone.c:313 locale/programs/ld-time.c:1221
#: locale/programs/repertoire.c:313
#, c-format
msgid "%1$s: definition does not end with `END %1$s'"
msgstr "%1$s: μ •μ˜κ°€ `END %1$s'(으)둜 λλ‚˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:643
msgid "only WIDTH definitions are allowed to follow the CHARMAP definition"
msgstr "CHARMAP μ •μ˜ λ°”λ‘œ λ‹€μŒμ—λŠ” WIDTH μ •μ˜λ§Œμ΄ κ°€λŠ₯ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:651 locale/programs/charmap.c:714
#, c-format
msgid "value for %s must be an integer"
msgstr "%s에 λŒ€ν•œ 값은 μ •μˆ˜μ—¬μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:842
#, c-format
msgid "%s: error in state machine"
msgstr "%s: μƒνƒœ 기계에 였λ₯˜ λ°œμƒ"

#: locale/programs/charmap.c:850 locale/programs/ld-address.c:618
#: locale/programs/ld-collate.c:2764 locale/programs/ld-collate.c:4118
#: locale/programs/ld-ctype.c:2253 locale/programs/ld-ctype.c:3024
#: locale/programs/ld-identification.c:468
#: locale/programs/ld-measurement.c:254 locale/programs/ld-messages.c:348
#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:323
#: locale/programs/ld-numeric.c:384 locale/programs/ld-paper.c:257
#: locale/programs/ld-telephone.c:329 locale/programs/ld-time.c:1237
#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324
#, c-format
msgid "%s: premature end of file"
msgstr "%s: 파일이 μ™„κ²°ν•˜μ§€ μ•Šμ€ 채 끝남"

#: locale/programs/charmap.c:869 locale/programs/charmap.c:880
#, c-format
msgid "unknown character `%s'"
msgstr "μ•Œ 수 μ—†λŠ” 문자 `%s'"

# λ­” μ†Œλ¦¬μ—¬?
#: locale/programs/charmap.c:888
#, c-format
msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d"
msgstr "λ²”μœ„μ˜ μ‹œμž‘κ³Ό 끝의 λ°”μ΄νŠΈ μ‹œν€€μŠ€ λ°”μ΄νŠΈ μˆ˜κ°€ λ‹€λ¦…λ‹ˆλ‹€: %d 및 %d"

#: locale/programs/charmap.c:993 locale/programs/ld-collate.c:3044
#: locale/programs/repertoire.c:419
msgid "invalid names for character range"
msgstr "문자의 λ²”μœ„λ‘œ 잘λͺ»λœ 이름"

#: locale/programs/charmap.c:1005 locale/programs/repertoire.c:431
msgid "hexadecimal range format should use only capital characters"
msgstr "16μ§„μˆ˜ λ²”μœ„ 포맷은 λŒ€λ¬Έμžλ§Œμ„ μ‚¬μš©ν•΄μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/charmap.c:1023 locale/programs/repertoire.c:449
#, c-format
msgid "<%s> and <%s> are invalid names for range"
msgstr "<%s>κ³Ό(와) <%s>은(λŠ”) 문자의 λ²”μœ„λ‘œ 잘λͺ»λœ μ΄λ¦„μž…λ‹ˆλ‹€"

#: locale/programs/charmap.c:1029 locale/programs/repertoire.c:456
msgid "upper limit in range is smaller than lower limit"
msgstr "λ²”μœ„μ˜ μƒν•œκ°’μ΄ ν•˜ν•œκ°’λ³΄λ‹€ μž‘μŠ΅λ‹ˆλ‹€"

#: locale/programs/charmap.c:1087
msgid "resulting bytes for range not representable."
msgstr "λ²”μœ„μ˜ μ΅œμ’… λ°”μ΄νŠΈμˆ˜λ₯Ό ν‘œμ‹œν•  수 μ—†μŠ΅λ‹ˆλ‹€."

#: locale/programs/ld-address.c:135 locale/programs/ld-collate.c:1558
#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:133
#: locale/programs/ld-measurement.c:94 locale/programs/ld-messages.c:97
#: locale/programs/ld-monetary.c:193 locale/programs/ld-name.c:94
#: locale/programs/ld-numeric.c:98 locale/programs/ld-paper.c:91
#: locale/programs/ld-telephone.c:94 locale/programs/ld-time.c:159
#, c-format
msgid "No definition for %s category found"
msgstr "%s 범주에 λŒ€ν•œ μ •μ˜κ°€ μ—†μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:146 locale/programs/ld-address.c:184
#: locale/programs/ld-address.c:202 locale/programs/ld-address.c:231
#: locale/programs/ld-address.c:303 locale/programs/ld-address.c:322
#: locale/programs/ld-address.c:335 locale/programs/ld-identification.c:146
#: locale/programs/ld-measurement.c:105 locale/programs/ld-monetary.c:205
#: locale/programs/ld-monetary.c:249 locale/programs/ld-monetary.c:265
#: locale/programs/ld-monetary.c:277 locale/programs/ld-name.c:105
#: locale/programs/ld-name.c:142 locale/programs/ld-numeric.c:112
#: locale/programs/ld-numeric.c:126 locale/programs/ld-paper.c:102
#: locale/programs/ld-paper.c:111 locale/programs/ld-telephone.c:105
#: locale/programs/ld-telephone.c:162 locale/programs/ld-time.c:175
#: locale/programs/ld-time.c:196
#, c-format
msgid "%s: field `%s' not defined"
msgstr "%s: `%s' ν•„λ“œλ₯Ό μ •μ˜ν•˜μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:158 locale/programs/ld-address.c:210
#: locale/programs/ld-address.c:240 locale/programs/ld-address.c:278
#: locale/programs/ld-name.c:117 locale/programs/ld-telephone.c:117
#, c-format
msgid "%s: field `%s' must not be empty"
msgstr "%s: `%s' ν•„λ“œλŠ” λΉ„μ–΄ 있으면 μ•ˆ λ©λ‹ˆλ‹€"

#: locale/programs/ld-address.c:170
#, c-format
msgid "%s: invalid escape `%%%c' sequence in field `%s'"
msgstr "%1$s: `%3$s' ν•„λ“œμ— 잘λͺ»λœ μ΄μŠ€μΌ€μ΄ν”„ `%%%2$c' μˆœμ„œμ—΄"

# λ²ˆμ—­: terminology???
#: locale/programs/ld-address.c:221
#, c-format
msgid "%s: terminology language code `%s' not defined"
msgstr "%s: terminology μ–Έμ–΄μ½”λ“œ `%s'이(κ°€) μ •μ˜ν•˜μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:246
#, c-format
msgid "%s: field `%s' must not be defined"
msgstr "%s: `%s' ν•„λ“œλŠ” μ •μ˜ν•΄μ„œλŠ” μ•ˆ λ©λ‹ˆλ‹€"

#: locale/programs/ld-address.c:260 locale/programs/ld-address.c:289
#, c-format
msgid "%s: language abbreviation `%s' not defined"
msgstr "%s: μ–Έμ–΄ μ€„μž„λ§ `%s'이(κ°€) μ •μ˜ν•˜μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:267 locale/programs/ld-address.c:295
#: locale/programs/ld-address.c:329 locale/programs/ld-address.c:341
#, c-format
msgid "%s: `%s' value does not match `%s' value"
msgstr "%s: `%s'의 값은 `%s'의 κ°’κ³Ό λ§žμ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:314
#, c-format
msgid "%s: numeric country code `%d' not valid"
msgstr "%s: κ΅­κ°€ μ½”λ“œ 숫자 `%d'λ²ˆμ€ μ˜¬λ°”λ₯΄μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:510 locale/programs/ld-address.c:547
#: locale/programs/ld-address.c:585 locale/programs/ld-ctype.c:2631
#: locale/programs/ld-identification.c:364
#: locale/programs/ld-measurement.c:221 locale/programs/ld-messages.c:301
#: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735
#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:280
#: locale/programs/ld-numeric.c:263 locale/programs/ld-paper.c:224
#: locale/programs/ld-telephone.c:288 locale/programs/ld-time.c:1126
#: locale/programs/ld-time.c:1168
#, c-format
msgid "%s: field `%s' declared more than once"
msgstr "%s: `%s' ν•„λ“œλ₯Ό μ—¬λŸ¬ 번 μ„ μ–Έν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:514 locale/programs/ld-address.c:552
#: locale/programs/ld-identification.c:368 locale/programs/ld-messages.c:311
#: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739
#: locale/programs/ld-name.c:284 locale/programs/ld-numeric.c:267
#: locale/programs/ld-telephone.c:292 locale/programs/ld-time.c:1020
#: locale/programs/ld-time.c:1089 locale/programs/ld-time.c:1131
#, c-format
msgid "%s: unknown character in field `%s'"
msgstr "%s: `%s' ν•„λ“œμ— μ•Œλ €μ§€μ§€ μ•Šμ€ λ¬Έμžκ°€ μžˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:3923
#: locale/programs/ld-ctype.c:3004 locale/programs/ld-identification.c:449
#: locale/programs/ld-measurement.c:235 locale/programs/ld-messages.c:330
#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:305
#: locale/programs/ld-numeric.c:366 locale/programs/ld-paper.c:239
#: locale/programs/ld-telephone.c:311 locale/programs/ld-time.c:1219
#, c-format
msgid "%s: incomplete `END' line"
msgstr "%s: λΆˆμ™„μ „ν•œ `END' 쀄"

#: locale/programs/ld-address.c:609 locale/programs/ld-collate.c:544
#: locale/programs/ld-collate.c:596 locale/programs/ld-collate.c:892
#: locale/programs/ld-collate.c:905 locale/programs/ld-collate.c:2733
#: locale/programs/ld-collate.c:2754 locale/programs/ld-collate.c:4108
#: locale/programs/ld-ctype.c:1985 locale/programs/ld-ctype.c:2243
#: locale/programs/ld-ctype.c:2829 locale/programs/ld-ctype.c:3015
#: locale/programs/ld-identification.c:459
#: locale/programs/ld-measurement.c:245 locale/programs/ld-messages.c:339
#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:314
#: locale/programs/ld-numeric.c:375 locale/programs/ld-paper.c:248
#: locale/programs/ld-telephone.c:320 locale/programs/ld-time.c:1228
#, c-format
msgid "%s: syntax error"
msgstr "%s: 문법 였λ₯˜"

#: locale/programs/ld-collate.c:419
#, c-format
msgid "`%.*s' already defined in charmap"
msgstr "`%.*s'은(λŠ”) λ¬Έμžλ§΅μ— 이미 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:428
#, c-format
msgid "`%.*s' already defined in repertoire"
msgstr "`%.*s'은(λŠ”) λ ˆνŒŒν† λ¦¬μ— 이미 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:435
#, c-format
msgid "`%.*s' already defined as collating symbol"
msgstr "`%.*s'은(λŠ”) 사전 기호둜 이미 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:442
#, c-format
msgid "`%.*s' already defined as collating element"
msgstr "`%.*s'은(λŠ”) 사전 ν•­λͺ©μœΌλ‘œ 이미 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:473 locale/programs/ld-collate.c:499
#, c-format
msgid "%s: `forward' and `backward' are mutually excluding each other"
msgstr "%s: μ •λ ¬ μˆœμ„œ `forward'와 `backward'λŠ” μ„œλ‘œ λ°°νƒ€μ μž…λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:483 locale/programs/ld-collate.c:509
#: locale/programs/ld-collate.c:525
#, c-format
msgid "%s: `%s' mentioned more than once in definition of weight %d"
msgstr "%1$s: 무게 %3$d의 μ •μ˜μ—μ„œ `%2$s'이(κ°€) μ—¬λŸ¬ 번 λ‚˜νƒ€λ‚¬μŠ΅λ‹ˆλ‹€"

# λ²ˆμ—­: ???? had???
#: locale/programs/ld-collate.c:581
#, c-format
msgid "%s: too many rules; first entry only had %d"
msgstr "%s: κ·œμΉ™μ΄ λ„ˆλ¬΄ 많음; 첫 번째 ν•­λͺ©λ§Œμ΄ %d개λ₯Ό κ°€μ§‘λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:617
#, c-format
msgid "%s: not enough sorting rules"
msgstr "%s: μ •λ ¬ κ·œμΉ™μ΄ μΆ©λΆ„ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:782
#, c-format
msgid "%s: empty weight string not allowed"
msgstr "%s: 빈 weight λ¬Έμžμ—΄μ€ ν—ˆμš©ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:877
#, c-format
msgid "%s: weights must use the same ellipsis symbol as the name"
msgstr "%s: λ¬΄κ²ŒλŠ” 이름에 λ§μ€„μž„ν‘œ 기호λ₯Ό 써야 ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:933
#, c-format
msgid "%s: too many values"
msgstr "%s: 값이 λ„ˆλ¬΄ λ§ŽμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1053 locale/programs/ld-collate.c:1228
#, c-format
msgid "order for `%.*s' already defined at %s:%Zu"
msgstr "`%.*s'의 μˆœμ„œλŠ” 이미 %s:%Zu에 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1103
#, c-format
msgid "%s: the start and the end symbol of a range must stand for characters"
msgstr "%s: λ²”μœ„μ˜ μ‹œμž‘ κΈ°ν˜Έμ™€ 끝 심볼은 문자λ₯Ό λ‚˜νƒ€λ‚΄μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1130
#, c-format
msgid "%s: byte sequences of first and last character must have the same length"
msgstr "%s: 첫번째 λ¬Έμžμ™€ λ§ˆμ§€λ§‰ 문자의 λ°”μ΄νŠΈ μˆœμ„œλŠ” 길이가 κ°™μ•„μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1172
#, c-format
msgid "%s: byte sequence of first character of range is not lower than that of the last character"
msgstr "%s: λ²”μœ„μ—μ„œ 첫번째 문자의 λ°”μ΄νŠΈ μ‹œν€€μŠ€κ°€ λ§ˆμ§€λ§‰ 문자의 λ°”μ΄νŠΈ μ‹œν€€μŠ€λ³΄λ‹€ μž‘μ€ 값이 μ•„λ‹™λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1297
#, c-format
msgid "%s: symbolic range ellipsis must not directly follow `order_start'"
msgstr "%s: 기호 λ²”μœ„ λ§μ€„μž„ν‘œλŠ” `order_start' λ°”λ‘œ 뒀에 λ‚˜μ™€μ„œλŠ” μ•ˆ λ©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1301
#, c-format
msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'"
msgstr "%s: 기호 λ²”μœ„ λ§μ€„μž„ν‘œλŠ” `order_end' λ°”λ‘œ 뒀에 λ‚˜μ™€μ„œλŠ” μ•ˆ λ©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1321 locale/programs/ld-ctype.c:1502
#, c-format
msgid "`%s' and `%.*s' are not valid names for symbolic range"
msgstr "`%s' 및 `%.*s'은(λŠ”) 기호 λ²”μœ„λ‘œ μ˜¬λ°”λ₯Έ 이름이 μ•„λ‹™λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1371 locale/programs/ld-collate.c:3859
#, c-format
msgid "%s: order for `%.*s' already defined at %s:%Zu"
msgstr "%s: `%.*s'에 λŒ€ν•œ μˆœμ„œλŠ” 이미 %s:%Zu에 μ •μ˜ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1380
#, c-format
msgid "%s: `%s' must be a character"
msgstr "%s: `%s'은(λŠ”) 단일 λ¬Έμžμ—¬μ•Ό ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1575
#, c-format
msgid "%s: `position' must be used for a specific level in all sections or none"
msgstr "%s: `position'은 λͺ¨λ“  μ„Ήμ…˜μ˜ νŠΉμ • λ‹¨κ³„μ—μ„œλ§Œ μ‚¬μš©ν•˜κ±°λ‚˜ μ•„μ˜ˆ μ‚¬μš©ν•˜μ§€ 말아야 ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1600
#, c-format
msgid "symbol `%s' not defined"
msgstr "`%s' 심볼은 μ •μ˜ν•˜μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1676 locale/programs/ld-collate.c:1782
#, c-format
msgid "symbol `%s' has the same encoding as"
msgstr "기호 `%s'이(κ°€) 같은 λ‹€μŒκ³Ό μΈμ½”λ”©μž…λ‹ˆλ‹€:"

#: locale/programs/ld-collate.c:1680 locale/programs/ld-collate.c:1786
#, c-format
msgid "symbol `%s'"
msgstr "기호 `%s'"

#: locale/programs/ld-collate.c:1828
#, c-format
msgid "no definition of `UNDEFINED'"
msgstr "`UNDEFINED'의 μ •μ˜κ°€ μ—†μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:1857
#, c-format
msgid "too many errors; giving up"
msgstr "였λ₯˜κ°€ λ„ˆλ¬΄ λ§ŽμŠ΅λ‹ˆλ‹€; ν¬κΈ°ν•©λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:2659 locale/programs/ld-collate.c:4047
#, c-format
msgid "%s: nested conditionals not supported"
msgstr "%s: μ€‘μ²©ν•œ 쑰건문은 μ§€μ›ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:2677
#, c-format
msgid "%s: more then one 'else'"
msgstr "%s: 'else'κ°€ μ—¬λŸ¬κ°œμž…λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:2852
#, c-format
msgid "%s: duplicate definition of `%s'"
msgstr "%s: `%s'의 μ •μ˜κ°€ μ€‘λ³΅λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:2888
#, c-format
msgid "%s: duplicate declaration of section `%s'"
msgstr "%s: μ„Ήμ…˜ `%s'의 선언이 μ€‘λ³΅λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3024
#, c-format
msgid "%s: unknown character in collating symbol name"
msgstr "%s: μ‚¬μ „μˆœμ„œ 기호 이름에 μ•Œ 수 μ—†λŠ” 문자"

# λ²ˆμ—­: equivalent definition??
#: locale/programs/ld-collate.c:3153
#, c-format
msgid "%s: unknown character in equivalent definition name"
msgstr "%s: λŒ€μ‘ 문자 μ •μ˜ 이름에 μ•Œλ €μ§€μ§€ μ•Šμ€ λ¬Έμžκ°€ μžˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3164
#, c-format
msgid "%s: unknown character in equivalent definition value"
msgstr "%s: λŒ€μ‘ 문자 μ •μ˜ 값에 μ•Œλ €μ§€μ§€ μ•Šμ€ λ¬Έμžκ°€ μžˆμŠ΅λ‹ˆλ‹€"

# λ²ˆμ—­: equivalent definition??
#: locale/programs/ld-collate.c:3174
#, c-format
msgid "%s: unknown symbol `%s' in equivalent definition"
msgstr "%s: λŒ€μ‘λ¬Έμž μ •μ˜μ— μ•Œ 수 μ—†λŠ” 기호 `%s'"

#: locale/programs/ld-collate.c:3183
msgid "error while adding equivalent collating symbol"
msgstr "λŒ€μ‘ν•˜λŠ” 사전 기호λ₯Ό λ”ν•˜λŠ” 데 였λ₯˜"

#: locale/programs/ld-collate.c:3221
#, c-format
msgid "duplicate definition of script `%s'"
msgstr "`%s' μŠ€ν¬λ¦½νŠΈκ°€ 쀑볡 μ •μ˜λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3269
#, c-format
msgid "%s: unknown section name `%.*s'"
msgstr "%s: μ•Œ 수 μ—†λŠ” μ„Ήμ…˜ 이름 `%.*s'"

#: locale/programs/ld-collate.c:3298
#, c-format
msgid "%s: multiple order definitions for section `%s'"
msgstr "%s: `%s' μ„Ήμ…˜μ˜ μˆœμ„œ μ •μ˜κ°€ μ€‘λ³΅λ˜μ—ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3326
#, c-format
msgid "%s: invalid number of sorting rules"
msgstr "%s: μ •λ ¬ κ·œμΉ™μ˜ κ°―μˆ˜κ°€ 잘λͺ»ν–ˆμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3353
#, c-format
msgid "%s: multiple order definitions for unnamed section"
msgstr "%s: μ΄λ¦„μ—†λŠ” μ„Ήμ…˜μ— μˆœμ„œ μ •μ˜κ°€ μ—¬λŸ¬λ²ˆ λ‚˜νƒ€λ‚¬μŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3408 locale/programs/ld-collate.c:3538
#: locale/programs/ld-collate.c:3901
#, c-format
msgid "%s: missing `order_end' keyword"
msgstr "%s: `order_end' ν‚€μ›Œλ“œκ°€ λΉ μ‘ŒμŠ΅λ‹ˆλ‹€"

#: locale/programs/ld-collate.c:3471
#, c-format
msgid "%s: order for collating symbol %.*s not yet defined"