Adding graphql to query helm release versions

This commit is contained in:
Shivam Gupta
2021-03-17 11:08:51 +05:30
parent d55017e2a0
commit b795bf3881
270 changed files with 71564 additions and 148 deletions

635
node_modules/typescript/lib/lib.es2020.bigint.d.ts generated vendored Normal file
View File

@ -0,0 +1,635 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface BigInt {
/**
* Returns a string representation of an object.
* @param radix Specifies a radix for converting numeric values to strings.
*/
toString(radix?: number): string;
/** Returns a string representation appropriate to the host environment's current locale. */
toLocaleString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): bigint;
readonly [Symbol.toStringTag]: "BigInt";
}
interface BigIntConstructor {
(value?: any): bigint;
readonly prototype: BigInt;
/**
* Interprets the low bits of a BigInt as a 2's-complement signed integer.
* All higher bits are discarded.
* @param bits The number of low bits to use
* @param int The BigInt whose bits to extract
*/
asIntN(bits: number, int: bigint): bigint;
/**
* Interprets the low bits of a BigInt as an unsigned integer.
* All higher bits are discarded.
* @param bits The number of low bits to use
* @param int The BigInt whose bits to extract
*/
asUintN(bits: number, int: bigint): bigint;
}
declare var BigInt: BigIntConstructor;
/**
* A typed array of 64-bit signed integer values. The contents are initialized to 0. If the
* requested number of bytes could not be allocated, an exception is raised.
*/
interface BigInt64Array {
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/** The ArrayBuffer instance referenced by the array. */
readonly buffer: ArrayBufferLike;
/** The length in bytes of the array. */
readonly byteLength: number;
/** The offset in bytes of the array. */
readonly byteOffset: number;
/**
* Returns the this object after copying a section of the array identified by start and end
* to the same array starting at position target
* @param target If target is negative, it is treated as length+target where length is the
* length of the array.
* @param start If start is negative, it is treated as length+start. If end is negative, it
* is treated as length+end.
* @param end If not specified, length of the this object is used as its default value.
*/
copyWithin(target: number, start: number, end?: number): this;
/** Yields index, value pairs for every entry in the array. */
entries(): IterableIterator<[number, bigint]>;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns false,
* or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
* @param value value to fill array section with
* @param start index to start filling the array at. If start is negative, it is treated as
* length+start where length is the length of the array.
* @param end index to stop filling the array at. If end is negative, it is treated as
* length+end.
*/
fill(value: bigint, start?: number, end?: number): this;
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls
* the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
filter(callbackfn: (value: bigint, index: number, array: BigInt64Array) => any, thisArg?: any): BigInt64Array;
/**
* Returns the value of the first element in the array where predicate is true, and undefined
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found, find
* immediately returns that element value. Otherwise, find returns undefined.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): bigint | undefined;
/**
* Returns the index of the first element in the array where predicate is true, and -1
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found,
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): number;
/**
* Performs the specified action for each element in an array.
* @param callbackfn A function that accepts up to three arguments. forEach calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array) => void, thisArg?: any): void;
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.
* @param searchElement The element to search for.
* @param fromIndex The position in this array at which to begin searching for searchElement.
*/
includes(searchElement: bigint, fromIndex?: number): boolean;
/**
* Returns the index of the first occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
indexOf(searchElement: bigint, fromIndex?: number): number;
/**
* Adds all the elements of an array separated by the specified separator string.
* @param separator A string used to separate one element of an array from the next in the
* resulting String. If omitted, the array elements are separated with a comma.
*/
join(separator?: string): string;
/** Yields each index in the array. */
keys(): IterableIterator<number>;
/**
* Returns the index of the last occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
/** The length of the array. */
readonly length: number;
/**
* Calls a defined callback function on each element of an array, and returns an array that
* contains the results.
* @param callbackfn A function that accepts up to three arguments. The map method calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
map(callbackfn: (value: bigint, index: number, array: BigInt64Array) => bigint, thisArg?: any): BigInt64Array;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an
* argument instead of an array value.
*/
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initialValue: U): U;
/** Reverses the elements in the array. */
reverse(): this;
/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
* @param offset The index in the current array at which the values are to be written.
*/
set(array: ArrayLike<bigint>, offset?: number): void;
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
*/
slice(start?: number, end?: number): BigInt64Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in the array until the callbackfn returns true, or until
* the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): boolean;
/**
* Sorts the array.
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
*/
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
/**
* Gets a new BigInt64Array view of the ArrayBuffer store for this array, referencing the elements
* at begin, inclusive, up to end, exclusive.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin?: number, end?: number): BigInt64Array;
/** Converts the array to a string by using the current locale. */
toLocaleString(): string;
/** Returns a string representation of the array. */
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): BigInt64Array;
/** Yields each value in the array. */
values(): IterableIterator<bigint>;
[Symbol.iterator](): IterableIterator<bigint>;
readonly [Symbol.toStringTag]: "BigInt64Array";
[index: number]: bigint;
}
interface BigInt64ArrayConstructor {
readonly prototype: BigInt64Array;
new(length?: number): BigInt64Array;
new(array: Iterable<bigint>): BigInt64Array;
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/**
* Returns a new array from a set of elements.
* @param items A set of elements to include in the new array object.
*/
of(...items: bigint[]): BigInt64Array;
/**
* Creates an array from an array-like or iterable object.
* @param arrayLike An array-like or iterable object to convert to an array.
* @param mapfn A mapping function to call on every element of the array.
* @param thisArg Value of 'this' used to invoke the mapfn.
*/
from(arrayLike: ArrayLike<bigint>): BigInt64Array;
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigInt64Array;
}
declare var BigInt64Array: BigInt64ArrayConstructor;
/**
* A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the
* requested number of bytes could not be allocated, an exception is raised.
*/
interface BigUint64Array {
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/** The ArrayBuffer instance referenced by the array. */
readonly buffer: ArrayBufferLike;
/** The length in bytes of the array. */
readonly byteLength: number;
/** The offset in bytes of the array. */
readonly byteOffset: number;
/**
* Returns the this object after copying a section of the array identified by start and end
* to the same array starting at position target
* @param target If target is negative, it is treated as length+target where length is the
* length of the array.
* @param start If start is negative, it is treated as length+start. If end is negative, it
* is treated as length+end.
* @param end If not specified, length of the this object is used as its default value.
*/
copyWithin(target: number, start: number, end?: number): this;
/** Yields index, value pairs for every entry in the array. */
entries(): IterableIterator<[number, bigint]>;
/**
* Determines whether all the members of an array satisfy the specified test.
* @param callbackfn A function that accepts up to three arguments. The every method calls
* the callbackfn function for each element in the array until the callbackfn returns false,
* or until the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
every(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
/**
* Returns the this object after filling the section identified by start and end with value
* @param value value to fill array section with
* @param start index to start filling the array at. If start is negative, it is treated as
* length+start where length is the length of the array.
* @param end index to stop filling the array at. If end is negative, it is treated as
* length+end.
*/
fill(value: bigint, start?: number, end?: number): this;
/**
* Returns the elements of an array that meet the condition specified in a callback function.
* @param callbackfn A function that accepts up to three arguments. The filter method calls
* the callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
filter(callbackfn: (value: bigint, index: number, array: BigUint64Array) => any, thisArg?: any): BigUint64Array;
/**
* Returns the value of the first element in the array where predicate is true, and undefined
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found, find
* immediately returns that element value. Otherwise, find returns undefined.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
find(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): bigint | undefined;
/**
* Returns the index of the first element in the array where predicate is true, and -1
* otherwise.
* @param predicate find calls predicate once for each element of the array, in ascending
* order, until it finds one where predicate returns true. If such an element is found,
* findIndex immediately returns that element index. Otherwise, findIndex returns -1.
* @param thisArg If provided, it will be used as the this value for each invocation of
* predicate. If it is not provided, undefined is used instead.
*/
findIndex(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): number;
/**
* Performs the specified action for each element in an array.
* @param callbackfn A function that accepts up to three arguments. forEach calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array) => void, thisArg?: any): void;
/**
* Determines whether an array includes a certain element, returning true or false as appropriate.
* @param searchElement The element to search for.
* @param fromIndex The position in this array at which to begin searching for searchElement.
*/
includes(searchElement: bigint, fromIndex?: number): boolean;
/**
* Returns the index of the first occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
indexOf(searchElement: bigint, fromIndex?: number): number;
/**
* Adds all the elements of an array separated by the specified separator string.
* @param separator A string used to separate one element of an array from the next in the
* resulting String. If omitted, the array elements are separated with a comma.
*/
join(separator?: string): string;
/** Yields each index in the array. */
keys(): IterableIterator<number>;
/**
* Returns the index of the last occurrence of a value in an array.
* @param searchElement The value to locate in the array.
* @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
* search starts at index 0.
*/
lastIndexOf(searchElement: bigint, fromIndex?: number): number;
/** The length of the array. */
readonly length: number;
/**
* Calls a defined callback function on each element of an array, and returns an array that
* contains the results.
* @param callbackfn A function that accepts up to three arguments. The map method calls the
* callbackfn function one time for each element in the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
map(callbackfn: (value: bigint, index: number, array: BigUint64Array) => bigint, thisArg?: any): BigUint64Array;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array. The return value of
* the callback function is the accumulated result, and is provided as an argument in the next
* call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduce method calls the
* callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduce<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an
* argument instead of an array value.
*/
reduceRight(callbackfn: (previousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): bigint;
/**
* Calls the specified callback function for all the elements in an array, in descending order.
* The return value of the callback function is the accumulated result, and is provided as an
* argument in the next call to the callback function.
* @param callbackfn A function that accepts up to four arguments. The reduceRight method calls
* the callbackfn function one time for each element in the array.
* @param initialValue If initialValue is specified, it is used as the initial value to start
* the accumulation. The first call to the callbackfn function provides this value as an argument
* instead of an array value.
*/
reduceRight<U>(callbackfn: (previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initialValue: U): U;
/** Reverses the elements in the array. */
reverse(): this;
/**
* Sets a value or an array of values.
* @param array A typed or untyped array of values to set.
* @param offset The index in the current array at which the values are to be written.
*/
set(array: ArrayLike<bigint>, offset?: number): void;
/**
* Returns a section of an array.
* @param start The beginning of the specified portion of the array.
* @param end The end of the specified portion of the array.
*/
slice(start?: number, end?: number): BigUint64Array;
/**
* Determines whether the specified callback function returns true for any element of an array.
* @param callbackfn A function that accepts up to three arguments. The some method calls the
* callbackfn function for each element in the array until the callbackfn returns true, or until
* the end of the array.
* @param thisArg An object to which the this keyword can refer in the callbackfn function.
* If thisArg is omitted, undefined is used as the this value.
*/
some(callbackfn: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): boolean;
/**
* Sorts the array.
* @param compareFn The function used to determine the order of the elements. If omitted, the elements are sorted in ascending order.
*/
sort(compareFn?: (a: bigint, b: bigint) => number | bigint): this;
/**
* Gets a new BigUint64Array view of the ArrayBuffer store for this array, referencing the elements
* at begin, inclusive, up to end, exclusive.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/
subarray(begin?: number, end?: number): BigUint64Array;
/** Converts the array to a string by using the current locale. */
toLocaleString(): string;
/** Returns a string representation of the array. */
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): BigUint64Array;
/** Yields each value in the array. */
values(): IterableIterator<bigint>;
[Symbol.iterator](): IterableIterator<bigint>;
readonly [Symbol.toStringTag]: "BigUint64Array";
[index: number]: bigint;
}
interface BigUint64ArrayConstructor {
readonly prototype: BigUint64Array;
new(length?: number): BigUint64Array;
new(array: Iterable<bigint>): BigUint64Array;
new(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array;
/** The size in bytes of each element in the array. */
readonly BYTES_PER_ELEMENT: number;
/**
* Returns a new array from a set of elements.
* @param items A set of elements to include in the new array object.
*/
of(...items: bigint[]): BigUint64Array;
/**
* Creates an array from an array-like or iterable object.
* @param arrayLike An array-like or iterable object to convert to an array.
* @param mapfn A mapping function to call on every element of the array.
* @param thisArg Value of 'this' used to invoke the mapfn.
*/
from(arrayLike: ArrayLike<bigint>): BigUint64Array;
from<U>(arrayLike: ArrayLike<U>, mapfn: (v: U, k: number) => bigint, thisArg?: any): BigUint64Array;
}
declare var BigUint64Array: BigUint64ArrayConstructor;
interface DataView {
/**
* Gets the BigInt64 value at the specified byte offset from the start of the view. There is
* no alignment constraint; multi-byte values may be fetched from any offset.
* @param byteOffset The place in the buffer at which the value should be retrieved.
*/
getBigInt64(byteOffset: number, littleEndian?: boolean): bigint;
/**
* Gets the BigUint64 value at the specified byte offset from the start of the view. There is
* no alignment constraint; multi-byte values may be fetched from any offset.
* @param byteOffset The place in the buffer at which the value should be retrieved.
*/
getBigUint64(byteOffset: number, littleEndian?: boolean): bigint;
/**
* Stores a BigInt64 value at the specified byte offset from the start of the view.
* @param byteOffset The place in the buffer at which the value should be set.
* @param value The value to set.
* @param littleEndian If false or undefined, a big-endian value should be written,
* otherwise a little-endian value should be written.
*/
setBigInt64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
/**
* Stores a BigUint64 value at the specified byte offset from the start of the view.
* @param byteOffset The place in the buffer at which the value should be set.
* @param value The value to set.
* @param littleEndian If false or undefined, a big-endian value should be written,
* otherwise a little-endian value should be written.
*/
setBigUint64(byteOffset: number, value: bigint, littleEndian?: boolean): void;
}

50
node_modules/typescript/lib/lib.es2020.promise.d.ts generated vendored Normal file
View File

@ -0,0 +1,50 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface PromiseFulfilledResult<T> {
status: "fulfilled";
value: T;
}
interface PromiseRejectedResult {
status: "rejected";
reason: any;
}
type PromiseSettledResult<T> = PromiseFulfilledResult<T> | PromiseRejectedResult;
interface PromiseConstructor {
/**
* Creates a Promise that is resolved with an array of results when all
* of the provided Promises resolve or reject.
* @param values An array of Promises.
* @returns A new Promise.
*/
allSettled<T extends readonly unknown[] | readonly [unknown]>(values: T):
Promise<{ -readonly [P in keyof T]: PromiseSettledResult<T[P] extends PromiseLike<infer U> ? U : T[P]> }>;
/**
* Creates a Promise that is resolved with an array of results when all
* of the provided Promises resolve or reject.
* @param values An array of Promises.
* @returns A new Promise.
*/
allSettled<T>(values: Iterable<T>): Promise<PromiseSettledResult<T extends PromiseLike<infer U> ? U : T>[]>;
}

43
node_modules/typescript/lib/lib.esnext.promise.d.ts generated vendored Normal file
View File

@ -0,0 +1,43 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface AggregateError extends Error {
errors: any[]
}
interface AggregateErrorConstructor {
new(errors: Iterable<any>, message?: string): AggregateError;
(errors: Iterable<any>, message?: string): AggregateError;
readonly prototype: AggregateError;
}
declare var AggregateError: AggregateErrorConstructor;
/**
* Represents the completion of an asynchronous operation
*/
interface PromiseConstructor {
/**
* The any function returns a promise that is fulfilled by the first given promise to be fulfilled, or rejected with an AggregateError containing an array of rejection reasons if all of the given promises are rejected. It resolves all elements of the passed iterable to promises as it runs this algorithm.
* @param values An array or iterable of Promises.
* @returns A new Promise.
*/
any<T>(values: (T | PromiseLike<T>)[] | Iterable<T | PromiseLike<T>>): Promise<T>
}

35
node_modules/typescript/lib/lib.esnext.string.d.ts generated vendored Normal file
View File

@ -0,0 +1,35 @@
/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
***************************************************************************** */
/// <reference no-default-lib="true"/>
interface String {
/**
* Replace all instances of a substring in a string, using a regular expression or search string.
* @param searchValue A string to search for.
* @param replaceValue A string containing the text to replace for every successful match of searchValue in this string.
*/
replaceAll(searchValue: string | RegExp, replaceValue: string): string;
/**
* Replace all instances of a substring in a string, using a regular expression or search string.
* @param searchValue A string to search for.
* @param replacer A function that returns the replacement text.
*/
replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
}

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[常规]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定是否应将文件复制到输出文件夹。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定生成应用程序包时对此文件执行的操作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[复制到输出目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[包操作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[始终复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[应用程序清单]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[内容]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果较新则复制]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[资源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件或文件夹的名称。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完整路径]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[文件名]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在保存时重新编译源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成对应的 d.ts 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[为 .tsx 文件指定 JSX 代码编译模式,这不会影响 .ts 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部模块代码生成目标]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果报告了任何错误,请发出输出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[对于隐式“Any”类型禁止有关表达式和声明的警告]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将注释发送到输出中。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成对应的 .map 文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[要用于已生成的 JavaScript 的 ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在保存时编译]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成声明文件]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 文件的编译模式]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[模块系统]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出现错误时发出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[允许隐式 "any" 类型]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在 JavaScript 输出中保留注释]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成源映射]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保留 JSX 元素]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发出 JSX 元素的 React 调用]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[系统]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[无]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源映射根目录中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将输出重定向到不同于源目录的目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将输出重定向到文件中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[发送源映射,使得在调试期间源映射将位于源根目录中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定源映射的根目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将 JavaScript 输出重定向到目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[将 JavaScript 输出合并到文件中]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定 TypeScript 文件的根目录]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[文档 {0} 读取失败: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[解码源映射内容时出错。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[脚本 {1} 的源映射 URL {0} 无效。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[源映射 {0} 读取失败: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[源映射的格式不受支持。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[指定了不受支持的嵌入式源映射格式。源映射: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 调试引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 调试引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-CN" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[未指定任何编译器日志,“清理”将不起作用。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[此项目正在针对生成使用一个或多个 tsconfig.json 文件,而 IntelliSense 可能未正确使用它们。请将每个 tsconfig.json 文件的项目类型设置为 TypeScriptCompile 或 Content确保编辑器均正确使用它们。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[生成:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[无法将编译器日志写入“{0}”。 异常:“{1}”]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[使用编译器版本({0}),如果这不正确,则更改项目文件中的 <TypeScriptToolsVersion> 元素。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[已将引用文件放置在“{0}”处。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[你的项目文件使用的 TypeScript 编译器和工具的版本不同于此计算机上当前安装的版本。在 {0} 处未找到编译器。通过更改项目文件中的 <TypeScriptToolsVersion> 元素,或许可以修复此问题。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[生成任务找不到运行 TypeScript 编译器所需的 node.exe。请安装 Node 并确保系统路径包含其位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[找不到项目文件中指定的编译器版本({0})。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[由于 TypeScriptCompileBlocked 属性设置为 "true",因此会跳过 TypeScript 编译。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[项目未指定 TypeScriptToolsVersion。系统将使用最新可用的 TypeScript 编译器({0})。若要消除此警告,请将 TypeScriptToolsVersion 设置为特定版本或“最新版本”以始终选择最新编译器。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[项目指定 TypeScriptToolsVersion {0},但未找到匹配的编译器。系统将使用最新可用的 TypeScript 编译器({1})。若要消除此警告,请安装 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成任务]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation。保留所有权利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 生成任务]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[一般]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定檔案是否應複製到輸出資料夾。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定當應用程式套件產生之後,要對此檔案採取的動作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[複製到輸出目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[封裝動作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[永遠複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[應用程式資訊清單]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[內容]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不要複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[有更新時才複製]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[資源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案的位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案或資料夾的名稱。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完整路徑]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[檔案名稱]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[儲存時重新編譯來源]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生對應的 d.ts 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[為 .tsx 檔指定 JSX 程式碼編譯模式,這不會影響 .ts 檔]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部模組程式碼產生目標]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[如果回報任何錯誤,則發出輸出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[不顯示對具有隱含 Any 類型之運算式與宣告的警告]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將註解發至輸出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生對應的 .map 檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生之 JavaScript 所要使用的 ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[儲存時編譯]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生宣告檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 檔的編譯模式]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[模組系統]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[錯誤時發出]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[允許隱含的 'any' 類型]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[在 JavaScript 輸出中保留註解]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[產生來源對應]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 版本]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保留 JSX 項目]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[針對 JSX 項目發出 React 呼叫]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[系統]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[無]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[是]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[否]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[發出 sourcemap以便偵錯時可以在 sourcemap 根目錄中找到 sourcemap。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將輸出重新導向至不同於來源的目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將輸出重新導向至檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[發出 sourcemap以便偵錯時可以在來源根目錄中找到來源。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定來源對應的根目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將 JavaScript 輸出重新導向至目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[將 JavaScript 輸出合併至檔案]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[指定 TypeScript 檔案的根目錄]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[文件 {0} 讀取失敗: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[解碼 sourcemap 內容時發生錯誤。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[指令碼 {1} 的 sourcemap URL {0} 無效。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[SourceMap {0} 讀取失敗: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[不支援的 sourcemap 格式。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[不支援指定的內嵌 sourcemap 格式。SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 偵錯引擎]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="zh-TW" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[未指定編譯器記錄檔,因此 [清除]5D; 將無法運作。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[此專案正在對 IntelliSense 可能無法正確使用的組建,使用一或多個 tsconfig.json 檔案。請將每個 tsconfig.json 檔案的項目類型設定為 TypeScriptCompile 或 Content以確保編輯器正確使用它們。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[建置:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[無法將編譯器記錄檔寫入 '{0}。例外狀況: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[將使用編譯器版本 ({0}),若此版本不正確,請變更專案檔中的 <TypeScriptToolsVersion> 元素。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[在 '{0}' 找到參考檔案。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案檔使用的 TypeScript 編譯器和工具版本與這部電腦目前安裝的版本不同。在 {0} 找不到任何編譯器。變更專案檔中的 <TypeScriptToolsVersion> 元素,或許可以修正此問題。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[建置工作找不到執行 TypeScript 編譯器所需的 node.exe。請安裝 Node並確定系統路徑中包含其位置。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[找不到專案檔中指定的編譯器版本 ({0})。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[因為 TypeScriptCompileBlocked 屬性設為 'true',所以跳過 TypeScript 編譯。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案未指定 TypeScriptToolsVersion。系統會使用最新的可用 TypeScript 編譯器 ({0})。若要移除這個警告,請將 TypeScriptToolsVersion 設為特定版本,或 [最新]5D; 以一律選取最新編譯器。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[您的專案指定了 TypeScriptToolsVersion {0},但找不到相符的編譯器。系統會使用最新可用的 TypeScript 編譯器 ({1})。若要移除此警告,請安裝 TypeScript {0} SDK 或更新 TypeScriptToolsVersion 的值。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置工作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. 著作權所有,並保留一切權利。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 建置工作]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Obecné]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje, jestli se má soubor zkopírovat do výstupní složky.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje akci pro tento soubor, když je vytvořený balíček aplikace.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopírovat do výstupního adresáře]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Akce balíčku]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vždycky kopírovat]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifest aplikace]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Obsah]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nekopírovat]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopírovat, pokud je novější]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Prostředek]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Soubor TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Umístění souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Název souboru nebo složky]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Úplná cesta]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Název souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Překompiluje zdrojový kód při uložení.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje odpovídající soubor d.ts.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Určuje režim kompilace kódu JSX pro soubory .tsx. Na soubory .ts to nemá vliv.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Cíl generování kódu externího modulu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat výstupy při oznámení chyb]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Potlačí upozornění na výrazy a deklarace s implikovaným typem any.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje komentáře do výstupu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje odpovídající soubor .map.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Verze ECMAScriptu, která se má použít pro generovaný JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zkompilovat při uložení]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat soubory deklarací]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Režim kompilace pro soubory .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Systém modulů]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generování při chybě]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Povolit implicitní typy any]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ponechat komentáře ve výstupu JavaScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generovat zdrojová mapování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Verze ECMAScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zachovat elementy JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vygenerovat volání React pro elementy JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Systém]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Žádný]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ano]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje sourcemapy tak, že se při ladění zdrojová mapování umístí do kořenového adresáře sourcemapů.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměruje výstup do jiného adresáře než zdrojový kód.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměruje výstup do souboru.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje sourcemapy tak, že se při ladění zdrojový kód umístí do kořenového adresáře zdrojového kódu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zadat kořenový adresář zdrojových mapování]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Přesměrovat výstup JavaScriptu do adresáře]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kombinovat výstup JavaScriptu do souboru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zadat kořenový adresář souborů TypeScriptu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se přečíst dokument {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Chyba při dekódování obsahu sourcemapu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Neplatná adresa URL sourcemapu {0} pro skript {1}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se přečíst sourcemap {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepodporovaný formát sourcemapu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zadal se nepodporovaný formát vloženého zdrojového mapování. SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Všechna práva vyhrazena.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="cs-CZ" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Není zadaný protokol kompilátoru. Vyčištění nebude fungovat.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[V tomto projektu se pro sestavení používá jeden nebo více souborů tsconfig.json, které IntelliSense nemusí správně používat. Nastavte prosím typ položky všech souborů tsconfig.json na TypeScriptCompile nebo Content, aby je editor mohl správně používat.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepodařilo se napsat protokol kompilátoru do {0}. Výjimka: {1}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Používá se verze kompilátoru ({0}) pokud není správná, změňte v souboru projektu element <TypeScriptToolsVersion>.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Našel se soubor odkazů v: {0}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš soubor projektu používá jinou verzi kompilátoru a nástrojů TypeScriptu, než jaká je právě nainstalovaná na tomto počítači. V {0} jsme nenašli žádný kompilátor. Tento problém možná opravíte změnou elementu <TypeScriptToolsVersion> v souboru projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Úloha sestavení nemohla najít soubor node.exe, který se vyžaduje ke spuštění kompilátoru TypeScriptu. Nainstalujte prosím Node a ujistěte se, že systémová cesta obsahuje jeho umístění.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nepovedlo se najít verzi kompilátoru ({0}) zadanou v souboru projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilace TypeScriptu se přeskočila, protože vlastnost TypeScriptCompileBlocked je nastavená na true.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš projekt neurčuje TypeScriptToolsVersion. Použije se nejnovější dostupný kompilátor TypeScriptu ({0}). Pokud chcete toto upozornění odebrat, nastavte TypeScriptToolsVersion na konkrétní verzi, nebo pokud chcete vždy vybrat nejnovější kompilátor, nastavte Latest.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Váš projekt určuje verzi TypeScriptToolsVersion {0}, ale nenašel se odpovídající kompilátor. Použije se nejnovější dostupný kompilátor TypeScriptu ({1}). Pokud chcete toto upozornění odebrat, nainstalujte sadu TypeScript {0} SDK nebo aktualizujte hodnotu TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Všechna práva vyhrazena.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Allgemein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt an, ob die Datei in den Ausgabeordner kopiert werden soll.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Legt die Aktion für diese Datei fest, wenn ein App-Paket erstellt wird.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[In Ausgabeverzeichnis kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Paketaktion]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Immer kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[App-Manifest]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Inhalt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nicht kopieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopieren, wenn neuer]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ressource]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Speicherort der Datei.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Name der Datei oder des Ordners.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vollständiger Pfad]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dateiname]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Quellen beim Speichern neu kompilieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Entsprechende d.ts-Datei generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt den JSX-Codekompilierungsmodus für TSX-Dateien an. Dies betrifft keine TS-Dateien.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Externes Ziel für Modulcodegenerierung]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgaben ausgeben, wenn Fehler gemeldet wurden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Warnungen für Ausdrücke und Deklarationen mit impliziertem Any-Typ unterdrücken]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kommentare in Ausgabe ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generiert die entsprechende .map-Datei]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Für das generierte JavaScript zu verwendende ECMAScript-Version]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Beim Speichern kompilieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Deklarationsdateien generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilierungsmodus für TSX-Dateien]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modulsystem]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Bei Fehler ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Implizite 'any'-Typen zulassen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kommentare in JavaScript-Ausgabe beibehalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Quellzuordnungen generieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript-Version]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX-Elemente beibehalten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[React-Aufruf für JSX-Elemente ausgeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[System]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Keine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ja]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nein]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Build]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt die Sourcemaps so aus, dass sich Sourcemaps beim Debuggen im Stamm der Sourcemap befinden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgabe in ein anderes Verzeichnis als die Quellen umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ausgabe in eine Datei umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gibt die Sourcemaps so aus, dass sich Quellen beim Debuggen im Quellstamm befinden]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Stammverzeichnis von Quellzuordnungen angeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript-Ausgabe in Verzeichnis umleiten]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript-Ausgabe in Datei kombinieren]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Stammverzeichnis von TypeScript-Dateien angeben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Lesen von Dokument "{0}": {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Decodieren von Sourcemapinhalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ungültige Sourcemap-URL {0} für das Skript "{1}".]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Lesen von "SourceMap" {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nicht unterstütztes Format der Sourcemap.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Es wurde ein nicht unterstütztes Inline-Quellzuordnungsformat angegeben. "SourceMap": {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Debug-Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Alle Rechte vorbehalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Debug-Engine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="de-DE" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Es wurde kein Compilerprotokoll angegeben. "Bereinigen" funktioniert nicht.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Für dieses Projekt wird mindestens eine tsconfig.json-Datei für den Build verwendet, die möglicherweise nicht ordnungsgemäß von IntelliSense verwendet wird. Legen Sie den Elementtyp jeder tsconfig.json-Datei auf "TypeScriptCompile" oder "Content" fest, um sicherzustellen, dass sie vom Editor ordnungsgemäß verwendet werden.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Fehler beim Schreiben des Compilerprotokolls in "{0}". Ausnahme: "{1}"]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Compilerversion ({0}) wird verwendet. Wenn diese falsch ist, ändern Sie das <TypeScriptToolsVersion>-Element in Ihrer Projektdatei.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Verweisdatei wurde gefunden unter: "{0}".]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Projektdatei verwendet eine andere Version des TypeScript-Compilers und der TypeScript-Tools als die auf diesem Computer installierte Version. Es wurde kein Compiler unter {0} gefunden. Möglicherweise können Sie dieses Problem beheben, indem Sie das <TypeScriptToolsVersion>-Element in der Projektdatei ändern.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die Datei "node.exe" wurde von der Buildaufgabe nicht gefunden. Diese ist zum Ausführen des TypeScript-Compilers erforderlich. Installieren Sie Node, und stellen Sie sicher, dass der Systempfad den Speicherort enthält.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die in der Projektdatei angegebene Compilerversion ({0}) wurde nicht gefunden.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Die TypeScript-Kompilierung wird übersprungen, weil die Eigenschaft "TypeScriptCompileBlocked" auf "true" festgelegt ist.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ihr Projekt gibt keine "TypeScriptToolsVersion" an. Der neueste verfügbare TypeScript-Compiler wird verwendet ({0}). Legen Sie für "TypeScriptToolsVersion" eine spezifische Version oder "Latest" fest, um diese Warnung zu entfernen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ihr Projekt gibt TypeScriptToolsVersion {0} an, ein übereistimmender Compiler wurde jedoch nicht gefunden. Der neueste verfügbare TypeScript-Compiler wird verwendet ({1}). Installieren Sie das TypeScript {0}-SDK, oder aktualisieren Sie den Wert von TypeScriptToolsVersion, um diese Warnung zu entfernen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Buildaufgaben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Alle Rechte vorbehalten.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript-Buildaufgaben]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[General]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica si el archivo debe copiarse en la carpeta de salida.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica la acción realizada en este archivo cuando se crea un paquete de aplicaciones.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar en el directorio de salida]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Acción de paquete]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar siempre]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifiesto de la aplicación]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenido]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No copiar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar si es posterior]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recurso]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ubicación del archivo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nombre del archivo o carpeta.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ruta de acceso completa]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nombre de archivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Vuelve a compilar los orígenes al guardar.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera el archivo d.ts correspondiente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el modo de compilación del código JSX para los archivos .tsx. Esto no afecta a los archivos .ts.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Destino de generación del código del módulo externo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir salidas si se informa de algún error]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Suprime las advertencias cuando existen expresiones y declaraciones con un tipo "any" implícito.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite comentarios en los resultados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera el archivo .map correspondiente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versión de ECMAScript que se usará con el JavaScript generado.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilar al guardar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generar archivos de declaración]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modo de compilación para archivos .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema de módulos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir cuando haya error]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Permitir tipos "any" implícitos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantener comentarios en los resultados de JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generar mapas de origen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versión de ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Conservar elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir llamada de React para los elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ninguno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sí]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite los mapas de origen de modo que, durante la depuración, se ubiquen en el directorio raíz de los mapas de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirige los resultados a un directorio diferente del de los orígenes.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirige los resultados a un archivo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite los mapas de origen de modo que, durante la depuración, los orígenes se ubiquen en el directorio raíz de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el directorio raíz de los mapas de origen]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirigir resultados de JavaScript al directorio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combinar resultados de JavaScript en archivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar el directorio raíz de los archivos TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al leer el documento {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al descodificar el contenido del mapa de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Dirección URL del mapa de origen {0} no válida para el script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Error al leer el mapa de origen {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Formato no compatible del mapa de origen.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se especificó un formato de mapa de origen insertado no válido. Mapa de origen: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motor de depuración de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos los derechos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motor de depuración de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="es-ES" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se ha especificado el registro del compilador. La opción 'Limpiar' no funcionará.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Este proyecto usa uno o varios archivos tsconfig.json para la compilación que IntelliSense no puede usar correctamente. Establezca el tipo de elemento de cada archivo tsconfig.json en TypeScriptCompile o en Contenido para asegurarse de que el editor lo use correctamente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Compilación:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se pudo escribir el registro del compilador en '{0}'. Excepción: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se está usando la versión {0} del compilador. Si no es correcta, cambie el elemento <TypeScriptToolsVersion> en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Archivo de referencias encontrado en: '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El archivo del proyecto usa una versión de las herramientas y el compilador de TypeScript distinta a la instalada actualmente en esta máquina. No se ha encontrado ningún compilador en {0}. Puede corregir este problema cambiando el elemento <TypeScriptToolsVersion> en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La tarea de compilación no encontró node.exe, que es necesario para ejecutar el compilador de TypeScript. Instale Node y asegúrese de que la ruta de acceso del sistema contiene su ubicación.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[No se encuentra la versión del compilador ({0}) especificada en el archivo del proyecto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilación de TypeScript se omite porque la propiedad TypeScriptCompileBlocked está establecida en 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El proyecto no especifica un valor de TypeScriptToolsVersion. Se usará el último compilador de TypeScript disponible ({0}). Para quitar esta advertencia, establezca TypeScriptToolsVersion en una versión específica o "Más reciente" para seleccionar siempre el último compilador.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[El proyecto especifica la versión {0} de TypeScriptToolsVersion, pero no se ha encontrado un compilador coincidente. Se usará el último compilador de TypeScript disponible ({1}). Para quitar esta advertencia, instale el SDK de TypeScript {0} o actualice el valor de TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tareas de compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos los derechos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tareas de compilación de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Général]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Précise si le fichier doit être copié dans le dossier de sortie.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifie l'action effectuée sur ce fichier lorsqu'un package d'application est produit.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copier dans le répertoire de sortie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Action de package]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Toujours copier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifeste d'application]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ne pas copier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copier si plus récent]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ressource]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Fichier TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emplacement du fichier.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nom du fichier ou du dossier.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Chemin d'accès complet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nom de fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recompiler les sources lors de l'enregistrement]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer le fichier d.ts correspondant]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifiez le mode de compilation du code JSX pour les fichiers .tsx. Ceci n'affecte pas les fichiers .ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Cible de génération de code de module externe]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre des sorties si des erreurs sont signalées]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Supprimer les avertissements en cas d'expressions et de déclarations possédant un type 'any' implicite]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publier des commentaires dans la sortie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer le fichier .map correspondant]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Version ECMAScript à utiliser pour le code JavaScript généré]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compiler lors de l'enregistrement]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer des fichiers de déclaration]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mode de compilation pour les fichiers .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Système de module]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre lors d'une erreur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Autoriser les types 'any' implicites]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Conserver les commentaires dans la sortie JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Générer des mappages de sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Version ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Préserver les éléments JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Émettre un appel React pour les éléments JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Système]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oui]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publie les mappages de sources pour qu'ils se trouvent à la racine pendant le débogage]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie vers un autre répertoire que les sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie vers un fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Publie les mappages de sources pour que les sources se trouvent à la racine pendant le débogage]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifier le répertoire racine des mappages de sources]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Rediriger la sortie JavaScript vers un répertoire]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combiner la sortie JavaScript dans un fichier]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Spécifier le répertoire racine des fichiers TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de la lecture du document {0} : {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Erreur de décodage du contenu du mappage de source.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[URL de mappage de source {0} non valide pour le script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de la lecture du SourceMap {0} : {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Format de mappage de source non pris en charge.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Le format de mappage de source inline spécifié n'est pas pris en charge. SourceMap : {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Moteur de débogage TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tous droits réservés.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Moteur de débogage TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="fr-FR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aucun journal de compilation spécifié, 'Clean' ne fonctionnera pas.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ce projet utilise pour la build un ou plusieurs fichiers tsconfig.json qui ne sont peut-être pas correctement utilisés par IntelliSense. Définissez le type d'élément de chaque fichier tsconfig.json sur TypeScriptCompile ou sur Content pour qu'ils soient correctement utilisés par l'éditeur.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build :]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Échec de l'écriture du journal de compilation dans '{0}'. Exception : '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Utilisation de la version de compilateur ({0}). Si cela est incorrect, remplacez l'élément <TypeScriptToolsVersion> dans votre fichier projet.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Localisation des fichiers de référence : '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre fichier projet utilise une version du compilateur TypeScript et des outils qui diffère de celle installée sur cette machine. Aucun compilateur n'a été détecté sur {0}. Vous pouvez peut-être résoudre ce problème en changeant l'élément <TypeScriptToolsVersion> dans votre fichier projet.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La tâche de build n'a pas pu localiser le fichier node.exe, qui est indispensable à l'exécution du compilateur TypeScript. Installez Node, puis vérifiez que le chemin système contient son emplacement.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La version de compilateur ({0}) spécifiée dans le fichier projet est introuvable.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilation TypeScript est ignorée, car la propriété TypeScriptCompileBlocked a la valeur 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre projet ne spécifie pas TypeScriptToolsVersion. Le dernier compilateur TypeScript disponible va être utilisé ({0}). Pour supprimer cet avertissement, affectez une version spécifique ou la valeur "Latest" à TypeScriptToolsVersion afin de sélectionner toujours la dernière version du compilateur.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Votre projet spécifie TypeScriptToolsVersion {0}, mais le compilateur correspondant est introuvable. Le dernier compilateur TypeScript disponible va être utilisé ({1}). Pour supprimer cet avertissement, installez le SDK TypeScript {0} ou mettez à jour la valeur de TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tâches de build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tous droits réservés.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tâches de build TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generale]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica se il file deve essere copiato nella cartella di output.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica l'azione eseguita su questo file quando viene prodotto un pacchetto dell'app.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia nella directory di output]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Azione pacchetto]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia sempre]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifesto dell'app]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Contenuto]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non copiare]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copia se più recente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Risorsa]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[File TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Percorso del file.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome del file o della cartella.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Percorso completo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ricompila le origini al salvataggio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera il file d.ts corrispondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Consente di specificare la modalità di compilazione del codice JSX per i file con estensione tsx. Non ha effetto sui file con estensione ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Destinazione di generazione di codice del modulo esterno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea gli output se sono stati restituiti errori]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Non visualizza avvisi per espressioni e dichiarazioni con un tipo Any implicito]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea commenti nell'output]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera il file .map corrispondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versione ECMAScript da usare per il codice JavaScript generato]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compila al salvataggio]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera file di dichiarazione]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modalità di compilazione per file con estensione tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema moduli]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea in caso di errore]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Consenti tipi 'any' impliciti]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantieni commenti nell'output JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genera mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versione ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuna]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Mantieni elementi JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea chiamata React per elementi JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nessuno]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sì]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[No]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea i mapping di origine in modo che durante il debug si trovino nella radice dei mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output a una directory diversa dalle origini]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output a un file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Crea i mapping di origine in modo che durante il debug le origini si trovino nella radice delle origini]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica la directory radice dei mapping di origine]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Reindirizza l'output JavaScript a una directory]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combina l'output JavaScript nel file]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Specifica la directory radice dei file TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La lettura del documento {0} non è riuscita: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Errore durante la decodifica del contenuto del mapping di origine.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'URL del mapping di origine {0} non è valido per lo script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La lettura del mapping di origine {0} non è riuscita: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il formato del mapping di origine non è supportato.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il formato specificato per il mapping di origine incorporato non è supportato. Mapping di origine: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motore di debug TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tutti i diritti sono riservati.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Motore di debug TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="it-IT" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Non è stato specificato alcun log del compilatore. Il comando 'Pulisci' non funzionerà.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Per la compilazione questo progetto usa uno o più file tsconfig.json che potrebbero non essere usati correttamente da IntelliSense. Impostare il tipo di elemento di ogni file tsconfig.json su TypeScriptCompile o Content per verificare che siano usati correttamente dall'editor.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Compilazione:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Non è stato possibile scrivere il log del compilatore in '{0}'. Eccezione: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Se si usa una versione non corretta del compilatore ({0}), modificare l'elemento <TypeScriptToolsVersion> nel file di progetto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il file dei riferimenti si trova in '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Il file di progetto usa una versione diversa del compilatore TypeScript e strumenti diversi da quelli installati in questo computer. Non è stato trovato alcun compilatore in {0}. Per provare a risolvere questo problema, modificare l'elemento <TypeScriptToolsVersion> nel file di progetto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[L'attività di compilazione non è riuscita a trovare node.exe che è necessario per eseguire il compilatore TypeScript. Installare Node e assicurarsi che il percorso di sistema ne contenga la posizione.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La versione del compilatore ({0}) specificata nel file di progetto non è stata trovata.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[La compilazione TypeScript è stata ignorata perché la proprietà TypeScriptCompileBlocked è impostata su 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nel progetto non è specificata alcun elemento TypeScriptToolsVersion. Verrà usata la versione disponibile più recente del compilatore TypeScript ({0}). Per rimuovere questo avviso, impostare TypeScriptToolsVersion su una versione specifica o su "Latest" in modo che venga selezionato sempre il compilatore più recente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nel progetto è specificato TypeScriptToolsVersion {0}, ma non è stato trovato un compilatore corrispondente. Verrà usata la versione disponibile più recente del compilatore TypeScript ({1}). Per rimuovere questo avviso, installare TypeScript {0} SDK o aggiornare il valore di TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Attività di compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tutti i diritti sono riservati.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Attività di compilazione TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[全般]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルを出力フォルダーにコピーするかどうかを指定します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[アプリケーション パッケージが生成されたときにこのファイルに実行するアクションを指定します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力ディレクトリにコピー]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[パッケージ アクション]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[常にコピーする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[アプリケーション マニフェスト]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コンテンツ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コピーしない]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[新しい場合はコピーする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[リソース]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイル]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルの場所です。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイルまたはフォルダーの名前です。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[完全パス]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ファイル名]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保存時にソースを再コンパイルする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[対応する d.ts ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx ファイルの JSX コード コンパイル モードを指定します。.ts ファイルへの影響はありません]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[外部モジュールコード生成ターゲット]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[エラーが報告された場合は常に出力を発行します]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[暗黙的な Any 型を含む式と宣言に関する警告を表示しない]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[コメントを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[対応する .map ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[生成された JavaScript に使用するECMAScript バージョン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[保存時にコンパイルする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[宣言ファイルを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx ファイルのコンパイル モード]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[モジュール システム]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[エラー時に発行]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[暗黙的な 'any' 型を許可する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力にコメントを残す]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ソース マップを生成する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript バージョン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 要素の保持]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 要素の反応呼び出しを生成]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[システム]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[なし]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[はい]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[いいえ]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[デバッグ中のソースマップがソースマップ ルートに配置されるようにソースマップを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力をソース以外のディレクトリにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[出力をファイルにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[デバッグ中のソースがソース ルートに配置されるようにソースマップを出力する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ソース マップのルート ディレクトリを指定する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力をディレクトリにリダイレクトする]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 出力をファイルにまとめる]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ファイルのルート ディレクトリを指定する]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ドキュメント {0} の読み込みに失敗しました: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ソースマップ コンテンツのデコード中にエラーが発生しました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[スクリプト {1} のソースマップ URL {0} が正しくありません。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ソースマップ {0} の読み取りに失敗しました: {1}。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[サポートされていない形式のソースマップです。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[サポートされていないインライン ソースマップの形式が指定されました。ソースマップ: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript デバッグ エンジン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript デバッグ エンジン]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ja-JP" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[コンパイラのログが指定されていません。'クリーン' は機能しません。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは、IntelliSense で適切に使用されない可能性のあるビルド用の tsconfig.json ファイルが 1 つ以上使用されています。各 tsconfig.json ファイルの項目の種類を TypeScriptCompile または Content に設定して、エディターで正しく使用できるようにしてください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ビルド:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[コンパイラのログを '{0} に書き込めませんでした。例外: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このコンパイラのバージョン ({0}) の使用が正しくない場合、プロジェクト ファイルの <TypeScriptToolsVersion> 要素を変更します。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA['{0}' で参照ファイルが見つかりました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[プロジェクト ファイルでは、このコンピューターに現在インストールされているものとは異なるバージョンの TypeScript コンパイラおよびツールが使用されています。コンパイラは {0} で見つかりませんでした。この問題はプロジェクト ファイルの <TypeScriptToolsVersion> 要素を変更して解決できることがあります。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[ビルド タスクは TypeScript コンパイラの実行に必要な node.exe を見つけることができませんでした。Node をインストールし、その場所がシステム パスに含まれていることをご確認ください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[プロジェクト ファイルに指定されているコンパイラ バージョン ({0}) が見つかりませんでした。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompileBlocked プロパティが 'true' に設定されているため、TypeScript のコンパイルはスキップされました。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは TypeScriptToolsVersion が指定されていません。使用可能な最新バージョンの TypeScript コンパイラが使われます ({0})。この警告を削除するには、TypeScriptToolsVersion に特定のバージョンを設定するか、常に最新のコンパイラを選択するために "Latest" を設定してください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[このプロジェクトでは TypeScriptToolsVersion {0} が指定されていますが、対応するコンパイラが見つかりませんでした。使用可能な最新バージョンの TypeScript コンパイラが使われます ({1})。この警告を削除するには、TypeScript {0} SDK をインストールするか、TypeScriptToolsVersion の値を更新してください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド タスク]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript ビルド タスク]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[일반]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[파일을 출력 폴더에 복사할지를 지정합니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[앱 패키지를 생성할 때 이 파일에 대해 수행할 작업을 지정합니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[출력 디렉터리에 복사]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[패키지 작업]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[항상 복사]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[앱 매니페스트]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[내용]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[복사 안 함]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[없음]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[새 버전이면 복사]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[리소스]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[파일의 위치입니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[파일 또는 폴더의 이름입니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[전체 경로]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[파일 이름]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 빌드]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[저장 시 소스 다시 컴파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[해당하는 d.ts 파일 생성]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 파일의 JSX 코드 컴파일 모드를 지정합니다. 이는 .ts 파일에 영향을 주지 않습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[외부 모듈 코드 생성 대상]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[오류가 보고되면 출력을 내보냅니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[암시적인 Any 형식이 있는 식 및 선언에 경고 표시 안 함]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[출력에 주석 내보내기]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[해당하는 .map 파일 생성]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript를 생성하는 데 사용할 ECMAScript 버전]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[저장 시 컴파일]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[선언 파일 생성]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx 파일의 컴파일 모드]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[모듈 시스템]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[오류 시 내보내기]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[암시적인 'any' 형식 허용]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 출력에 주석 유지]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[소스 맵 생성]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 버전]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[없음]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 요소 보존]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX 요소에 대한 대응 호출 내보내기]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[시스템]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[없음]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[예]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[아니요]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 빌드]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 빌드]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[soucemap을 디버깅하는 동안 해당 sourcemap을 내보내면 sourcemap 루트에 배치됩니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[출력을 소스 이외의 다른 디렉터리에 리디렉션]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[출력을 파일에 리디렉션]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[소스를 디버깅하는 동안 해당 sourcemap을 내보내면 소스 루트에 배치됩니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[소스 맵의 루트 디렉터리 지정]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 출력을 디렉터리에 리디렉션]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript 출력을 파일에 결합]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 파일의 루트 디렉터리 지정]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[문서 {0} 읽기 실패: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[sourcemap 콘텐츠를 디코딩하는 동안 오류가 발생했습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[스크립트 {1}에 대한 sourcemap URL {0}이(가) 잘못되었습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[SourceMap {0} 읽기 실패: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[지원되지 않는 sourcemap 형식입니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[지원되지 않는 인라인 sourcemap 형식이 지정되었습니다. SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 디버그 엔진]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 디버그 엔진]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ko-KR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[컴파일러 로그가 지정되지 않았습니다. '정리'가 작동하지 않습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[이 프로젝트는 IntelliSense에서 적절하게 사용하고 있지 않을 수 있는 빌드에 대해 하나 이상의 tsconfig.json 파일을 사용하고 있습니다. 편집기에서 적절하게 사용하도록 각 tsconfig.json 파일의 항목 종류를 TypeScriptCompile 또는 Content로 설정하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[빌드:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA['{0}에 컴파일러 로그를 쓰지 못했습니다. 예외: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[컴파일러 버전({0})을 사용합니다. 이 버전이 잘못된 경우 프로젝트 파일에서 <TypeScriptToolsVersion> 요소를 변경하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA['{0}'에서 참조 파일을 찾았습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[이 시스템에 현재 설치된 것과 다른 버전의 TypeScript 컴파일러 및 도구가 프로젝트 파일에 사용됩니다. {0}에서 컴파일러를 찾을 수 없습니다. 프로젝트 파일에서 <TypeScriptToolsVersion> 요소를 변경하여 이 문제를 해결할 수 있습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[빌드 작업에서 TypeScript 컴파일러를 실행하는 데 필요한 node.exe를 찾을 수 없습니다. 노드를 설치하고 시스템 경로에 해당 위치가 포함되어 있는지 확인하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[프로젝트 파일에 지정된 컴파일러 버전({0})을 찾을 수 없습니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompileBlocked 속성이 'true'로 설정되어 있으므로 TypeScript 컴파일을 건너뜁니다.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[프로젝트에서 TypeScriptToolsVersion을 지정하지 않았습니다. 사용 가능한 최신 TypeScript 컴파일러({0})가 사용됩니다. 이 경고를 제거하려면 TypeScriptToolsVersion을 특정 버전으로 설정하거나 "Latest"로 설정하여 항상 최신 컴파일러를 선택하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[프로젝트에서 TypeScriptToolsVersion {0}을(를) 지정했지만 일치하는 컴파일러를 찾을 수 없습니다. 사용 가능한 최신 TypeScript 컴파일러({1})가 사용됩니다. 이 경고를 제거하려면 TypeScript {0} SDK를 설치하거나 TypeScriptToolsVersion 값을 업데이트하세요.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 빌드 작업]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript 빌드 작업]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pl-PL" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Plik TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Plik TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pl-PL" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ogólne]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Określa, czy plik powinien zostać skopiowany do folderu wyjściowego.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Określa akcję podejmowaną w odniesieniu do tego pliku, gdy jest tworzony pakiet aplikacji.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopiuj do katalogu wyjściowego]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Akcja pakietu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zawsze kopiuj]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifest aplikacji]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zawartość]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie kopiuj]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Brak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopiuj, jeśli nowszy]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zasób]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Plik TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Plik TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Lokalizacja pliku.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nazwa pliku lub folderu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Pełna ścieżka]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nazwa pliku]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pl-PL" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilacja TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompiluj ponownie źródła przy zapisywaniu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuj odpowiadający plik d.ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Określ tryb kompilacji kodu JSX dla plików .tsx. Nie wpływa to na pliki .ts.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Element docelowy generowania kodu modułu zewnętrznego]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituj dane wyjściowe w przypadku zgłoszenia błędów]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Pomijaj ostrzeżenia w przypadku wyrażeń i deklaracji z domniemanym typem „any”]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituj komentarze do danych wyjściowych]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuje odpowiadający plik .map]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Wersja języka ECMAScript do użycia dla wygenerowanego kodu JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompiluj przy zapisywaniu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuj pliki deklaracji]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tryb kompilacji dla plików .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[System modułów]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituj przy błędzie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zezwalaj na niejawne typy „any”]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zachowaj komentarze w danych wyjściowych JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Generuj mapy źródeł]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Wersja języka ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Brak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Zachowaj elementy JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituj wywołanie platformy React dla elementów JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[System]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Brak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nie]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilacja TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilacja TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituje mapy źródeł w taki sposób, że podczas debugowania mapy źródeł będą znajdować się w katalogu głównym map źródeł]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Przekieruj dane wyjściowe do katalogu innego niż ze źródłami]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Przekieruj dane wyjściowe do pliku]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emituje mapy źródeł w taki sposób, że podczas debugowania źródła będą znajdować się w katalogu głównym źródeł]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Określ katalog główny map źródeł]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Przekieruj dane wyjściowe JavaScript do katalogu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Połącz dane wyjściowe JavaScript do pliku]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Określ katalog główny plików TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="pl-PL" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nie można odczytać dokumentu {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Błąd dekodowania zawartości mapy źródła.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nieprawidłowy adres URL mapy źródła {0} dla skryptu {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nie można odczytać mapy źródła {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nieobsługiwany format mapy źródła.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Określono nieobsługiwany format wbudowanej mapy źródła. Mapa źródła: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aparat debugowania TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Wszelkie prawa zastrzeżone.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Aparat debugowania TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="pl-PL" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nie określono dziennika kompilatora, pozycja „Wyczyść” nie będzie działać]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ten projekt używa na potrzeby kompilowania co najmniej jednego pliku tsconfig.json, który może nie być poprawnie używany przez funkcję IntelliSense. Określ typ elementu każdego pliku tsconfig.json na wartość TypeScriptCompile lub Content, aby mieć pewność, że będą one poprawnie używane przez edytor.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilacja:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nie można zapisać dziennika kompilatora do pliku „{0}”. Wyjątek: „{1}”]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Używana jest wersja kompilatora ({0}). Jeśli jest ona nieprawidłowa, zmień element <TypeScriptToolsVersion> w pliku projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Znaleziono plik odwołań w lokalizacji: „{0}”.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Twój plik projektu używa innej wersji kompilatora TypeScript i narzędzi niż obecnie zainstalowane na tej maszynie. Nie znaleziono żadnego kompilatora w lokalizacji {0}. Możliwe, że ten problem uda się rozwiązać przez zmianę elementu <TypeScriptToolsVersion> w pliku projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zadanie kompilacji nie może odnaleźć pliku node.exe, który jest wymagany do uruchamiania kompilatora języka TypeScript. Zainstaluj środowisko Node i upewnij się, że ścieżka systemu zawiera jego lokalizację.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nie można znaleźć wersji kompilatora ({0}) podanej w pliku projektu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kompilacja kodu TypeScript zostanie pominięta, ponieważ właściwość TypeScriptCompileBlocked ma wartość „true”.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Projekt nie określa atrybutu TypeScriptToolsVersion. Zostanie użyty najnowszy dostępny kompilator języka TypeScript ({0}). Aby usunąć to ostrzeżenie, ustaw atrybut TypeScriptToolsVersion na konkretną wersję lub wartość „Najnowsza”, aby zawsze wybierać najnowszą wersję kompilatora.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Projekt określa atrybut TypeScriptToolsVersion {0}, ale nie można znaleźć pasującego kompilatora. Zostanie użyty najnowszy dostępny kompilator języka TypeScript ({1}). Aby usunąć to ostrzeżenie, zainstaluj zestaw SDK języka TypeScript {0} lub zaktualizuj wartość atrybutu TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zadania kompilacji TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Wszelkie prawa zastrzeżone.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Zadania kompilacji TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pt-BR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Arquivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Arquivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pt-BR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Geral]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica se o arquivo deve ser copiado para a pasta de saída.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especifica a ação executada neste arquivo quando um pacote do aplicativo é produzido.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar para diretório de saída]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ação do Pacote]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sempre copiar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manifesto do Aplicativo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Conteúdo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não copiar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nenhum]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Copiar se for mais novo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recurso]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Arquivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Arquivo TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Local do arquivo.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome do arquivo ou pasta.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Caminho Completo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nome do Arquivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="pt-BR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilação TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Recompilar fontes ao salvar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gerar arquivo d.ts correspondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar o modo de compilação de código JSX para arquivos .tsx; isso não afeta arquivos .ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Destino de geração de código do módulo externo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir saídas se houver relato de erros]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Suprimir avisos em expressões e declarações com um tipo Any implícito]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir comentários de saída]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gerar arquivo .map correspondente]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versão do ECMAScript a ser usada para o JavaScript gerado]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilar ao salvar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gerar arquivos de declaração]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modo de compilação para arquivos .tsx]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema de módulo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir quando houver erro]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Permitir tipos 'any' implícitos]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Manter comentários na saída de JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Gerar mapas de origem]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Versão do ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nenhum]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Preservar elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emitir chamada de Reação para elementos JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistema]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Nenhum]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sim]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Não]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilação TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Compilação TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite o sourcemaps de maneira que este encontre-se na raiz de soucemap durante a depuração]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirecionar a saída para um diretório diferente que as origens de]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirecionar a saída para um arquivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Emite o sourcemaps de maneira que as origens se encontrem na raiz de origem durante a depuração]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar o diretório raiz de mapas de origem]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Redirecionar a saída de JavaScript para um diretório]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Combinar saída de JavaScript em arquivo]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Especificar o diretório raiz dos arquivos TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="pt-BR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Leitura do documento {0} com falha: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Erro ao decodificar o conteúdo do sourcemap.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[URL do sourcemap inválida {0} para o script {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Leitura do SourceMap {0} com falha: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Formato sem suporte do sourcemap.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Formato de sourcemap embutido sem suporte especificado. SourceMap: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Mecanismo de Depuração TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos os direitos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Mecanismo de Depuração TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="pt-BR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Nenhum log de compilador especificado, 'Limpar' não funcionará.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Este projeto está usando um ou mais arquivos tsconfig.json para o build que podem não ser usados corretamente pelo IntelliSense. Defina o tipo de item de cada arquivo tsconfig.json como TypeScriptCompile ou Content para garantir que eles sejam usados corretamente pelo editor.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Build:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Falha ao gravar o log do compilador em '{0}'. Exceção: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Usando a versão do compilador ({0}), se isso estiver incorreto, altere o elemento <TypeScriptToolsVersion> em seu arquivo de projeto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Arquivo de referências localizadas em: '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[O arquivo de projeto usa uma versão diferente do compilador e ferramentas TypeScript atualmente instalados neste computador. Nenhum compilador foi encontrado em {0}. Você poderá corrigir esse problema alterando o elemento <TypeScriptToolsVersion> no arquivo de projeto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A tarefa de build não conseguiu encontrar node.exe, que é necessário para executar o compilador TypeScript. Instale o Nó e verifique se o caminho do sistema contém seu local.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Não foi possível localizar a versão do compilador ({0}) especificada no arquivo de projeto.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[A compilação TypeScript foin ignorada porque a propriedade TypeScriptCompileBlocked está definida como 'true'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Seu projeto não especifica uma versão do TypeScriptToolsVersion. O compilador TypeScript mais recente disponível será utilizado ({0}). Para remover este aviso, configure a versão do TypeScriptToolsVersion para uma versão específica ou "Mais recente" para selecionar sempre o compilador mais recente.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Seu projeto especifica o TypeScriptToolsVersion {0}, mas um compilador correspondente não foi encontrado. O compilador TypeScript mais recente disponível será utilizado ({1}). Para remover este aviso, instale o SDK do TypeScript {0} ou atualize o valor do TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tarefas de Compilação de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Todos os direitos reservados.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Tarefas de Compilação de TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ru-RU" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Файл TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Файл TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ru-RU" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Общие]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Указывает, нужно ли копировать файл в папку выходных данных.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Задает действие, выполняемое с этим файлом при создании пакета приложения.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Копировать в выходной каталог]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Действие пакета]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Всегда копировать]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Манифест приложения]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Содержимое]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Не копировать]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Копировать более позднюю версию]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Ресурс]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Файл TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Файл TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Расположение файла.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Имя файла или папки.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Полный путь]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Имя файла]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="ru-RU" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Сборка TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Перекомпилировать исходные файлы при сохранении]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создать соответствующий файл d.ts]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Укажите режим компиляции кода JSX для TSX-файлов (это не затронет TS-файлы)]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Назначение для создания кода внешнего модуля]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Выводить выходные элементы, если есть ошибки]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Отключить предупреждения о выражениях и объявлениях, имеющих неявный тип any]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создавать комментарии в выходных данных]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создает соответствующий файл .map]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Версия ECMAScript, которую следует использовать для создаваемых сценариев JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Компилировать при сохранении]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создать файлы объявления]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Режим компиляции для TSX-файлов]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Модульная система]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Выводить при ошибке]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Разрешить неявные типы any]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Сохранять комментарии в выходных данных JavaScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создать сопоставления источника]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Версия ECMAScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Сохранение элементов JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Вызов ответного действия для элементов JSX]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Система]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Да]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Нет]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Сборка TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Сборка TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создает сопоставители с исходным кодом так, что при отладке они будут находиться в корневом каталоге сопоставителей с исходным кодом]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Перенаправлять выходные данные в каталог, отличный от исходного]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Перенаправлять выходные данные в файл]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Создает сопоставители с исходным кодом так, что при отладке исходные файлы будут находиться в корневом каталоге исходных файлов]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Укажите корневой каталог сопоставлений источника]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Перенаправлять выходные данные JavaScript в каталог]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Объединить выходные данные JavaScript в файл]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Укажите корневой каталог файлов TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ru-RU" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Не удалось выполнить чтение документа {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Произошла ошибка при декодировании содержимого сопоставителя с исходным кодом.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Недопустимый универсальный код ресурса {0} сопоставителя с исходным кодом для скрипта {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Произошел сбой чтения сопоставителя с исходным кодом {0}: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Неподдерживаемый формат сопоставителя с исходным кодом.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Указан неподдерживаемый формат встроенного сопоставителя с исходным кодом: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Корпорация Майкрософт]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Модуль отладки TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Корпорация Майкрософт (Microsoft Corporation). Все права защищены.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Модуль отладки TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,180 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="ru-RU" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Журнал компилятора не указан, операция "Очистить" не будет работать.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[В этом проекте используются один или несколько файлов tsconfig.json для сборки, которые могут неправильно интерпретироваться IntelliSense. Чтобы они правильно интерпретировались редактором, укажите тип элемента "TypeScriptCompile" или "Content" для каждого файла.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Сборка:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Не удалось записать журнал компилятора в "{0}". Исключение: "{1}"]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Использование версии компилятора ({0}), если это неправильное изменение элемента <TypeScriptToolsVersion> в файле проекта.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Файл ссылок находится в "{0}".]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Ваш файл проекта использует версию компилятора и инструментов TypeScript, которая отличается от версии, установленной в настоящий момент на этом компьютере. В {0} не найден компилятор. Возможно, вам удастся устранить эту проблему, изменив элемент <TypeScriptToolsVersion> в файле проекта.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Задаче сборки не удалось найти node.exe, необходимый для запуска компилятора TypeScript. Установите Node и включите его расположение в системный путь.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Не удалось найти компилятор версии ({0}), указанный в файле проекта.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Компиляция TypeScript пропущена, так как для свойства TypeScriptCompileBlocked задано значение true.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[В проекте не указан параметр TypeScriptToolsVersion. Будет использоваться последняя доступная версия компилятора TypeScript ({0}). Чтобы устранить это предупреждение, задайте для параметра TypeScriptToolsVersion конкретную версию или значение Latest, чтобы всегда выбирать последнюю версию компилятора.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[В проекте указана версия TypeScriptToolsVersion {0}, но соответствующий компилятор не найден. Будет использоваться последняя доступная версия компилятора TypeScript ({1}). Чтобы удалить это предупреждение, установите пакет SDK для TypeScript {0} или измените значение параметра TypeScriptToolsVersion.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Корпорация Майкрософт]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Задачи сборки TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Корпорация Майкрософт (Microsoft Corporation). Все права защищены.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Задачи сборки TypeScript]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\ProjectItemsSchema.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="tr-TR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;ContentType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ContentType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript dosyası]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;ItemType&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@ItemType@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript dosyası]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptCompile.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="tr-TR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;general@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[General]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Genel]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;copytooutputdirectory@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies if the file should be copied to the output folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dosyanın çıkış klasörüne kopyalanıp kopyalanmayacağını belirtir.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specifies the action taken on this file when an app package is produced.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Uygulama paketi oluşturulduğunda bu dosya üzerinde gerçekleştirilecek eylemi belirtir.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;copytooutputdirectory@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy to Output Directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Çıkış Dizinine Kopyala]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;{}{itemtype}@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Package Action]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Paket Eylemi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;always@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy always]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Her zaman kopyala]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;appxmanifest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[App Manifest]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Uygulama Bildirimi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;content@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Content]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[İçerik]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;never@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Do not copy]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kopyalama]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Yok]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preservenewest@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Copy if newer]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Daha yeniyse kopyala]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;priresource@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Resource]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScriptCompile]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompile]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompile@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript dosyası]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompile@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript dosyası]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;fullpath@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Location of the file.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dosyanın konumu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Name of the file or folder.]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dosya veya klasörün adı.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;fullpath@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Full Path]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Tam Yol]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;identity@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[File Name]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dosya Adı]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\Targets\TypeScriptProjectProperties.xaml" PsrId="22" FileType="1" SrcCul="en-US" TgtCul="tr-TR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="Rccx" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";&lt;Category&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Category@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Derlemesi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Recompile sources on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaydederken kaynakları yeniden derle]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate corresponding d.ts file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[İlgili d.ts dosyasını oluştur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify JSX code compilation mode for .tsx files, this doesn't affect .ts files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx dosyaları için JSX kodu derleme modu belirtin. Bu, .ts dosyalarını etkilemez.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[External module code generation target]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Dış modül kodu oluşturma hedefi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit outputs if any errors were reported]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hata bildirildiğinde çıktı gönder]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Suppress warnings on expressions and declarations with an implied Any type]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Örtük Any türüne sahip ifade ve bildirimlerde uyarıları gizle]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit comments to output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Açıklamaları çıkışa yay]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generates corresponding .map file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[İlgili .map dosyasını oluşturur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version to use for generated JavaScript]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Oluşturulan JavaScript için kullanılacak ECMAScript sürümü]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptcompileonsaveenabled@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compile on save]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaydederken derle]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptgeneratesdeclarations@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate declaration files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Bildirim dosyaları oluştur]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptjsxemit@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Compilation mode for .tsx files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[.tsx dosyaları için derleme modu]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmodulekind@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Module system]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Modül sistemi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoemitonerror@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit on error]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hata olduğunda gönder]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptnoimplicitany@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Allow implicit 'any' types]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Örtük 'any' türlerine izin ver]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptremovecomments@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Keep comments in JavaScript output]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript çıkışında açıklamaları tut]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourcemap@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Generate source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak eşlemeleri üret]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescripttarget@EnumProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript version]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript sürümü]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;EnumValue&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;amd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[AMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[AMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;commonjs@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[CommonJS]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[CommonJS]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es3@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 3]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 3]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es5@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 5]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 5]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;es6@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[ECMAScript 6]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[ECMAScript 6]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Yok]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;preserve@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Preserve JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX öğelerini koru]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;react@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emit React call for JSX elements]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JSX öğeleri için React çağrısını göster]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;system@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[System]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Sistem]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;umd@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[UMD]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[UMD]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;none@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[None]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Yok]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="1;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="2;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="3;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="4;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;false@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Yes]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Evet]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="5;true@EnumValue@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[No]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Hayır]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;Rule&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptbuild@Rule@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Derlemesi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptbuild@Rule@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[TypeScript Build]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Derlemesi]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";&lt;StringProperty&gt;" ItemType="0" PsrId="210" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId="0;typescriptmaproot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that soucemaps while debugging will be located in the sourcemap root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak haritalarını hata ayıklanırken kaynak eşlemesi kökünde bulunacak şekilde yayar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a different directory than sources]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Çıkışı kaynaklardan farklı bir dizine yeniden yönlendir]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect output to a file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Çıkışı bir dosyaya yeniden yönlendir]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@Description" ItemType="47;XML:Attr:Description" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Emits the sourcemaps such that sources while debugging will be located in the source root]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak eşlemelerini hata ayıklanırken kaynak kökünde bulunacak şekilde yayar]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptmaproot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of source maps]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak haritalarının kök dizinini belirt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutdir@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Redirect JavaScript output to directory]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript çıkışını dizine yeniden yönlendir]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptoutfile@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Combine JavaScript output into file]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[JavaScript çıkışını dosyaya birleştir]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId="0;typescriptsourceroot@StringProperty@DisplayName" ItemType="47;XML:Attr:DisplayName" PsrId="210" Leaf="true">
<Str Cat="AppData">
<Val><![CDATA[Specify root directory of TypeScript files]]></Val>
<Tgt Cat="AppData" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript dosyalarının kök dizinini belirt]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</LCX>

