File size: 99,856 Bytes
c94f467 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<tmx version="1.4">
<header adminlang="en" creationdate="20200828T091334Z" creationtool="" creationtoolversion="" datatype="plaintext" o-tmf="al" segtype="block" srclang="en">
<prop type="distributor">ELRC project</prop>
<prop type="description">Acquisition of bilingual data (from multilingual websites), normalization, cleaning, deduplication and identification of parallel documents have been done by ILSP-FC tool. Multilingual embeddings (LASER) were used for alignment of segments. Merging/filtering of segment pairs has also been applied.</prop>
<prop type="l1">en</prop>
<prop type="l2">ga</prop>
<prop type="lengthInTUs">286</prop>
<prop type="# of words in l1">1866</prop>
<prop type="# of words in l2">1843</prop>
<prop type="# of unique words in l1">977</prop>
<prop type="# of unique words in l2">1000</prop>
</header>
<body>
<tu tuid="1">
<prop type="lengthRatio">0.8571428571428571</prop>
<tuv xml:lang="en">
<seg>It's in our hands.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is fúinn féin atá sé.</seg>
</tuv>
</tu>
<tu tuid="2">
<prop type="lengthRatio">0.9642857142857143</prop>
<tuv xml:lang="en">
<seg>Protec on from coronavirus.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cosaint ar an gcoróinvíreas.</seg>
</tuv>
</tu>
<tu tuid="3">
<prop type="lengthRatio">0.6458333333333334</prop>
<tuv xml:lang="en">
<seg>For updated factual informa on and advice Or call 1850 24 1850</seg>
</tuv>
<tuv xml:lang="ga">
<seg>chun an fhaisnéis agus an chomhairle fhíorasach is déanaí a fháil Nó cuir scairt ar 1850 24 1850</seg>
</tuv>
</tu>
<tu tuid="4">
<prop type="lengthRatio">2.0</prop>
<tuv xml:lang="en">
<seg>Help prevent coronavirus</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Coróinvíreas</seg>
</tuv>
</tu>
<tu tuid="5">
<prop type="lengthRatio">1.9444444444444444</prop>
<tuv xml:lang="en">
<seg>Cover mouth if coughing or sneezing</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Nigh do chuid lámh</seg>
</tuv>
</tu>
<tu tuid="6">
<prop type="lengthRatio">0.8410596026490066</prop>
<tuv xml:lang="en">
<seg>The virus spreads in sneeze and cough droplets, so regularly taking the above measures helps reduce the chance of it spreading.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Scaiptear an víreas thrí sraoth agus trí bhraoiníní ó chasacht, mar sin má dhéantar na bearta thuas cuideoidh sé leis an seans go scaipfear é a laghdú.</seg>
</tuv>
</tu>
<tu tuid="7">
<prop type="lengthRatio">1.435897435897436</prop>
<tuv xml:lang="en">
<seg>A video demonstration is available at hse.ie/handhygiene</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá físean ar fáil ag hse.ie/handhygiene</seg>
</tuv>
</tu>
<tu tuid="8">
<prop type="lengthRatio">0.6527777777777778</prop>
<tuv xml:lang="en">
<seg>Older people can contact ALONE on 0818 222 024.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is féidir le daoine aosta teagmháil a dhéanamh le ALONE ar 0818 222 024.</seg>
</tuv>
</tu>
<tu tuid="9">
<prop type="lengthRatio">0.7142857142857143</prop>
<tuv xml:lang="en">
<seg>Cough</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Casacht</seg>
</tuv>
</tu>
<tu tuid="10">
<prop type="lengthRatio">0.746268656716418</prop>
<tuv xml:lang="en">
<seg>Call HSELive on 1850 24 1850 for further guidance.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Glaoigh ar HSELive an 1850 24 1850 chun tuilleadh treorach a fháil.</seg>
</tuv>
</tu>
<tu tuid="11">
<prop type="lengthRatio">0.7857142857142857</prop>
<tuv xml:lang="en">
<seg>Sore Throat</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Scornach thinn</seg>
</tuv>
</tu>
<tu tuid="12">
<prop type="lengthRatio">1.2</prop>
<tuv xml:lang="en">
<seg>Around</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Aonrú</seg>
</tuv>
</tu>
<tu tuid="13">
<prop type="lengthRatio">1.5238095238095237</prop>
<tuv xml:lang="en">
<seg>Coronavirus COVID-19 Information</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Coróinvíreas COVID-19</seg>
</tuv>
</tu>
<tu tuid="14">
<prop type="lengthRatio">0.6557377049180327</prop>
<tuv xml:lang="en">
<seg>See yourmentalhealth.ie for more advice.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Féach ar yourmentalhealth.ie le haghaidh tuilleadh comhairle.</seg>
</tuv>
</tu>
<tu tuid="15">
<prop type="lengthRatio">2.25</prop>
<tuv xml:lang="en">
<seg>You should avoid sharing dishes, drinking glasses, cups, eating utensils, towels, bedding or other items with other people in your home. After you use these items, they should be washed in a dishwasher or alternatively with soap and hot water.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ná roinn miasa, gloiní, cupáin, uirlisí ithe, tuáillí, cóir leapa nó earraí eile le daoine eile i do theach.</seg>
</tuv>
</tu>
<tu tuid="16">
<prop type="lengthRatio">1.1428571428571428</prop>
<tuv xml:lang="en">
<seg>High temperature over 38 degrees Celsius</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teocht ard os cionn 38 céim Celsius</seg>
</tuv>
</tu>
<tu tuid="17">
<prop type="lengthRatio">1.368421052631579</prop>
<tuv xml:lang="en">
<seg>Public Information Booklet</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Uaireanta i bpáistí</seg>
</tuv>
</tu>
<tu tuid="18">
<prop type="lengthRatio">1.0333333333333334</prop>
<tuv xml:lang="en">
<seg>What is Coronavirus (COVID-19)?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cad é Coróinvíreas (COVID-19)?</seg>
</tuv>
</tu>
<tu tuid="19">
<prop type="lengthRatio">0.4444444444444444</prop>
<tuv xml:lang="en">
<seg>bag.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Buinneach</seg>
</tuv>
</tu>
<tu tuid="20">
<prop type="lengthRatio">1.4</prop>
<tuv xml:lang="en">
<seg>Current</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Aonrú</seg>
</tuv>
</tu>
<tu tuid="21">
<prop type="lengthRatio">0.90625</prop>
<tuv xml:lang="en">
<seg>What is Coronavirus COVID-19?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>1 Cad é Coróinvíreas (COVID-19)?</seg>
</tuv>
</tu>
<tu tuid="22">
<prop type="lengthRatio">1.4090909090909092</prop>
<tuv xml:lang="en">
<seg>I will take your blood pressure</seg>
</tuv>
<tuv xml:lang="ga">
<seg>I will take your blood</seg>
</tuv>
</tu>
<tu tuid="23">
<prop type="lengthRatio">1.1666666666666667</prop>
<tuv xml:lang="en">
<seg>from ……… to ……… and from ……… to ………</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó ……… go ……… agus ó ……… go ………</seg>
</tuv>
</tu>
<tu tuid="24">
<prop type="lengthRatio">1.1481481481481481</prop>
<tuv xml:lang="en">
<seg>What is your country of origin?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>What is your date of birth?</seg>
</tuv>
</tu>
<tu tuid="25">
<prop type="lengthRatio">1.35</prop>
<tuv xml:lang="en">
<seg>How long have you been ill?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>How bad is the pain?</seg>
</tuv>
</tu>
<tu tuid="26">
<prop type="lengthRatio">1.2352941176470589</prop>
<tuv xml:lang="en">
<seg>Do you have any pain?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>I have a headache</seg>
</tuv>
</tu>
<tu tuid="27">
<prop type="lengthRatio">1.0714285714285714</prop>
<tuv xml:lang="en">
<seg>Physiotherapist</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fisiteiripeoir</seg>
</tuv>
</tu>
<tu tuid="28">
<prop type="lengthRatio">1.5294117647058822</prop>
<tuv xml:lang="en">
<seg>Take off any jewellery 55.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>do chraiceann 49.</seg>
</tuv>
</tu>
<tu tuid="29">
<prop type="lengthRatio">0.8695652173913043</prop>
<tuv xml:lang="en">
<seg>Tohle je tep dítûte.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cad é do dháta breithe?</seg>
</tuv>
</tu>
<tu tuid="30">
<prop type="lengthRatio">0.9538461538461539</prop>
<tuv xml:lang="en">
<seg>ČíÀan any other Asian background jiná asijská kultura d. Other</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Síneach any other Asian background Cúlra ar bith eile na hÁise d.</seg>
</tuv>
</tu>
<tu tuid="31">
<prop type="lengthRatio">1.0714285714285714</prop>
<tuv xml:lang="en">
<seg>Shoulder ramena</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Eyes do shúile</seg>
</tuv>
</tu>
<tu tuid="32">
<prop type="lengthRatio">0.8181818181818182</prop>
<tuv xml:lang="en">
<seg>What is your name?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>What is your religion?</seg>
</tuv>
</tu>
<tu tuid="33">
<prop type="lengthRatio">0.8181818181818182</prop>
<tuv xml:lang="en">
<seg>Hepatitis</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Heipitíteas</seg>
</tuv>
</tu>
<tu tuid="34">
<prop type="lengthRatio">2.076923076923077</prop>
<tuv xml:lang="en">
<seg>Is there somebody with you?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Conas atá tú?</seg>
</tuv>
</tu>
<tu tuid="35">
<prop type="lengthRatio">1.6666666666666667</prop>
<tuv xml:lang="en">
<seg>Month</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Day</seg>
</tuv>
</tu>
<tu tuid="36">
<prop type="lengthRatio">0.75</prop>
<tuv xml:lang="en">
<seg>Brown hnûdou</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Neck do mhuineál</seg>
</tuv>
</tu>
<tu tuid="37">
<prop type="lengthRatio">1.2222222222222223</prop>
<tuv xml:lang="en">
<seg>Any others?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>urlabhra?</seg>
</tuv>
</tu>
<tu tuid="38">
<prop type="lengthRatio">1.2142857142857142</prop>
<tuv xml:lang="en">
<seg>Christian KfiesÈan</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bean Chabhrach</seg>
</tuv>
</tu>
<tu tuid="39">
<prop type="lengthRatio">0.3695652173913043</prop>
<tuv xml:lang="en">
<seg>Up to three hours</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Suas le trí huaire an chloig Up to three hours</seg>
</tuv>
</tu>
<tu tuid="40">
<prop type="lengthRatio">0.9090909090909091</prop>
<tuv xml:lang="en">
<seg>Breathe in</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Éireannach.</seg>
</tuv>
</tu>
<tu tuid="41">
<prop type="lengthRatio">0.75</prop>
<tuv xml:lang="en">
<seg>Sep 2015.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Leanaí 2015.</seg>
</tuv>
</tu>
<tu tuid="42">
<prop type="lengthRatio">1.375</prop>
<tuv xml:lang="en">
<seg>Ar deis De go raibh a anam dilis.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An raibh tú ag cur fola?</seg>
</tuv>
</tu>
<tu tuid="43">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Breastfeeding 49.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>do chraiceann 49.</seg>
</tuv>
</tu>
<tu tuid="44">
<prop type="lengthRatio">0.8571428571428571</prop>
<tuv xml:lang="en">
<seg>They are: 1.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is iad sin: 1.</seg>
</tuv>
</tu>
<tu tuid="45">
<prop type="lengthRatio">1.3333333333333333</prop>
<tuv xml:lang="en">
<seg>BJOG</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí</seg>
</tuv>
</tu>
<tu tuid="46">
<prop type="lengthRatio">0.9782608695652174</prop>
<tuv xml:lang="en">
<seg>Ne ilgiau nei tris valandas Up to three hours</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Suas le trí huaire an chloig Up to three hours</seg>
</tuv>
</tu>
<tu tuid="47">
<prop type="lengthRatio">0.96875</prop>
<tuv xml:lang="en">
<seg>What is Coronavirus (COVID-19)?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>1 Cad é Coróinvíreas (COVID-19)?</seg>
</tuv>
</tu>
<tu tuid="48">
<prop type="lengthRatio">1.1111111111111112</prop>
<tuv xml:lang="en">
<seg>Fourchette</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Caitheann</seg>
</tuv>
</tu>
<tu tuid="49">
<prop type="lengthRatio">0.5952380952380952</prop>
<tuv xml:lang="en">
<seg>Sent to NVRL Up to 7 days</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Suas le dhá uair an chloig Up to two hours</seg>
</tuv>
</tu>
<tu tuid="50">
<prop type="lengthRatio">1.4</prop>
<tuv xml:lang="en">
<seg>Several</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Other</seg>
</tuv>
</tu>
<tu tuid="51">
<prop type="lengthRatio">1.1666666666666667</prop>
<tuv xml:lang="en">
<seg>How common are animal bites?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cén tír inar rugadh thú?</seg>
</tuv>
</tu>
<tu tuid="52">
<prop type="lengthRatio">1.6091954022988506</prop>
<tuv xml:lang="en">
<seg>In relation to incidents of alleged child abuse or neglect this is to Tusla child and Family Agency and An Garda Síochána (Section 5, p 21).</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Dealing with Concerns about a Child - Tusla and An Garda SíochánaCHAPTER 5 45 CHAPTER 5</seg>
</tuv>
</tu>
<tu tuid="53">
<prop type="lengthRatio">1.25</prop>
<tuv xml:lang="en">
<seg>Dashboard.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>dtosach.</seg>
</tuv>
</tu>
<tu tuid="54">
<prop type="lengthRatio">1.3214285714285714</prop>
<tuv xml:lang="en">
<seg>Investigator, Office of the Ombudsman</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Oifig an Ombudsman do Leanaí</seg>
</tuv>
</tu>
<tu tuid="55">
<prop type="lengthRatio">0.3877551020408163</prop>
<tuv xml:lang="en">
<seg>Cherniak EP (2002).</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Na hAchtanna Sláinte Poiblí (Tobac) 2002 and 2004</seg>
</tuv>
</tu>
<tu tuid="56">
<prop type="lengthRatio">1.5555555555555556</prop>
<tuv xml:lang="en">
<seg>Have you read the guideline?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cé leis an riosca?</seg>
</tuv>
</tu>
<tu tuid="57">
<prop type="lengthRatio">0.5833333333333334</prop>
<tuv xml:lang="en">
<seg>Nutr Clin Pract 2015;</seg>
</tuv>
<tuv xml:lang="ga">
<seg>AN tACHT UM THÚS ÁITE DO LEANAÍ 2015</seg>
</tuv>
</tu>
<tu tuid="58">
<prop type="lengthRatio">0.7368421052631579</prop>
<tuv xml:lang="en">
<seg>Low-prevalence</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Measúnacht príacail</seg>
</tuv>
</tu>
<tu tuid="59">
<prop type="lengthRatio">0.7</prop>
<tuv xml:lang="en">
<seg>2 Cosc.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá cosc ar</seg>
</tuv>
</tu>
<tu tuid="60">
<prop type="lengthRatio">0.7692307692307693</prop>
<tuv xml:lang="en">
<seg>Don't Know</seg>
</tuv>
<tuv xml:lang="ga">
<seg>No Don't Know</seg>
</tuv>
</tu>
<tu tuid="61">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Jak silná je bolest?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>How bad is the pain?</seg>
</tuv>
</tu>
<tu tuid="62">
<prop type="lengthRatio">2.3333333333333335</prop>
<tuv xml:lang="en">
<seg>When did your last menstrual period begin?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>When did it start?</seg>
</tuv>
</tu>
<tu tuid="63">
<prop type="lengthRatio">0.76</prop>
<tuv xml:lang="en">
<seg>Mûl(a) jste nehodu?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Have you had an accident?</seg>
</tuv>
</tu>
<tu tuid="64">
<prop type="lengthRatio">0.8076923076923077</prop>
<tuv xml:lang="en">
<seg>Máte nûjaké krvácení?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Have you had any bleeding?</seg>
</tuv>
</tu>
<tu tuid="65">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Praskla už plodová voda?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Have your waters broken?</seg>
</tuv>
</tu>
<tu tuid="66">
<prop type="lengthRatio">1.9090909090909092</prop>
<tuv xml:lang="en">
<seg>These groups include:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is mise do:</seg>
</tuv>
</tu>
<tu tuid="67">
<prop type="lengthRatio">0.9666666666666667</prop>
<tuv xml:lang="en">
<seg>od ……… do ……… a od ……… do ………</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó ……… go ……… agus ó ……… go ………</seg>
</tuv>
</tu>
<tu tuid="68">
<prop type="lengthRatio">0.9615384615384616</prop>
<tuv xml:lang="en">
<seg>Do you have contractions?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Do you have any allergies?</seg>
</tuv>
</tu>
<tu tuid="69">
<prop type="lengthRatio">1.1851851851851851</prop>
<tuv xml:lang="en">
<seg>Coronavirus COVID-19 Information</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Coróinvíreas Eolas COVID-19</seg>
</tuv>
</tu>
<tu tuid="70">
<prop type="lengthRatio">1.5416666666666667</prop>
<tuv xml:lang="en">
<seg>The supply of medicines will continue</seg>
</tuv>
<tuv xml:lang="ga">
<seg>medications (for example</seg>
</tuv>
</tu>
<tu tuid="71">
<prop type="lengthRatio">0.56</prop>
<tuv xml:lang="en">
<seg>Chci se napít.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>You must drink a litre of</seg>
</tuv>
</tu>
<tu tuid="72">
<prop type="lengthRatio">1.1627906976744187</prop>
<tuv xml:lang="en">
<seg>Tento monitor bude kontrolovat srde ní tep dítûte.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>The monitor will check the baby's heartbeat</seg>
</tuv>
</tu>
<tu tuid="73">
<prop type="lengthRatio">1.2307692307692308</prop>
<tuv xml:lang="en">
<seg>Where to go for more informa on?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>someone we can contact for</seg>
</tuv>
</tu>
<tu tuid="74">
<prop type="lengthRatio">0.5617977528089888</prop>
<tuv xml:lang="en">
<seg>Call HSELive on 1850 24 1850 for further guidance.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is féidir leat glaoch freisin ar HSELive ar 1850 24 1850 chun tuilleadh treorach a fháil.</seg>
</tuv>
</tu>
<tu tuid="75">
<prop type="lengthRatio">0.6842105263157895</prop>
<tuv xml:lang="en">
<seg>srde ní dietu</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Is féidir Ní féidir</seg>
</tuv>
</tu>
<tu tuid="76">
<prop type="lengthRatio">0.8181818181818182</prop>
<tuv xml:lang="en">
<seg>nízkotu nou dietu.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teastaíonn deoch uaim.</seg>
</tuv>
</tu>
<tu tuid="77">
<prop type="lengthRatio">1.2592592592592593</prop>
<tuv xml:lang="en">
<seg>You should avoid sharing dishes, drinking glasses, cups, eating utensils, towels, bedding or other items with other people in your home.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ná roinn miasa, gloiní, cupáin, uirlisí ithe, tuáillí, cóir leapa nó earraí eile le daoine eile i do theach.</seg>
</tuv>
</tu>
<tu tuid="78">
<prop type="lengthRatio">1.1714285714285715</prop>
<tuv xml:lang="en">
<seg>Prozatím musíme zákrok/ proceduru odložit</seg>
</tuv>
<tuv xml:lang="ga">
<seg>anything until after your procedure</seg>
</tuv>
</tu>
<tu tuid="79">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 5 | Discharge Questions | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 5 | Discharge Questions | Irish</seg>
</tuv>
</tu>
<tu tuid="80">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 4 | Maternity | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 4 | Maternity | Irish</seg>
</tuv>
</tu>
<tu tuid="81">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 1 | Admission | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 1 | Admission | Irish</seg>
</tuv>
</tu>
<tu tuid="82">
<prop type="lengthRatio">1.0833333333333333</prop>
<tuv xml:lang="en">
<seg>Kolikáté máte tûhotenství?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cén tír inar rugadh thú?</seg>
</tuv>
</tu>
<tu tuid="83">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 6 | Patient's Questions | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 6 | Patient's Questions | Irish</seg>
</tuv>
</tu>
<tu tuid="84">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 3 | Clinical Care | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 3 | Clinical Care | Irish</seg>
</tuv>
</tu>
<tu tuid="85">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>HSE Emergency Multilingual Aid | Section 2 | Assessment | Czech</seg>
</tuv>
<tuv xml:lang="ga">
<seg>HSE Emergency Multilingual Aid | Section 2 | Assessment | Irish</seg>
</tuv>
</tu>
<tu tuid="86">
<prop type="lengthRatio">0.6666666666666666</prop>
<tuv xml:lang="en">
<seg>Cork (4)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Corcaigh (4)</seg>
</tuv>
</tu>
<tu tuid="87">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Open Heart House</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teach Open Heart</seg>
</tuv>
</tu>
<tu tuid="88">
<prop type="lengthRatio">0.9310344827586207</prop>
<tuv xml:lang="en">
<seg>Note 22 Vote Accounting (a)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Nóta 22 Cuntasaíocht Vóta (a)</seg>
</tuv>
</tu>
<tu tuid="89">
<prop type="lengthRatio">0.9545454545454546</prop>
<tuv xml:lang="en">
<seg>Sisters of Bon Saveur</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Siúracha an Bon Saveur</seg>
</tuv>
</tu>
<tu tuid="90">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Telephone: 01 6352000</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teileafón: 01 6352000</seg>
</tuv>
</tu>
<tu tuid="91">
<prop type="lengthRatio">1.4242424242424243</prop>
<tuv xml:lang="en">
<seg>the period Q4, 2008 to Q3, 2009 (35% reduction)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>R4, 2008 go R3, 2009 (laghdú 35%)</seg>
</tuv>
</tu>
<tu tuid="92">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>East Limerick:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>East Luimneach:</seg>
</tuv>
</tu>
<tu tuid="93">
<prop type="lengthRatio">0.8333333333333334</prop>
<tuv xml:lang="en">
<seg>by 5%</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá 35%</seg>
</tuv>
</tu>
<tu tuid="94">
<prop type="lengthRatio">0.96</prop>
<tuv xml:lang="en">
<seg>Professor Michael Murphy</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An tOllamh Michael Murphy</seg>
</tuv>
</tu>
<tu tuid="95">
<prop type="lengthRatio">1.5555555555555556</prop>
<tuv xml:lang="en">
<seg>Service delivery was 3-4% ahead of target.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí soláthar seirbhíse 3-4%</seg>
</tuv>
</tu>
<tu tuid="96">
<prop type="lengthRatio">2.0952380952380953</prop>
<tuv xml:lang="en">
<seg>The Committee reports directly to the Board.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Support to the Board.</seg>
</tuv>
</tu>
<tu tuid="97">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>Tel: 022/30248</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 022/30248</seg>
</tuv>
</tu>
<tu tuid="98">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Telephone: 045 880400</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teileafón: 045 880400</seg>
</tuv>
</tu>
<tu tuid="99">
<prop type="lengthRatio">0.8888888888888888</prop>
<tuv xml:lang="en">
<seg>• Payments to Pharmacies totalled €1,695 million</seg>
</tuv>
<tuv xml:lang="ga">
<seg>B'ionann íocaíochtaí le Poitigéirí agus €1,695 milliún</seg>
</tuv>
</tu>
<tu tuid="100">
<prop type="lengthRatio">0.8823529411764706</prop>
<tuv xml:lang="en">
<seg>• Westbury HC (Limerick/Clare)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>IS Westbury HC (Luimneach/An Clár)</seg>
</tuv>
</tu>
<tu tuid="101">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 094/9049065</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 094/9049065</seg>
</tuv>
</tu>
<tu tuid="102">
<prop type="lengthRatio">0.8901098901098901</prop>
<tuv xml:lang="en">
<seg>Graiguenamanagh Elderly Association Greater Blanchardstown Response to Drugs GROW</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cumann Ghráig na Manach do Dhaoine Breacaosta Greater Blanchardstown Response to Drugs GROW</seg>
</tuv>
</tu>
<tu tuid="103">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>Tel: 052/77015</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 052/77015</seg>
</tuv>
</tu>
<tu tuid="104">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Pandemic (H N ) 2009 (Swine Flu)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Paindéim (H N ) 2009 (Fliú Mucúil)</seg>
</tuv>
</tu>
<tu tuid="105">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Front (left to right): Public Representatives - Mary Killeen; Anne McDonnell; Mary McGreal; Brendan Githrie; Michael Jordan; Michael Murphy.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Chun tosaigh (clé go deas): ionadaithe pobail - Mary Killeen; Anne McDonnell; Mary McGreal; Brendan Githrie; Michael Jordan; Michael Murphy.</seg>
</tuv>
</tu>
<tu tuid="106">
<prop type="lengthRatio">1.5</prop>
<tuv xml:lang="en">
<seg>us.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>i.</seg>
</tuv>
</tu>
<tu tuid="107">
<prop type="lengthRatio">1.0465116279069768</prop>
<tuv xml:lang="en">
<seg>St. John's Hospital, Limerick Tel: 061/462222</seg>
</tuv>
<tuv xml:lang="ga">
<seg>John's Hospital, Luimneach Teil: 061/462222</seg>
</tuv>
</tu>
<tu tuid="108">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 053/9123522</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 053/9123522</seg>
</tuv>
</tu>
<tu tuid="109">
<prop type="lengthRatio">0.9454545454545454</prop>
<tuv xml:lang="en">
<seg>Chrysalis Community Drug Project Cill Dara Ar Aghaid</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tionscadal Pobail Drugaí Chrysalis Cill Dara Ar Aghaidh</seg>
</tuv>
</tu>
<tu tuid="110">
<prop type="lengthRatio">0.9375</prop>
<tuv xml:lang="en">
<seg>Tel: 091/775109</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 091/775109</seg>
</tuv>
</tu>
<tu tuid="111">
<prop type="lengthRatio">1.0125</prop>
<tuv xml:lang="en">
<seg>There were a total of 1,119,719 attendances in our 34 acute hospital EDs in 2009.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí líon iomlán de 1,119,719 freastal i RÉ ár 34 ospidéal géarmhíochaine i 2009.</seg>
</tuv>
</tu>
<tu tuid="112">
<prop type="lengthRatio">4.142857142857143</prop>
<tuv xml:lang="en">
<seg>depreciated at 10% per annum.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>go 10%.</seg>
</tuv>
</tu>
<tu tuid="113">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>85,000 were vaccinated, an uptake of around 75%.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tugadh vacsaín do 85,000 duine, iontógáil de 75%</seg>
</tuv>
</tu>
<tu tuid="114">
<prop type="lengthRatio">0.9666666666666667</prop>
<tuv xml:lang="en">
<seg>Community Awareness of Drugs (CAD) Community Creations Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Feasacht an Phobail ar Dhrugaí (CAD) Community Creations Ltd</seg>
</tuv>
</tu>
<tu tuid="115">
<prop type="lengthRatio">1.0689655172413792</prop>
<tuv xml:lang="en">
<seg>• 562 (22%) more than 12 months</seg>
</tuv>
<tuv xml:lang="ga">
<seg>562 (22%) níos faide ná 12 mí</seg>
</tuv>
</tu>
<tu tuid="116">
<prop type="lengthRatio">1.3442622950819672</prop>
<tuv xml:lang="en">
<seg>The second progress report has also been completed and is available on www.hse.ie.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>onthly performance reports provide an integrated, www.hse.ie.</seg>
</tuv>
</tu>
<tu tuid="117">
<prop type="lengthRatio">0.9545454545454546</prop>
<tuv xml:lang="en">
<seg>Good Shepherd Sisters</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Siúracha Good Shepherd</seg>
</tuv>
</tu>
<tu tuid="118">
<prop type="lengthRatio">1.025</prop>
<tuv xml:lang="en">
<seg>Figure 2 : Number of MRSA Cases 2006-2009</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fíor 21: Líon na gCásanna MRSA 2006-2009</seg>
</tuv>
</tu>
<tu tuid="119">
<prop type="lengthRatio">0.8235294117647058</prop>
<tuv xml:lang="en">
<seg>• 2,472 people retired in 2009 (1,921 WTE)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>D'éirigh 2,472 duine as sa bhliain 2009 (1,921 CLA)</seg>
</tuv>
</tu>
<tu tuid="120">
<prop type="lengthRatio">0.8947368421052632</prop>
<tuv xml:lang="en">
<seg>Irish Pre-School Playgrounds Association (IPPA) Irish Prison Service</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Irish Pre-School Playgrounds Association (IPPA) Seirbhís Príosún na hÉireann</seg>
</tuv>
</tu>
<tu tuid="121">
<prop type="lengthRatio">2.076923076923077</prop>
<tuv xml:lang="en">
<seg>Ferns Diocesan Youth Services Festina Lente Foundation</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fondúiteacht Festina Lente</seg>
</tuv>
</tu>
<tu tuid="122">
<prop type="lengthRatio">0.8333333333333334</prop>
<tuv xml:lang="en">
<seg>Edward Worth Library</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Leabharlann Edward Worth</seg>
</tuv>
</tu>
<tu tuid="123">
<prop type="lengthRatio">0.9090909090909091</prop>
<tuv xml:lang="en">
<seg>Alpha One Foundation</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fondúireacht Alpha One</seg>
</tuv>
</tu>
<tu tuid="124">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 066/7184549</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 066/7184549</seg>
</tuv>
</tu>
<tu tuid="125">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Caremark Ireland</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Caremark Éireann</seg>
</tuv>
</tu>
<tu tuid="126">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>In 2008/09 this rose to 71%.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>I 2008/09 d'ardaigh seo go 71%</seg>
</tuv>
</tu>
<tu tuid="127">
<prop type="lengthRatio">0.8260869565217391</prop>
<tuv xml:lang="en">
<seg>• Clonbrusk Athlone</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Oiliúint athshlánúcháin</seg>
</tuv>
</tu>
<tu tuid="128">
<prop type="lengthRatio">0.9375</prop>
<tuv xml:lang="en">
<seg>Tel: 051/846766</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 051/846766</seg>
</tuv>
</tu>
<tu tuid="129">
<prop type="lengthRatio">1.1666666666666667</prop>
<tuv xml:lang="en">
<seg>In Ireland, stroke (cerebrovascular disease) accounts for 7.2% of all deaths.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>In Éirinn, is strócanna (galar ceirbreashoithíoch) is cúis le 7.2%</seg>
</tuv>
</tu>
<tu tuid="130">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Tabor Lodge</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Loch Garman</seg>
</tuv>
</tu>
<tu tuid="131">
<prop type="lengthRatio">0.9285714285714286</prop>
<tuv xml:lang="en">
<seg>See Note 8 and Appendix 1.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Féach Nóta 8 agus Aguisín 1.</seg>
</tuv>
</tu>
<tu tuid="132">
<prop type="lengthRatio">1.3108108108108107</prop>
<tuv xml:lang="en">
<seg>• There were over 1,100,000 attendances at Emergency Departments (EDs) in 2009, an increase of 2%</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí os cionn 1,100,000 freastal ar Rannóga Éigeandála (RÉ) i 2009, ardú 2%</seg>
</tuv>
</tu>
<tu tuid="133">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Cork Association for Autism Cork City Partnership Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cumann Chorcaí um Uathachas Cork City Partnership Ltd</seg>
</tuv>
</tu>
<tu tuid="134">
<prop type="lengthRatio">1.0384615384615385</prop>
<tuv xml:lang="en">
<seg>Shalamar Finiskilin Housing Association Shannondoc Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cumann Títhíochta Shalamar Finiskilin Shannondoc Ltd</seg>
</tuv>
</tu>
<tu tuid="135">
<prop type="lengthRatio">0.9105960264900662</prop>
<tuv xml:lang="en">
<seg>New Oncology Day Services Unit opens in Drogheda Left to right: Christine Conway, Wendy Rock, Martina Owens, Claire Herbert, Liz Summersby, Grainne Mooney, Dara McGeough, Elaine Conyard and Niamh Thornton (Oncology staff), with Dr. Liam Grogan, Consultant Medical Oncologist.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Osclaíonn Aonad Seirbhísí Lae Oinceolaíochta i nDroichead Átha Clé go deas: Christine Conway, Wendy Rock, Martina Owens, Claire Herbert, Liz Summersby, Grainne Mooney, Dara McGeough, Elaine Conyard agusNiamh Thornton (Foireann oinceolaíochta), leis an Dr. Liam Grogan, Oinceolaí Míochaine Comhairleach.</seg>
</tuv>
</tu>
<tu tuid="136">
<prop type="lengthRatio">1.25</prop>
<tuv xml:lang="en">
<seg>Longford / Westmeath</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Longfort/ Iarmhí</seg>
</tuv>
</tu>
<tu tuid="137">
<prop type="lengthRatio">0.8285714285714286</prop>
<tuv xml:lang="en">
<seg>• Dunmanway Co. Cork (23 Bed)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Dún Mhánmhaí Co. Chorcaí (23 Leaba)</seg>
</tuv>
</tu>
<tu tuid="138">
<prop type="lengthRatio">0.9550561797752809</prop>
<tuv xml:lang="en">
<seg>Care for the Elderly at Home Ltd Care Of The Aged, West Kerry Caredoc GP Co-operative</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Care for the Elderly at Home Ltd Cúram na Sean, Iarthar Chiarraí Comharchumann Caredoc GP</seg>
</tuv>
</tu>
<tu tuid="139">
<prop type="lengthRatio">0.9578947368421052</prop>
<tuv xml:lang="en">
<seg>Longford Community Resources Ltd Longford Social Services Committee Longford Women's Centre</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Longford Community Resources Ltd Coiste Seirbhísí Sóisialta an Longfoirt Ionad Ban an Longfoirt</seg>
</tuv>
</tu>
<tu tuid="140">
<prop type="lengthRatio">0.8596491228070176</prop>
<tuv xml:lang="en">
<seg>Photo: Dr. Niall Sheehy, Lead Radiologist, NIMIS.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Grianghraf: An Dr. Niall Sheehy, Príomh-Raideolaí, CDÍCL.</seg>
</tuv>
</tu>
<tu tuid="141">
<prop type="lengthRatio">0.9459459459459459</prop>
<tuv xml:lang="en">
<seg>Anne Sullivan Foundation for Deaf/Blind Aoibhneas Foundation Ltd Aosóg</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fondúireacht Anne Sullivan do na Bodhair/na Daill Aoibhneas Foundation Ltd</seg>
</tuv>
</tu>
<tu tuid="142">
<prop type="lengthRatio">0.9629629629629629</prop>
<tuv xml:lang="en">
<seg>O'Connell Court Residential and Day Care One in Four</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cúram Lae agus Cónaitheach O'Connell Court One in Four</seg>
</tuv>
</tu>
<tu tuid="143">
<prop type="lengthRatio">2.25</prop>
<tuv xml:lang="en">
<seg>Other Developments</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Drugaí &</seg>
</tuv>
</tu>
<tu tuid="144">
<prop type="lengthRatio">0.9464285714285714</prop>
<tuv xml:lang="en">
<seg>Back (left to right): Dr. Paud O'Regan, Clinical Director, Louise O'Donnell, Administration OPD, Mary Rose Maxwell, CNMII OPD, Breda Kavanagh, General Manager.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ar cúl (clé go deas): an Dr. Paud O'Regan, Stiúrthóir Cliniciúil, Louise O'Donnell, Riarachán ROS, Mary Rose Maxwell, CNMII ROS, Breda Kavanagh, Bainisteoir Ginearálta.</seg>
</tuv>
</tu>
<tu tuid="145">
<prop type="lengthRatio">0.9375</prop>
<tuv xml:lang="en">
<seg>Tel: 01/2744374</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 01 2744374</seg>
</tuv>
</tu>
<tu tuid="146">
<prop type="lengthRatio">0.8518518518518519</prop>
<tuv xml:lang="en">
<seg>• Cope Foundation Cork.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fondúireacht Cope Corcaigh.</seg>
</tuv>
</tu>
<tu tuid="147">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 021/4923954</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 021/4923954</seg>
</tuv>
</tu>
<tu tuid="148">
<prop type="lengthRatio">0.9056603773584906</prop>
<tuv xml:lang="en">
<seg>Cappagh National Orthopaedic Hospital Capuchians</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Ortaipéideach Náisiúnta na Ceapaí Capuchians</seg>
</tuv>
</tu>
<tu tuid="149">
<prop type="lengthRatio">1.0144927536231885</prop>
<tuv xml:lang="en">
<seg>MS Ireland - Multiple Sclerosis Society of Ireland Muintir na Tire Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>MS Ireland - Cumann Scléaróis Iolrach na hÉireann Muintir na Tire Ltd</seg>
</tuv>
</tu>
<tu tuid="150">
<prop type="lengthRatio">0.9154929577464789</prop>
<tuv xml:lang="en">
<seg>Centres for Independent Living (CIL) Charleville Care Project Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ionaid um Mhaireachtáil Neamhspleách (CIL) Charleville Care Project Ltd</seg>
</tuv>
</tu>
<tu tuid="151">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Louth</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Luain</seg>
</tuv>
</tu>
<tu tuid="152">
<prop type="lengthRatio">1.048780487804878</prop>
<tuv xml:lang="en">
<seg>Abbey Wreaths Limited - a company limited by guarantee and not having a share capital.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Abbey Wreaths Limited - cuideachta faoi theorainn ráthaíochta gan scairchaipiteal.</seg>
</tuv>
</tu>
<tu tuid="153">
<prop type="lengthRatio">0.9230769230769231</prop>
<tuv xml:lang="en">
<seg>During 2009:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Le linn 2009:</seg>
</tuv>
</tu>
<tu tuid="154">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>• Clontarf Phase 1 (32 Beds)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cluain Tarbh Céim 1 (32 Leaba)</seg>
</tuv>
</tu>
<tu tuid="155">
<prop type="lengthRatio">0.9289940828402367</prop>
<tuv xml:lang="en">
<seg>In 2009, the Health Information and Quality Authority (HIQA) published National Standards for the Prevention and Control of Healthcare Associated Infections.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Sa bhliain 2009, d'fhoilsigh an tÚdarás um Fhaisnéis agus Cáilíocht Sláinte (ÚFCS) National Standards for the Prevention and Control of Healthcare Associated Infections.</seg>
</tuv>
</tu>
<tu tuid="156">
<prop type="lengthRatio">0.7228915662650602</prop>
<tuv xml:lang="en">
<seg>Fitzpatrick, Mr. Joe Mooney and Mr. Willie O'Reilly in 2009.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An tUasal PJ Fitzpatrick, agus An tUasal Joe Mooney agus an tUasal Willie O'Reilly.</seg>
</tuv>
</tu>
<tu tuid="157">
<prop type="lengthRatio">1.0470588235294118</prop>
<tuv xml:lang="en">
<seg>Dolmen Clubhouse Limited - a company limited by guarantee and not having a share capital.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Dolmen Clubhouse Limited - cuideachta faoi theorainn ráthaíochta gan scairchaipiteal.</seg>
</tuv>
</tu>
<tu tuid="158">
<prop type="lengthRatio">0.835820895522388</prop>
<tuv xml:lang="en">
<seg>Ciara Heverin and Helen Burke accepting the Irish award.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ciara Heverin agus Helen Burke ag glacadh leis an duais Éireannach.</seg>
</tuv>
</tu>
<tu tuid="159">
<prop type="lengthRatio">1.0769230769230769</prop>
<tuv xml:lang="en">
<seg>Aishling Group</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Grúpa Aislinn</seg>
</tuv>
</tu>
<tu tuid="160">
<prop type="lengthRatio">6.0</prop>
<tuv xml:lang="en">
<seg>We are</seg>
</tuv>
<tuv xml:lang="ga">
<seg>É</seg>
</tuv>
</tu>
<tu tuid="161">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 021/4923833</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 021/4923833</seg>
</tuv>
</tu>
<tu tuid="162">
<prop type="lengthRatio">0.8914728682170543</prop>
<tuv xml:lang="en">
<seg>Mulhuddart/Corduff Community Drugs Team Multiple Sclerosis North West Therapy Centre Ltd Muscular Dystrophy Ireland</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Foireann Drugaí Pobail, Mullach Eadrad/An Corr Dubh Multiple Sclerosis North West Therapy Centre Ltd Diostróife Mhatánach Éireann</seg>
</tuv>
</tu>
<tu tuid="163">
<prop type="lengthRatio">0.9444444444444444</prop>
<tuv xml:lang="en">
<seg>Convent House Daycare and Resource Centre Ltd Coolmine Therapeutic Community Ltd Coolock/Harmonstown/Artane Drugs Awareness Group Coombe Women's Hospital</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Convent House Daycare and Resource Centre Ltd Coolmine Therapeutic Community Ltd Grúpa Feasacht Drugaí na Cúlóige/Bhaile Hearmann/Ard Aidhin Ospidéal Ban An Choim</seg>
</tuv>
</tu>
<tu tuid="164">
<prop type="lengthRatio">0.47058823529411764</prop>
<tuv xml:lang="en">
<seg>We will:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Seirbhísí ar nós:</seg>
</tuv>
</tu>
<tu tuid="165">
<prop type="lengthRatio">0.898876404494382</prop>
<tuv xml:lang="en">
<seg>Darndale Belcamp Child Care Darndale Belcamp Drug Awareness Daughters of Charity</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cúram Leanaí Darndale Belcamp Feasacht Drugaí Darndale Belcamp Iníonacha na Carthanachtay</seg>
</tuv>
</tu>
<tu tuid="166">
<prop type="lengthRatio">0.8571428571428571</prop>
<tuv xml:lang="en">
<seg>Leases</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tuairim</seg>
</tuv>
</tu>
<tu tuid="167">
<prop type="lengthRatio">1.0483870967741935</prop>
<tuv xml:lang="en">
<seg>• €250 million of savings were achieved (€500 million since 2007)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Baineadh amach coigiltis de €250 milliún (€500 milliún ó 2007)</seg>
</tuv>
</tu>
<tu tuid="168">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>Baile Mhuire Recuperative Unit for the Elderly Balcurris Boys Home Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Aonad Réarnaimh Bhaile Mhuire do Dhaoine Scothaosta Balcurris Boys Home Ltd</seg>
</tuv>
</tu>
<tu tuid="169">
<prop type="lengthRatio">1.0476190476190477</prop>
<tuv xml:lang="en">
<seg>Dolmen Rainbows Limited - a company limited by guarantee and not having a share capital.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Dolmen Rainbows Limited - cuideachta faoi theorainn ráthaíochta gan scairchaipiteal.</seg>
</tuv>
</tu>
<tu tuid="170">
<prop type="lengthRatio">0.6285714285714286</prop>
<tuv xml:lang="en">
<seg>Ely Hospital, Wexford.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Ely Hospital, Loch Garman.</seg>
</tuv>
</tu>
<tu tuid="171">
<prop type="lengthRatio">1.8928571428571428</prop>
<tuv xml:lang="en">
<seg>Ana Liffey Children's Project Ana Liffey Drug Project</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tionscadal Leanaí Ana Liffey</seg>
</tuv>
</tu>
<tu tuid="172">
<prop type="lengthRatio">0.8897435897435897</prop>
<tuv xml:lang="en">
<seg>Dr. Alan Finan Paediatric Consultant, Evelyn Kellegher SCBU CNM1, Margaret Mulvaney SCBU CNM2, Dermot Monaghan General Manager Cavan/Monaghan Hospital Group, Eddie Byrne, Director of Nursing, Cavan General Hospital watch Minister for Agriculture, Fisheries and Food, Brendan Smith, TD cutting the tape at the opening of the Special Baby Care Unit.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An Dr. Alan Finan Sainchomhairleoir Péidiatraiceach, Evelyn Kellegher SCBU CNM1, Margaret Mulvaney Breathnaíonn SCBU CNM2, Dermot Monaghan Bainisteoir Ginearálta Grúpa Ospidéal Cabhán/Muineachán, Eddir Byrne, an Stiúrthóir Altranais, Ospidéal Ginearála Chabháin ar an Aire Talmhaíochta, Iascaigh agus Bia, Brendan Smith, TD ag gearradh an téip ag oscailt an Aonaid Speisialta Cúram Naíonán.</seg>
</tuv>
</tu>
<tu tuid="173">
<prop type="lengthRatio">0.928</prop>
<tuv xml:lang="en">
<seg>John McGettrick, Chairman, Mental Health Ireland; John Fitzmaurice, Programme Manager, Jigsaw Galway; Tony Bates, CEO, Headstrong; Ted Tierney, Deputy CEO, Mental Health Ireland; Priya Prendergast, HSE, Local Health Manager, Galway.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>John McGettrick, Cathaoirleach, Meabhairshláinte Éireann, John Fitzmaurice, Bainisteoir Cláir, Jigsaw Galway; Tony Bates, POF, Headstrong; Ted Tierney, POF Cúnta, Meabhairshláinte Éireann,Priya Prendergast, FSS, Bainisteoir Sláinte Áitiúil, Gaillimh.</seg>
</tuv>
</tu>
<tu tuid="174">
<prop type="lengthRatio">1.1724137931034482</prop>
<tuv xml:lang="en">
<seg>A specific 2010 VFM target of €106 million has been set for the HSE.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Socraíodh sprioc shonrach 2010 LAA de €106 milliún do FSS.</seg>
</tuv>
</tu>
<tu tuid="175">
<prop type="lengthRatio">1.1</prop>
<tuv xml:lang="en">
<seg>• Pearse St</seg>
</tuv>
<tuv xml:lang="ga">
<seg>San Séamas</seg>
</tuv>
</tu>
<tu tuid="176">
<prop type="lengthRatio">1.3048780487804879</prop>
<tuv xml:lang="en">
<seg>A combined total number of 5,603 additional new attendances took place in the three designated specialties.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Líon iomlán de 5,603 freastal nua a bhí ann sna trí speisialtachtaí sonraithe seo.</seg>
</tuv>
</tu>
<tu tuid="177">
<prop type="lengthRatio">0.7272727272727273</prop>
<tuv xml:lang="en">
<seg>Turners Cross Social Services Ltd Union of Our Lady of Charity Unit 1, 2, 6, 7, St. Stephen's Hospital University College Dublin</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Turners Cross Social Services Ltd Aontas Bhantiarna na Carthanachta Aonad 1, 2, 6, 7, Ospidéal Naomh Stiofáin Coláiste na hOllscoile, Baile Átha Cliath Ospidéal Pobail Valentia</seg>
</tuv>
</tu>
<tu tuid="178">
<prop type="lengthRatio">1.0126582278481013</prop>
<tuv xml:lang="en">
<seg>• 4,521 confirmed cases of Pandemic (H1N1) 2009 were notified in Ireland in 2009</seg>
</tuv>
<tuv xml:lang="ga">
<seg>4,521 cásanna daignithe de Phaindéim (H1N1) 2009 curtha in iúl in Éirinn i 2009</seg>
</tuv>
</tu>
<tu tuid="179">
<prop type="lengthRatio">1.3076923076923077</prop>
<tuv xml:lang="en">
<seg>Cluainin Housing Association CLUB 91 (Formerly Chez Nous Service) Co-Action West Cork</seg>
</tuv>
<tuv xml:lang="ga">
<seg>CLUB 91 (Seirbhís Chez Nous roimhe seo) Co-Action Iarthar Chorcaí</seg>
</tuv>
</tu>
<tu tuid="180">
<prop type="lengthRatio">1.0833333333333333</prop>
<tuv xml:lang="en">
<seg>Tabor Society</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cumann Tabor</seg>
</tuv>
</tu>
<tu tuid="181">
<prop type="lengthRatio">1.0346534653465347</prop>
<tuv xml:lang="en">
<seg>LENUS is also included in the World Wide Science organisation (www.worldwidescience.org) and is accessible via www.hselibrary.ie and www.hse.ie, and is listed in the Open Door directory of online repositories.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá LENUS áirithe freisin san eagraíocht World Wide Science (www.worldwidescience.org) agus tá sé inrochtana trí www.hselibrary.ie agus www.hse.ie, agus liostáilte san eolaire Open Door de stóir ar líne.</seg>
</tuv>
</tu>
<tu tuid="182">
<prop type="lengthRatio">1.04</prop>
<tuv xml:lang="en">
<seg>Catheterisation Laboratory</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Géarmhíochaine Síciatrach</seg>
</tuv>
</tu>
<tu tuid="183">
<prop type="lengthRatio">0.5869565217391305</prop>
<tuv xml:lang="en">
<seg>Early Years Services launched in Ballyhaunis, Co. Mayo</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Seirbhísí Luathbhlianta i Early Years Services launched i mBéal Átha hAmhnais, Co. Mhaigh Eo</seg>
</tuv>
</tu>
<tu tuid="184">
<prop type="lengthRatio">0.7941176470588235</prop>
<tuv xml:lang="en">
<seg>Block B, Civic Centre, Main Street, Bray, Co. Wicklow.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bloc B, Ionad Cathartha, An Phríomhshráid, Bré, Co. Chill Mhaintáin.</seg>
</tuv>
</tu>
<tu tuid="185">
<prop type="lengthRatio">2.272727272727273</prop>
<tuv xml:lang="en">
<seg>Still in process December</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Foráis Eile</seg>
</tuv>
</tu>
<tu tuid="186">
<prop type="lengthRatio">1.25</prop>
<tuv xml:lang="en">
<seg>Fast Facts 2009</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Buiséad 2009</seg>
</tuv>
</tu>
<tu tuid="187">
<prop type="lengthRatio">0.9803921568627451</prop>
<tuv xml:lang="en">
<seg>• The number of MRSA cases fell from 575 to 371 in</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Thit líon na gcásanna MRSA ó 575 go 371 sa tréimhse</seg>
</tuv>
</tu>
<tu tuid="188">
<prop type="lengthRatio">1.048780487804878</prop>
<tuv xml:lang="en">
<seg>In total, over 800,000 people were vaccinated against Pandemic (H1N1) 2009 in Ireland.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Vacsaíníodh breis is 800,000 duine in aghaidh na pandéime (H1N1) i 2009 in Éirinn.</seg>
</tuv>
</tu>
<tu tuid="189">
<prop type="lengthRatio">1.7692307692307692</prop>
<tuv xml:lang="en">
<seg>December 2008% of Total</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó 2008 nó 41%</seg>
</tuv>
</tu>
<tu tuid="190">
<prop type="lengthRatio">1.4242424242424243</prop>
<tuv xml:lang="en">
<seg>• Motor vehicles: depreciated at 20% per annum.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Mótarfheithiclí: dímheasta ag 20%</seg>
</tuv>
</tu>
<tu tuid="191">
<prop type="lengthRatio">0.7887323943661971</prop>
<tuv xml:lang="en">
<seg>South Tipperary General Hospital, Clonmel Tel: 052/77000</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Ginearálta Thiobraid Árann Theas, Cluain Meala Teil: 052/77000</seg>
</tuv>
</tu>
<tu tuid="192">
<prop type="lengthRatio">0.8897058823529411</prop>
<tuv xml:lang="en">
<seg>Gary Courtney, Clinical Director at St. Luke's General Hospital, Minister Mary Harney and Anne Slattery, General Manager.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Gary Courtney, Stiúrthóít Cliniciúil ag Ospidéal Ginearálta Naomh Lúcás, An tAire Mary Harney agus Anne Slattery, Bainisteoir Ginearálta</seg>
</tuv>
</tu>
<tu tuid="193">
<prop type="lengthRatio">1.7272727272727273</prop>
<tuv xml:lang="en">
<seg>Basis for Statement</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teach Oznam</seg>
</tuv>
</tu>
<tu tuid="194">
<prop type="lengthRatio">0.8</prop>
<tuv xml:lang="en">
<seg>• Simpson's Hospital Dublin (38 Bed)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Simpson Baile Átha Cliath (38 Leaba)</seg>
</tuv>
</tu>
<tu tuid="195">
<prop type="lengthRatio">0.875</prop>
<tuv xml:lang="en">
<seg>See hse.ie/flu</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Féach hse.ie/flu</seg>
</tuv>
</tu>
<tu tuid="196">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Published: August 2020</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Foilsithe: Lúnasa 2020</seg>
</tuv>
</tu>
<tu tuid="197">
<prop type="lengthRatio">0.9183673469387755</prop>
<tuv xml:lang="en">
<seg>This time, coronavirus (COVID-19) is with us.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An uair seo, tá an choróinvíreas (COVID-19) linn.</seg>
</tuv>
</tu>
<tu tuid="198">
<prop type="lengthRatio">0.75</prop>
<tuv xml:lang="en">
<seg>COVID-19 Advice for parents</seg>
</tuv>
<tuv xml:lang="ga">
<seg>COVID-19 Comhairle do thuismitheoirí</seg>
</tuv>
</tu>
<tu tuid="199">
<prop type="lengthRatio">1.4864864864864864</prop>
<tuv xml:lang="en">
<seg>Use tissues or elbows to cover their coughs and sneezes</seg>
</tuv>
<tuv xml:lang="ga">
<seg>conas ba chóir do leanaí a lámha a ní</seg>
</tuv>
</tu>
<tu tuid="200">
<prop type="lengthRatio">0.6491228070175439</prop>
<tuv xml:lang="en">
<seg>www.gov.ie/health-covid-19 www.hse.ie</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fanacht amach ó dhaoine atá ag sraothartach nó ag casacht</seg>
</tuv>
</tu>
<tu tuid="201">
<prop type="lengthRatio">1.5813953488372092</prop>
<tuv xml:lang="en">
<seg>has not been lowered by taking any form of paracetamol or ibuprofen)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>paraicéiteamóil nó iobúpróifein a ghlacadh)</seg>
</tuv>
</tu>
<tu tuid="202">
<prop type="lengthRatio">1.6666666666666667</prop>
<tuv xml:lang="en">
<seg>The committee reports to the Board.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Support to the Board.</seg>
</tuv>
</tu>
<tu tuid="203">
<prop type="lengthRatio">1.7532467532467533</prop>
<tuv xml:lang="en">
<seg>It is located between the penis and the bladder, and surrounds the urethra (the tube that carries urine from the bladder to the penis).</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Creidiúnaithe Iléagsúla Iomlán Creidiúnaithe (méideanna dlite tar éis bliana)</seg>
</tuv>
</tu>
<tu tuid="204">
<prop type="lengthRatio">0.7647058823529411</prop>
<tuv xml:lang="en">
<seg>$ Defini ons:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Seirbhísí ar nós:</seg>
</tuv>
</tu>
<tu tuid="205">
<prop type="lengthRatio">0.5625</prop>
<tuv xml:lang="en">
<seg>HSE 2010.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>sa bhliain 2010.</seg>
</tuv>
</tu>
<tu tuid="206">
<prop type="lengthRatio">0.75</prop>
<tuv xml:lang="en">
<seg>Dec 2009:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>I rith 2009:</seg>
</tuv>
</tu>
<tu tuid="207">
<prop type="lengthRatio">1.2222222222222223</prop>
<tuv xml:lang="en">
<seg>Target: 90%</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fuair 90%</seg>
</tuv>
</tu>
<tu tuid="208">
<prop type="lengthRatio">0.45454545454545453</prop>
<tuv xml:lang="en">
<seg>14 NR</seg>
</tuv>
<tuv xml:lang="ga">
<seg>14 milliún.</seg>
</tuv>
</tu>
<tu tuid="209">
<prop type="lengthRatio">0.6265060240963856</prop>
<tuv xml:lang="en">
<seg>Fitzpatrick, Mr. Joe Mooney and Mr. Willie O'Reilly.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An tUasal PJ Fitzpatrick, agus An tUasal Joe Mooney agus an tUasal Willie O'Reilly.</seg>
</tuv>
</tu>
<tu tuid="210">
<prop type="lengthRatio">1.4098360655737705</prop>
<tuv xml:lang="en">
<seg>The full text of Performance and Accountabililty Framework is available at www.hse.ie.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>onthly performance reports provide an integrated, www.hse.ie.</seg>
</tuv>
</tu>
<tu tuid="211">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>It's tiring.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>den bhunphá.</seg>
</tuv>
</tu>
<tu tuid="212">
<prop type="lengthRatio">1.0833333333333333</prop>
<tuv xml:lang="en">
<seg>School/class?</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ly/SchoolLHO</seg>
</tuv>
</tu>
<tu tuid="213">
<prop type="lengthRatio">1.5185185185185186</prop>
<tuv xml:lang="en">
<seg>National breastfeeding rate at 3-4 months</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí soláthar seirbhíse 3-4%</seg>
</tuv>
</tu>
<tu tuid="214">
<prop type="lengthRatio">1.3478260869565217</prop>
<tuv xml:lang="en">
<seg>The journalist states that ‘Dr.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Clé go deas: an Dr. Max</seg>
</tuv>
</tu>
<tu tuid="215">
<prop type="lengthRatio">1.3793103448275863</prop>
<tuv xml:lang="en">
<seg>Remove curtain hooks from the curtain 4.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cúram Altramais le gaolta iv.</seg>
</tuv>
</tu>
<tu tuid="216">
<prop type="lengthRatio">1.5</prop>
<tuv xml:lang="en">
<seg>Improved outcomes for the person and</seg>
</tuv>
<tuv xml:lang="ga">
<seg>increase over target and</seg>
</tuv>
</tu>
<tu tuid="217">
<prop type="lengthRatio">1.6666666666666667</prop>
<tuv xml:lang="en">
<seg>tion.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá.</seg>
</tuv>
</tu>
<tu tuid="218">
<prop type="lengthRatio">1.21875</prop>
<tuv xml:lang="en">
<seg>timely.manner,.as.opposed.to.receiving.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ráth Teas, Trá Lí, Co. Chiarraí.</seg>
</tuv>
</tu>
<tu tuid="219">
<prop type="lengthRatio">0.47058823529411764</prop>
<tuv xml:lang="en">
<seg>Tel: 061</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Co. Lú; Teil: 041</seg>
</tuv>
</tu>
<tu tuid="220">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Sf.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>St.</seg>
</tuv>
</tu>
<tu tuid="221">
<prop type="lengthRatio">2.375</prop>
<tuv xml:lang="en">
<seg>Held & Developments</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Drugaí &</seg>
</tuv>
</tu>
<tu tuid="222">
<prop type="lengthRatio">0.8493150684931506</prop>
<tuv xml:lang="en">
<seg>Bray Lakers Social & Recreational Club Ltd Brothers of Charity</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bray Lakers Social and Recreational Club Ltd Grúpa Bhré do Thaistealaithe</seg>
</tuv>
</tu>
<tu tuid="223">
<prop type="lengthRatio">0.7714285714285715</prop>
<tuv xml:lang="en">
<seg>Vergemount Hall, Clonskeagh, Dublin 6; Tel: 01 2680506</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Halla Vergemount, Cluain Sceach, Baile Átha Cliath 6; Teil: 01 2680506</seg>
</tuv>
</tu>
<tu tuid="224">
<prop type="lengthRatio">1.5</prop>
<tuv xml:lang="en">
<seg>I was panicked.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ní féidir.</seg>
</tuv>
</tu>
<tu tuid="225">
<prop type="lengthRatio">0.5</prop>
<tuv xml:lang="en">
<seg>Q2 2009:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Sa bhliain 2009:</seg>
</tuv>
</tu>
<tu tuid="226">
<prop type="lengthRatio">0.7</prop>
<tuv xml:lang="en">
<seg>MH32 %.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Laghdú 32%</seg>
</tuv>
</tu>
<tu tuid="227">
<prop type="lengthRatio">1.3</prop>
<tuv xml:lang="en">
<seg>to lie them on your chest.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>na mbásanna go léir.</seg>
</tuv>
</tu>
<tu tuid="228">
<prop type="lengthRatio">1.5714285714285714</prop>
<tuv xml:lang="en">
<seg>April 2005.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó 2005.</seg>
</tuv>
</tu>
<tu tuid="229">
<prop type="lengthRatio">1.105263157894737</prop>
<tuv xml:lang="en">
<seg>In contrast a complex</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Cuireann an Complex</seg>
</tuv>
</tu>
<tu tuid="230">
<prop type="lengthRatio">0.6190476190476191</prop>
<tuv xml:lang="en">
<seg>NHS Scotland.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>i ndaoine scothaosta.</seg>
</tuv>
</tu>
<tu tuid="231">
<prop type="lengthRatio">0.7777777777777778</prop>
<tuv xml:lang="en">
<seg>Rate of new cases of Clostridium Difficile</seg>
</tuv>
<tuv xml:lang="ga">
<seg>i mbliain amháin ar na fógraí de Clostridium difficile</seg>
</tuv>
</tu>
<tu tuid="232">
<prop type="lengthRatio">0.9166666666666666</prop>
<tuv xml:lang="en">
<seg>At a minimum, where an</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal na mBan, an Com</seg>
</tuv>
</tu>
<tu tuid="233">
<prop type="lengthRatio">0.9411764705882353</prop>
<tuv xml:lang="en">
<seg>Tel: 021 4823881</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teil: 021/4923833</seg>
</tuv>
</tu>
<tu tuid="234">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>CredibleMeds®.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Creidiúnaithe.</seg>
</tuv>
</tu>
<tu tuid="235">
<prop type="lengthRatio">0.875</prop>
<tuv xml:lang="en">
<seg>Opioids</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Oiliúint</seg>
</tuv>
</tu>
<tu tuid="236">
<prop type="lengthRatio">0.6744186046511628</prop>
<tuv xml:lang="en">
<seg>• achy muscles / bones (15%).</seg>
</tuv>
<tuv xml:lang="ga">
<seg>) agus páirtí/fear céile/bean chéile (18%).</seg>
</tuv>
</tu>
<tu tuid="237">
<prop type="lengthRatio">1.0561797752808988</prop>
<tuv xml:lang="en">
<seg>Care for the Elderly at Home Ltd Care Of The Aged, West Kerry Caredoc GP Co-operative Careline</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Care for the Elderly at Home Ltd Cúram na Sean, Iarthar Chiarraí Comharchumann Caredoc GP</seg>
</tuv>
</tu>
<tu tuid="238">
<prop type="lengthRatio">0.8615384615384616</prop>
<tuv xml:lang="en">
<seg>CLUB 91 (Formerly Chez Nous Service) Co-Action West Cork</seg>
</tuv>
<tuv xml:lang="ga">
<seg>CLUB 91 (Seirbhís Chez Nous roimhe seo) Co-Action Iarthar Chorcaí</seg>
</tuv>
</tu>
<tu tuid="239">
<prop type="lengthRatio">0.9295774647887324</prop>
<tuv xml:lang="en">
<seg>Centres for Independent Living (CIL) Charleville Care Project Ltd.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ionaid um Mhaireachtáil Neamhspleách (CIL) Charleville Care Project Ltd</seg>
</tuv>
</tu>
<tu tuid="240">
<prop type="lengthRatio">0.8513513513513513</prop>
<tuv xml:lang="en">
<seg>11 Hollywood Grove, Ballaghadereen, Roscommon; Tel: 094 9877842</seg>
</tuv>
<tuv xml:lang="ga">
<seg>11 Garrán an Alabhóidigh, Bealach an Doirín, Ros Comáin, Teil: 094/9877842</seg>
</tuv>
</tu>
<tu tuid="241">
<prop type="lengthRatio">1.0606060606060606</prop>
<tuv xml:lang="en">
<seg>Jack and Jill Children's Foundation</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fondúireacht Leanaí Jack and Jill</seg>
</tuv>
</tu>
<tu tuid="242">
<prop type="lengthRatio">1.4</prop>
<tuv xml:lang="en">
<seg>Hospital Nutrition and hydration 9.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Infheistiú in Ospidéal N.</seg>
</tuv>
</tu>
<tu tuid="243">
<prop type="lengthRatio">1.3333333333333333</prop>
<tuv xml:lang="en">
<seg>lht.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>lú.</seg>
</tuv>
</tu>
<tu tuid="244">
<prop type="lengthRatio">1.1428571428571428</prop>
<tuv xml:lang="en">
<seg>in 2007.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó 2007.</seg>
</tuv>
</tu>
<tu tuid="245">
<prop type="lengthRatio">1.4</prop>
<tuv xml:lang="en">
<seg>Co. Wicklow 25</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Laghdú 25%</seg>
</tuv>
</tu>
<tu tuid="246">
<prop type="lengthRatio">0.7209302325581395</prop>
<tuv xml:lang="en">
<seg>National Maternity Hospital, Holles St. Dublin Tel: 01 6373100</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An tOspidéal Náisiúnta Máithreachais, Sráid Holles, Baile Átha Cliath Teil: 01 6373100</seg>
</tuv>
</tu>
<tu tuid="247">
<prop type="lengthRatio">0.6</prop>
<tuv xml:lang="en">
<seg>LGBTI+</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Oiliúint &</seg>
</tuv>
</tu>
<tu tuid="248">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Telephone: 045 880400 www.hse.ie</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teileafón: 045 880400 www.hse.ie</seg>
</tuv>
</tu>
<tu tuid="249">
<prop type="lengthRatio">1.0344827586206897</prop>
<tuv xml:lang="en">
<seg>Power of Words (Bibliotherapy)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Power of Words (Bibliteiripe)</seg>
</tuv>
</tu>
<tu tuid="250">
<prop type="lengthRatio">0.8636363636363636</prop>
<tuv xml:lang="en">
<seg>Tolka River Project</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tionscadal Tolka River</seg>
</tuv>
</tu>
<tu tuid="251">
<prop type="lengthRatio">0.9827586206896551</prop>
<tuv xml:lang="en">
<seg>Maura Mullen; Caroline Fahy; Mary Egan and Caroline Coen.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Maura Mullen; Caroline Fahy; Mary Egan agus Caroline Coen.</seg>
</tuv>
</tu>
<tu tuid="252">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>MIDWAY - Meath Intellectual Disability Work Advocacy You Ltd Mullagh Hall - CLAR</seg>
</tuv>
<tuv xml:lang="ga">
<seg>MIDWAY - Mental Intellectual Disability Work Advocacy You Ltd Halla Mullagh-CLAR</seg>
</tuv>
</tu>
<tu tuid="253">
<prop type="lengthRatio">0.9130434782608695</prop>
<tuv xml:lang="en">
<seg>Dr Steevens' Hospital</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal an Dr Steevens</seg>
</tuv>
</tu>
<tu tuid="254">
<prop type="lengthRatio">0.9903846153846154</prop>
<tuv xml:lang="en">
<seg>Ennis Community Development Project Errigal Truagh Special needs Parents and Friends Ltd Extern Ireland</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tionscadal Forbartha Pobail na hInse Errigal Truagh Special needs Parents and Friends Ltd Extern Ireland</seg>
</tuv>
</tu>
<tu tuid="255">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Moorehaven Centre Tipperary Ltd Mount Cara House</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Moorehaven Centre Tipperary Ltd Teach Mount Cara</seg>
</tuv>
</tu>
<tu tuid="256">
<prop type="lengthRatio">0.9761904761904762</prop>
<tuv xml:lang="en">
<seg>Photo: Jeffrey Palmer; Tresina Smith; Richard Ross; Vicky Sweeney; Rhoda Hogan; Maura Morgan; Lisa Ann Rochet; Anne Naughton; Barry Reid; Lenore McLoughlint; David Kelly; Sarah Jane Whelan; Dereck Carolan.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Grianghraf: Jeffrey Palmer; Tresina Smith; Richard Ross; Vicky Sweeney; Rhoda Hogan; Maura Morgan; Lisa Ann Rochet; Anne Naughton; Barry Reid; Lenore McLoughlint; David Kelly; Sarah Jane Whelan; Dereck Carolan.</seg>
</tuv>
</tu>
<tu tuid="257">
<prop type="lengthRatio">0.9047619047619048</prop>
<tuv xml:lang="en">
<seg>Nenagh General Hospital Tel: 067/31491</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Nenagh Ospidéal Ginearálta Teil: 067/31491</seg>
</tuv>
</tu>
<tu tuid="258">
<prop type="lengthRatio">0.9333333333333333</prop>
<tuv xml:lang="en">
<seg>Local Health Offices Galway:</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Local Health Offices Gaillimh:</seg>
</tuv>
</tu>
<tu tuid="259">
<prop type="lengthRatio">0.96875</prop>
<tuv xml:lang="en">
<seg>Limetree Avenue Millennium Park</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ascaill na Teile Millennium Park</seg>
</tuv>
</tu>
<tu tuid="260">
<prop type="lengthRatio">0.9166666666666666</prop>
<tuv xml:lang="en">
<seg>Womens Aid Dundalk Ltd</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Women's Aid Dundalk Ltd.</seg>
</tuv>
</tu>
<tu tuid="261">
<prop type="lengthRatio">0.84</prop>
<tuv xml:lang="en">
<seg>Note 15 Creditors (a)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Nóta 15 Creidiúnaithe (a)</seg>
</tuv>
</tu>
<tu tuid="262">
<prop type="lengthRatio">1.0277777777777777</prop>
<tuv xml:lang="en">
<seg>• St. James's Hospital - Haematology/</seg>
</tuv>
<tuv xml:lang="ga">
<seg>James's Hospital - Haemaiteolaíocht/</seg>
</tuv>
</tu>
<tu tuid="263">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Figure 22: Cumulative VFM Delivered 2007-2009 (€ millions)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Fíor 22: LAA Carnach arna Sholáthar 2007-2009 (€ milliúin)</seg>
</tuv>
</tu>
<tu tuid="264">
<prop type="lengthRatio">0.7894736842105263</prop>
<tuv xml:lang="en">
<seg>Dr Steevens' Hospital Steevens' Lane Dublin 8</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal an Dr Steevens Lána Steevens Baile Átha Cliath 8</seg>
</tuv>
</tu>
<tu tuid="265">
<prop type="lengthRatio">0.9361702127659575</prop>
<tuv xml:lang="en">
<seg>Saoirse Housing Association Ltd SAOL Project</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Saoirse Housing Association Ltd Tionscadal SAOL</seg>
</tuv>
</tu>
<tu tuid="266">
<prop type="lengthRatio">0.8899082568807339</prop>
<tuv xml:lang="en">
<seg>County Wicklow Community Addiction County Wicklow Community Addiction Services Ltd CPL Healthcare</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Seirbhís Andúile Pobail Chontae Chill Mhantáin County Wicklow Community Addiction Services Ltd CPL Healthcare</seg>
</tuv>
</tu>
<tu tuid="267">
<prop type="lengthRatio">0.9583333333333334</prop>
<tuv xml:lang="en">
<seg>Professor Brendan Drumm</seg>
</tuv>
<tuv xml:lang="ga">
<seg>An tOllamh Brendan Drumm</seg>
</tuv>
</tu>
<tu tuid="268">
<prop type="lengthRatio">0.7941176470588235</prop>
<tuv xml:lang="en">
<seg>• Beaumont Hospital - Acute</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Beaumont Hospital - Aonad</seg>
</tuv>
</tu>
<tu tuid="269">
<prop type="lengthRatio">0.9824561403508771</prop>
<tuv xml:lang="en">
<seg>Miss Carr's Housing Association Ltd Moatview Day Nursery</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Miss Carr's Housing Association Ltd Naíolann Lae Moatview</seg>
</tuv>
</tu>
<tu tuid="270">
<prop type="lengthRatio">0.8888888888888888</prop>
<tuv xml:lang="en">
<seg>• Riada House, Tullamore</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Teach Riada, An Tulach Mhór</seg>
</tuv>
</tu>
<tu tuid="271">
<prop type="lengthRatio">1.3076923076923077</prop>
<tuv xml:lang="en">
<seg>• An Daingean Dingle CNU (68 Beds)</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ACP An Daingean (68 Leaba)</seg>
</tuv>
</tu>
<tu tuid="272">
<prop type="lengthRatio">3.25</prop>
<tuv xml:lang="en">
<seg>Other Developments Include</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Drugaí &</seg>
</tuv>
</tu>
<tu tuid="273">
<prop type="lengthRatio">0.8823529411764706</prop>
<tuv xml:lang="en">
<seg>Mr. Liam Downey</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Liam Downey Uasal</seg>
</tuv>
</tu>
<tu tuid="274">
<prop type="lengthRatio">2.7142857142857144</prop>
<tuv xml:lang="en">
<seg>As at December 2009</seg>
</tuv>
<tuv xml:lang="ga">
<seg>ó 2005.</seg>
</tuv>
</tu>
<tu tuid="275">
<prop type="lengthRatio">0.8431372549019608</prop>
<tuv xml:lang="en">
<seg>• Payments to Doctors totalled €500 million</seg>
</tuv>
<tuv xml:lang="ga">
<seg>B'ionann íocaíochtaí le Dochtúirí agus €500 milliún</seg>
</tuv>
</tu>
<tu tuid="276">
<prop type="lengthRatio">0.9918032786885246</prop>
<tuv xml:lang="en">
<seg>The national policy document Palliative Care for Children with Life-Limiting Conditions in Ireland is nearing completion.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Tá an cháipéis pholasaí náisiúnta Palliative Care for Children with Life-Limiting Conditions in Ireland beagnach i gcrích.</seg>
</tuv>
</tu>
<tu tuid="277">
<prop type="lengthRatio">0.7547169811320755</prop>
<tuv xml:lang="en">
<seg>and Development) and CLÁR (Ceantair Laga</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Infheistíocht agus Forbairt) agus CLÁR (Ceantair Laga</seg>
</tuv>
</tu>
<tu tuid="278">
<prop type="lengthRatio">0.9322033898305084</prop>
<tuv xml:lang="en">
<seg>In 2009 the focus was on aligning the Mental Health programme with the recommendations in A Vision for Change.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Sa bhliain 2009 bhí an fócas ar ailíniú a dhéanamh ar an gclár Meabhairshláinte leis na moltaí in A Vision for Change.</seg>
</tuv>
</tu>
<tu tuid="279">
<prop type="lengthRatio">1.161764705882353</prop>
<tuv xml:lang="en">
<seg>The overall budget of €13.712 billion is made up of the total gross revenue HSE Vote of €14.738 billion (post 2009 Supplementary Estimate), less a budget of €1.026 billion for income (appropriations-in-aid) generated directly by the HSE.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>712 billiún déanta suas d'ollioncam Vóta FSS de €14.738 billiún (tar éis Meastachán Forlíontach 2009), lúide buiséad de €1.026 billiún don ioncam (leithreasaí-i-gcabhair) arna ghiniúint go díreach ag FSS.</seg>
</tuv>
</tu>
<tu tuid="280">
<prop type="lengthRatio">1.12</prop>
<tuv xml:lang="en">
<seg>• St. James's Hospital - PET</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal San Séamas - PET</seg>
</tuv>
</tu>
<tu tuid="281">
<prop type="lengthRatio">0.8571428571428571</prop>
<tuv xml:lang="en">
<seg>CDA Trust Ltd (Cavan Drug Awareness) Central Remedial Clinic</seg>
</tuv>
<tuv xml:lang="ga">
<seg>CDA Trust Ltd (Feasacht Drugaí an Chabháin) An Lárchhlinic Íocshláinte</seg>
</tuv>
</tu>
<tu tuid="282">
<prop type="lengthRatio">0.8378378378378378</prop>
<tuv xml:lang="en">
<seg>• Springfield Centre, Mullingar</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ionad Springfield, An Muileann gCearr</seg>
</tuv>
</tu>
<tu tuid="283">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>Hepatitis C Insurance Scheme</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Scéim Árachais Heipitíteas C</seg>
</tuv>
</tu>
<tu tuid="284">
<prop type="lengthRatio">1.1222222222222222</prop>
<tuv xml:lang="en">
<seg>There was also an increase of 917 new attendances in otolaryngology (ENT) which is an increase of 3%.</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Bhí méadú 917 freastal nua chomh maith ar ota-laraingeolaíocht (ENT) atá ina mhéadú de 3%.</seg>
</tuv>
</tu>
<tu tuid="285">
<prop type="lengthRatio">1.0</prop>
<tuv xml:lang="en">
<seg>St. Michael's Hospital, Dun Laoghaire</seg>
</tuv>
<tuv xml:lang="ga">
<seg>Ospidéal Naomh Micheál, Dún Laoghaire</seg>
</tuv>
</tu>
<tu tuid="286">
<prop type="lengthRatio">0.8333333333333334</prop>
<tuv xml:lang="en">
<seg>• OLOL Drogheda, A&E</seg>
</tuv>
<tuv xml:lang="ga">
<seg>OMT Dhroichead Átha, T&É</seg>
</tuv>
</tu>
</body>
</tmx>
|