Hi,
I am trying to translante a word inside the search.asp (I am testing the version 3), but I canīt find it inside the code.
the sentense is:
10 results found.
I need to translate the 'results' word. All the other translation were made... but i canīt find where in the code, i translate this.
shouldnīt it be around here:
?
Thanks
I am trying to translante a word inside the search.asp (I am testing the version 3), but I canīt find it inside the code.
the sentense is:
10 results found.
I need to translate the 'results' word. All the other translation were made... but i canīt find where in the code, i translate this.
shouldnīt it be around here:
'Display search results
Response.Write("<div class=""summary"">")
if matches = 0 Then
Response.Write("não foi encontrado resultado para a pesquisa efetuada.")
elseif numwords > 1 AND andq = 0 then
SomeTermMatches = matches - fullmatches
Response.Write(PrintNumResults(fullmatches) & " found containing all search terms. ")
if (SomeTermMatches > 0) then
Response.Write(PrintNumResults(SomeTermMatches) & " found containing some search terms.")
end if
elseif numwords > 1 AND andq = 1 then
Response.Write(PrintNumResults(fullmatches) & " found containing all search terms.")
else
Response.Write(PrintNumResults(matches)
& " encontrados.")
end if
Response.Write("<div class=""summary"">")
if matches = 0 Then
Response.Write("não foi encontrado resultado para a pesquisa efetuada.")
elseif numwords > 1 AND andq = 0 then
SomeTermMatches = matches - fullmatches
Response.Write(PrintNumResults(fullmatches) & " found containing all search terms. ")
if (SomeTermMatches > 0) then
Response.Write(PrintNumResults(SomeTermMatches) & " found containing some search terms.")
end if
elseif numwords > 1 AND andq = 1 then
Response.Write(PrintNumResults(fullmatches) & " found containing all search terms.")
else
Response.Write(PrintNumResults(matches)
& " encontrados.")
end if
Thanks
Comment