View File

@ -0,0 +1,123 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\Debugger\TypeScriptDebugEngine\bin\Release\TypeScriptDebugEngine.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="tr-TR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScriptDebugEngine.TypeScriptResources.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";Document_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Document {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} belgesi okunamadı: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Error_decoding_sourcemap_contents" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Error decoding sourcemap contents.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Kaynak eşlemesi içeriklerinin kodu çözülürken hata oluştu.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Invalid_sourcemap_url_0_for_script_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid sourcemap url {0} for script {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{1} betiği için geçersiz kaynak eşlemesi url'si {0}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Sourcemap_0_read_failed_1" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[SourceMap {0} read failed: {1}.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} kaynak eşlemesi okunamadı: {1}.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_format_of_sourcemap" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported format of the sourcemap.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desteklenmeyen kaynak eşlemesi biçimi.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";Unsupported_inline_sourcemap_format_specified_SourceMap_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unsupported inline sourcemap format specified. SourceMap: {0}]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Desteklenmeyen satır içi kaynak eşlemesi biçimi belirtildi. Kaynak eşlemesi: {0}]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Hata Ayıklama Altyapısı]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tüm hakları saklıdır.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScriptDebugEngine.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Debug Engine]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Hata Ayıklama Altyapısı]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="utf-8"?>
<LCX SchemaVersion="6.0" Name="E:\A\_work\326\s\VS\TypeScriptTasks\bin\Release\TypeScript.Tasks.dll" PsrId="211" FileType="1" SrcCul="en-US" TgtCul="tr-TR" xmlns="http://schemas.microsoft.com/locstudio/2006/6/lcx">
<OwnedComments>
<Cmt Name="Dev" />
<Cmt Name="LcxAdmin" />
<Cmt Name="RCCX" />
</OwnedComments>
<Settings Name="@vsLocTools@\default.lss" Type="Lss" />
<Item ItemId=";Managed Resources" ItemType="0" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
<Item ItemId=";TypeScript.Tasks.Strings.resources" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" Path=" \ ;Managed Resources \ 0 \ 0" />
<Item ItemId=";Strings" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Str" Disp="true" LocTbl="false" />
<Item ItemId=";CompilerLogNotSpecified" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[No compiler log specified, 'Clean' won't work.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Derleyici günlüğü belirtilmedi. 'Temizle' komutu çalışmaz.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ConfigFileFoundOnDisk" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[This project is using one or more tsconfig.json files for the build that may not be properly used by IntelliSense. Please set the item type of each tsconfig.json file to TypeScriptCompile or Content to ensure they are used properly by the editor.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Bu proje, IntelliSense tarafından düzgün şekilde kullanılamayan derleme için en az bir tsconfig.json dosyası kullanıyor. Düzenleyici tarafından düzgün şekilde kullanıldıklarından emin olmak için her tsconfig.json dosyasının öğe türünü TypeScriptCompile veya Content olarak ayarlayın.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorListBuildPrefix" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Build:]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Derleme:]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ErrorWritingLog" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Failed to write compiler log to '{0}. Exception: '{1}']]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Derleyici günlüğü '{0}' öğesine yazılamadı. Özel durum: '{1}']]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FallbackVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Using compiler version ({0}), if this is incorrect change the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Derleyici sürümü ({0}) kullanılıyor. Bu yanlışsa proje dosyanızdaki <TypeScriptToolsVersion> öğesini değiştirin.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LocatedReferenceFilesAt_0" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Located references file at: '{0}'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Başvuru dosyasının bulunduğu konum: '{0}'.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NoCompilerError" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project file uses a different version of the TypeScript compiler and tools than is currently installed on this machine. No compiler was found at {0}. You may be able to fix this problem by changing the <TypeScriptToolsVersion> element in your project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Proje dosyanız, bu makinede yüklü olandan farklı bir TypeScript derleyicisi ve farklı araçlar kullanıyor. {0} konumunda derleyici bulunamadı. Bu sorunu, proje dosyanızda <TypeScriptToolsVersion> öğesini değiştirerek düzeltebilirsiniz.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";NodeNotFound" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The build task could not find node.exe which is required to run the TypeScript compiler. Please install Node and ensure that the system path contains its location.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Derleme görevi, TypeScript derleyicisinin çalıştırılması için gerekli olan node.exe dosyasını bulamadı. Lütfen Node'u yükleyin ve sistem yolunun Node konumunu içerdiğinden emin olun.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ToolsVersionWarning" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Couldn't locate the compiler version ({0}) specified in the project file.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Proje dosyasında belirtilen derleyici sürümü ({0}) bulunamadı.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptCompileBlockedSet" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript compile is skipped because the TypeScriptCompileBlocked property is set to 'true'.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScriptCompileBlocked özelliği 'true' olarak ayarlandığından TypeScript derlemesi atlandı.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptNoVersionWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project does not specify a TypeScriptToolsVersion. The latest available TypeScript compiler will be used ({0}). To remove this warning, set TypeScriptToolsVersion to a specific version or "Latest" to always select the latest compiler.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Projeniz bir TypeScriptToolsVersion belirtmiyor. Kullanılabilir son TypeScript derleyicisi ({0}) kullanılacak. Bu uyarıyı kaldırmak için, TypeScriptToolsVersion değerini belirli bir sürüme ayarlayın veya en son derleyiciyi seçmek için "Latest" değerine ayarlayın.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";TypeScriptVersionMismatchWarning" ItemType="0" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Your project specifies TypeScriptToolsVersion {0}, but a matching compiler was not found. The latest available TypeScript compiler will be used ({1}). To remove this warning, install the TypeScript {0} SDK or update the value of TypeScriptToolsVersion.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Projenizde TypeScriptToolsVersion {0} olarak belirtiliyor, ancak bununla eşleşen bir derleyici bulunamadı. Kullanılabilir son TypeScript derleyicisi ({1}) kullanılacak. Bu uyarıyı kaldırmak için, TypeScript {0} SDK'sını yükleyin veya TypeScriptToolsVersion değerini güncelleştirin.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
</Item>
<Item ItemId=";Version" ItemType="0" PsrId="211" Leaf="false">
<Disp Icon="Ver" Disp="true" LocTbl="false" Path=" \ ;Version \ 8 \ 0" />
<Item ItemId=";CompanyName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Microsoft Corporation]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";FileDescription" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Yapı Görevleri]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InternalName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";LegalCopyright" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[© Microsoft Corporation. All rights reserved.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[© Microsoft Corporation. Tüm hakları saklıdır.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";OriginalFilename" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text" DevLk="true">
<Val><![CDATA[TypeScript.Tasks.dll]]></Val>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";ProductName" ItemType="0" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[TypeScript Build Tasks]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[TypeScript Yapı Görevleri]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
</Item>
<Item ItemId=";Version" ItemType="8" PsrId="211" Leaf="true">
<Disp Icon="Expand" Expand="true" Disp="true" LocTbl="false" />
</Item>
</LCX>